fix(src/app/App): disable cmd option

This commit is contained in:
Ronan Abhamon 2017-06-14 11:19:25 +02:00
parent ac9b6f8735
commit 05b58702e3

View file

@ -210,7 +210,9 @@ void App::initContentApp () {
// -----------------------------------------------------------------------------
QString App::getCommandArgument () {
return mParser->value("cmd");
// TODO: Remove me when cmd option will be available.
return "";
// return mParser->value("cmd");
}
// -----------------------------------------------------------------------------