Skip to content

Instantly share code, notes, and snippets.

@jasonicarter
Last active December 22, 2015 03:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jasonicarter/6414255 to your computer and use it in GitHub Desktop.
Save jasonicarter/6414255 to your computer and use it in GitHub Desktop.
Qt (for BlackBerry 10) - loop through a QStringList with iterator
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