From 2c3becf7c863f43c644cbd695fffade93a324c2f Mon Sep 17 00:00:00 2001
From: Vassil Vassilev <vvasilev@cern.ch>
Date: Tue, 24 Jan 2017 16:30:14 +0100
Subject: [PATCH] SetArguments calls reset arg list first. We don't want this
 when we pass a template parameter pack.

---
 core/base/inc/TQConnection.h | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/core/base/inc/TQConnection.h b/core/base/inc/TQConnection.h
index beb28249e99..ad44fcf1ab1 100644
--- a/core/base/inc/TQConnection.h
+++ b/core/base/inc/TQConnection.h
@@ -33,7 +33,6 @@
 
 class TQSlot;
 
-
 class TQConnection : public TVirtualQConnection, public TQObject {
 
 protected:
@@ -66,7 +65,7 @@ protected:
 
       TQSlot *s = fSlot;
 
-      gInterpreter->CallFunc_SetArguments(func, arg);
+      gInterpreter->CallFunc_SetArg(func, arg);
 
       UnLockSlot(s);
    }
-- 
GitLab