Either use QListWidget::findItems() or:
Qt Code:
QListWidget *list; for(int i=0;i<list->count;i++){ doSomething(item); }To copy to clipboard, switch view to plain text mode
Either use QListWidget::findItems() or:
Qt Code:
QListWidget *list; for(int i=0;i<list->count;i++){ doSomething(item); }To copy to clipboard, switch view to plain text mode
the_bis (24th July 2007), tpf80 (17th May 2007), vishal.chauhan (26th February 2007)
Bookmarks