funchelpers: Support the invocation of non-void callables
[quassel.git] / src / common / signalproxy.h
index 885ebe6..b58aae8 100644 (file)
@@ -422,7 +422,7 @@ public:
             qWarning() << "Cannot call slot in different thread!";
             return false;
         }
-        return invokeWithArgsList(_callable, params);
+        return invokeWithArgsList(_callable, params) ? true : false;
     }
 
 private: