Quote Originally Posted by jimbo View Post
Qt Code:
  1. fileList[1] = new QStringList();
To copy to clipboard, switch view to plain text mode 
You really don't need "new" for a QStringList.
You are just making your live more difficult with having to manage memory manually.

Cheers,
_