|
Provides a syntax for explicitly disconnecting signals from slots akin to the Qt syntax: disconnect(incomeButton.pressed, moneyInTheBank.up);
Alternatively, you can do incomeButton.pressed.disconnect(moneyInTheBank.up);
moneyInTheBank.up.disconnect(incomeButton.pressed);
Note that connections get implicitly disconnected when the sending and/or the receiving end is deleted, and connections may be broken by classes that manage the signals and slots they own. Definition at line 38 of file connect.d. |