Hello

I really don't understand how to do this thing :

Qt Code:
  1. QTimer::singleShot(1000,this,SLOT(dati("abc")));
  2. QTimer::singleShot(2000,this,SLOT(dati("dfg")));
  3. QTimer::singleShot(2000,this,SLOT(dati("hil")));
  4.  
  5. void SslClient::dati(QString testo) {
  6. appendString(testo + "\n");
  7. .........
  8. }
To copy to clipboard, switch view to plain text mode 

obiovusly this is a semplification of what I need to do ...

I found into the forum similar question ( how to pass arguments ) ... but I need a very simple explanation becouse I'm starting now with Qt creator (before I used gambas for linux and it was very simplier ) and the help didn't clarify my doubt . I think also becouse of my bad english


Thank you in advance