thx for the replies!

Can't really get it to work, may someone help me out?

Qt Code:
  1. class Version{
  2. public:
  3. Version(QString releaseDate,QString url);
  4. QString releaseDate;
  5. QString URL;
  6. };
To copy to clipboard, switch view to plain text mode 


Qt Code:
  1. QList<Version> allVersions;
  2. // adding some items through xml (irrelevant for this thread)
  3. // how do I sort this list now by the release date?
To copy to clipboard, switch view to plain text mode 

thanks!