From 4010729f1a37dc0a3981cb1542255444ce885303 Mon Sep 17 00:00:00 2001 From: Petr Vanek Date: Fri, 18 Apr 2014 10:27:41 +0200 Subject: [PATCH] fixed #17 lib/ShellCommand.cpp:66: possible =/== mixup --- lib/ShellCommand.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ShellCommand.cpp b/lib/ShellCommand.cpp index 626d8af..7440305 100644 --- a/lib/ShellCommand.cpp +++ b/lib/ShellCommand.cpp @@ -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