QStringList::size() returns an unsigned integer value and you are comparing it to a signed integer.
The following won't produce the warning:
Qt Code:
for (uint i = 0; i < values.size(); ++i) { ... }To copy to clipboard, switch view to plain text mode
Bookmarks