View Single Post
Posts: 13 | Thanked: 12 times | Joined on Apr 2010 @ Finland
#8
problem: QListWidget *foldersList = new QListWidget();
you define new QListWidget pointer in browseFolders() and it cant be seen outside
correct: foldersList = new QListWidget();
 

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