You need an lvalue on your statement that reads the QStringList from the settings file in the LoadProfile() function or else the QStringList is read from the settings file and immediately discarded because you haven't assigned the results to anything. Try this:
Qt Code:
ProfileList = settings.value("ProfileList").toStringList();To copy to clipboard, switch view to plain text mode
Bookmarks