In the following code the SLOT(Ok()) is not triggered when the user presses the pushbutton Ok. I have either to put "accept" or "close". As it is here the window is not closed or only with cancel
I don't understand this behaviour, what have I done wrong ?
Code:
connect( pbOk, SIGNAL( clicked() ), this, SLOT( Ok() ) ); // <--- does not work connect( pbCancel, SIGNAL( clicked() ), this, SLOT( close() ) ); } //************************************************************* void Destinataires::Ok() { accept(); // does not work either with emit accept, emit close close(); }
Thanks for helping me out !