thx for the replies!
Can't really get it to work, may someone help me out?
class Version{
public:
};
class Version{
public:
Version(QString releaseDate,QString url);
QString releaseDate;
QString URL;
};
To copy to clipboard, switch view to plain text mode
QList<Version> allVersions;
// adding some items through xml (irrelevant for this thread)
// how do I sort this list now by the release date?
QList<Version> allVersions;
// adding some items through xml (irrelevant for this thread)
// how do I sort this list now by the release date?
To copy to clipboard, switch view to plain text mode
thanks!
Bookmarks