Removed empty argument constructor from setEffect call for bootsequence

Former-commit-id: cc46278cb2b9db725ae367f49464d361ce06e670
This commit is contained in:
T. van der Zwan 2013-12-13 15:00:56 +00:00
parent bd9f0c2149
commit b124ba25d8
1 changed files with 1 additions and 1 deletions

View File

@ -105,7 +105,7 @@ int main(int argc, char** argv)
// int retVal = -1;
// QMetaObject::invokeMethod(hyperion, "setEffect", Q_RETURN_ARG(int, retVal), Q_ARG(std::string, effectName), Q_ARG(Json::Value, Json::Value()), Q_ARG(int, priority), Q_ARG(int, duration_ms));
// if (retVal == 0)
if (hyperion.setEffect(effectName, Json::Value(), priority, duration_ms) == 0)
if (hyperion.setEffect(effectName, priority, duration_ms) == 0)
{
std::cout << "Boot sequence created and started" << std::endl;
}