Hi!

I'm currently using the following code to get all items in a QListWidget:
Qt Code:
  1. QList<QListWidgetItem*> items = list->findItems(QString("*"), Qt::MatchWrap | Qt::MatchWildcard);
To copy to clipboard, switch view to plain text mode 
Is there a better / faster way? I just can't find a allItems() call.

Codepoet