Skip to content
Snippets Groups Projects
Commit 5af59d74 authored by Vassil Vassilev's avatar Vassil Vassilev
Browse files

Do not rely on the TQObject::EmitVA, it will fire the signal for all listeners.

parent 5384238c
No related branches found
No related tags found
No related merge requests found
......@@ -110,7 +110,8 @@ public:
template <typename... T> inline void ExecuteMethod(const T&... params)
{
if (!CheckSlot(sizeof...(params))) return;
EmitVA(sizeof...(params), params...);
SetArgs(params...);
SendSignal();
}
template <typename... T> inline void ExecuteMethod(Int_t /* nargs */, const T&... params)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment