fixed #17 lib/ShellCommand.cpp:66: possible =/== mixup

This commit is contained in:
Petr Vanek
2014-04-18 10:27:41 +02:00
parent 488beb0b47
commit 4010729f1a
+1 -1
View File
@@ -63,7 +63,7 @@ ShellCommand::ShellCommand(const QString & command , const QStringList & argumen
_arguments = arguments;
if ( !_arguments.isEmpty() ) {
_arguments[0] == command;
_arguments[0] = command;
}
}
QString ShellCommand::fullCommand() const