Git: Adapt argument append style

All surrounding lines use operator<<(), so be consistent.

Change-Id: I9b301d0d00a17f0281142dd2c67c43bd7f2a680d
Reviewed-by: Orgad Shaneh <orgads@gmail.com>
This commit is contained in:
Andre Hartmann
2016-05-18 20:22:03 +02:00
committed by André Hartmann
parent a8e57e38a5
commit 9efdfde088

View File

@@ -949,7 +949,7 @@ void GitClient::annotate(const QString &workingDir, const QString &file, const Q
editor->setWorkingDirectory(workingDir);
QStringList arguments(QLatin1String("blame"));
arguments << QLatin1String("--root");
arguments.append(editor->configurationWidget()->arguments());
arguments << editor->configurationWidget()->arguments();
arguments << QLatin1String("--") << file;
if (!revision.isEmpty())
arguments << revision;