Hi,

I've got this slot:

void mySlot(int flags);

next i connect this slot with some button:

connect(button1,SIGNAL(clicked()),this,SLOT(mySlot (1)));

when i click the button nothing happens. Earlier i had this same slot without any arguments and everything works well. I dont know why it isnt working now.

Thanks.