Added a disconnectAll function

0.8
Bruno Van de Velde 2017-07-11 14:33:40 +02:00
parent 1be14aef69
commit f289457420
1 changed files with 11 additions and 0 deletions

View File

@ -620,6 +620,17 @@ namespace tgui
}
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/// @brief Disconnects all signal handler from a certain signal
///
/// @param signalName Name of the signal
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
void disconnectAll(std::string signalName)
{
return getSignal(toLower(std::move(signalName))).disconnectAll();
}
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
protected: