My code looks something like this:
Qt Code:
  1. QSet<QString> mySet;
  2. mySet.insert(someString);
  3. ...
  4. qSort(&mySet);
To copy to clipboard, switch view to plain text mode 

But I'm getting this error:
'qSort' : cannot convert parameter 1 from 'QSet<T> *' to 'QSet<T> & ' with [T=QString] and [T=QString]

I think my logic/syntax is okay, so what is the problem?