For Loop Misbehavior in C++ and Qt 6.2

First of all i’m a complete beginner in C++ and Qt and i’m using Qt 6.2 and C++11. This is the code that i have problem with: QSet<QList<QString>> listSet; for(int i = 0; i < 10; i++) { QList<QString> myList; for(int r = 0; r < 10; r++) { myList << "Item" + QString::number(r); }… Read More For Loop Misbehavior in C++ and Qt 6.2