View Single Post
Posts: 3,319 | Thanked: 5,610 times | Joined on Aug 2008 @ Finland
#9
Another suggestion is to avoid the classic C counter construct and at() or []. Use

foreach (QString s, temp) {
...
}

Faster, less error prone, easier to parallelize later on.
__________________
Blogging about mobile linux - The Penguin Moves!
Maintainer of PyQt (see introduction and docs), AppWatch, QuickBrownFox, etc
 

The Following User Says Thank You to attila77 For This Useful Post: