QListWidget Iterating
General and Desktop
2
Posts
2
Posters
1.9k
Views
1
Watching
-
It concerns me a bit when I see "list" in the name and all I can find are examples such as this:
@
QListWidget* list; // initialized else wherefor(int i = 0; i < list->count(); i++){
list->item(i); // do something
}
@If QListWidget is using a linked list than this bit of code is redundant. I was hoping someone can confirm this for me.