From be3dbc9cbdf3638d0c57979599a5275cdca96162 Mon Sep 17 00:00:00 2001 From: brindosch Date: Tue, 21 Feb 2017 14:49:27 +0100 Subject: [PATCH] fix --- include/effectengine/EffectEngine.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/effectengine/EffectEngine.h b/include/effectengine/EffectEngine.h index ab42fb05..663bdced 100644 --- a/include/effectengine/EffectEngine.h +++ b/include/effectengine/EffectEngine.h @@ -47,11 +47,11 @@ public slots: /// Run the specified effect on the given priority channel and optionally specify a timeout int runEffect(const QString &effectName, int priority, int timeout = -1, const QString origin="System") { - return runEffect(effectName, QJsonObject(), priority, timeout); + return runEffect(effectName, QJsonObject(), priority, timeout, origin); }; /// Run the specified effect on the given priority channel and optionally specify a timeout - int runEffect(const QString &effectName, const QJsonObject & args, int priority, int timeout = -1, QString pythonScript = ""); + int runEffect(const QString &effectName, const QJsonObject & args, int priority, int timeout = -1, QString pythonScript = "", QString origin); /// Clear any effect running on the provided channel void channelCleared(int priority);