Hi all,

I have a short question:

Is it possible for this kind of connection to work:
(Assume that all we need is defined)

QTimer::singleShot(1000,this,SLOT(vSlot(2,3)));

I know that it is possible to connect a QTimer::singleShot(...) with a slot not taking any args, but Can we do the same with a slot taking arg?
Could you explain why this is not possible( or maybe is) ?

Thank you.