VcsCommand: Use Qt5-style connects

Change-Id: I81688ce998bf9f8d47b7d88e639699b626be90dd
Reviewed-by: Orgad Shaneh <orgads@gmail.com>
This commit is contained in:
Tobias Hunger
2015-01-19 13:22:20 +01:00
parent e7e8f2265e
commit 6fe3eec590
5 changed files with 24 additions and 19 deletions

View File

@@ -469,7 +469,7 @@ QString VcsOutputWindow::msgExecutionLogEntry(const QString &workingDir,
arg(QDir::toNativeSeparators(workingDir), nativeExecutable, args) + QLatin1Char('\n');
}
void VcsOutputWindow::appendCommand(const QString &text)
void VcsOutputWindow::appendShellCommandLine(const QString &text)
{
append(filterPasswordFromUrls(text), Command, true);
}
@@ -478,7 +478,7 @@ void VcsOutputWindow::appendCommand(const QString &workingDirectory,
const Utils::FileName &binary,
const QStringList &args)
{
appendCommand(msgExecutionLogEntry(workingDirectory, binary, args));
appendShellCommandLine(msgExecutionLogEntry(workingDirectory, binary, args));
}
void VcsOutputWindow::appendMessage(const QString &text)