mirror of
https://github.com/KDE/konsole.git
synced 2026-06-10 06:55:13 -04:00
Use a assignment operator instead of a comparision operator
This commit is contained in:
@@ -38,7 +38,7 @@ ShellCommand::ShellCommand(const QString& aCommand, const QStringList& aArgument
|
||||
_arguments = aArguments;
|
||||
|
||||
if (!_arguments.isEmpty())
|
||||
_arguments[0] == aCommand;
|
||||
_arguments[0] = aCommand;
|
||||
}
|
||||
QString ShellCommand::fullCommand() const
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user