Hi, how can I send QStringList with signal ? I mean like:
Qt Code:
  1. signals:
  2. void sig( QStringList & );
  3. (...)
  4. emit sig( list );
To copy to clipboard, switch view to plain text mode 
But it won't work. I've read something about QVariant but can't get it to work either. Any suggestions ?