Last active
December 22, 2015 03:59
-
-
Save jasonicarter/6414255 to your computer and use it in GitHub Desktop.
Qt (for BlackBerry 10) - loop through a QStringList with iterator
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for (QStringList::iterator it = tmpList.begin(); it != tmpList.end(); ++it) | |
{ | |
QString tmpString = *it; | |
LOG("string: %s", tmpString.toStdString().c_str()); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment