Hello,

I am trying to understand the behavior of the auto-connexion feature of signals->slots.
I have successfully connected various signals to slots, for instance using a method declaration named void on_btnDoIt_clicked(void) which perfectly works.

Now i am very lazy and want to make my code a bit more clear... I deleted the connect for a signal "finished"... And i'm guessing, how to auto connect it? I tried using on_this_finished(), on_self_finished() and on_finished()... None worked. What is the keyword to use to auto-connect a slot in the *current* object to the *current* object?

Thanks for your help ^^
Pierre.

[EDIT:]All my attempts were done using the default parametters of "finished" signal, a single int.