forked from qt-creator/qt-creator
ShellCommand: Merge VcsCommand::VcsRunFlags into RunFlags
Use ShellCommand class name in signal-slot connections. Change-Id: Id50ee6887708558a2ba0972ece6c420b0be36f72 Reviewed-by: Orgad Shaneh <orgads@gmail.com>
This commit is contained in:
@@ -94,7 +94,7 @@ bool SubversionClient::doCommit(const FilePath &repositoryRoot,
|
||||
QStringList args(vcsCommandString(CommitCommand));
|
||||
QtcProcess proc;
|
||||
vcsSynchronousExec(proc, repositoryRoot, args << svnExtraOptions << escapeFiles(files),
|
||||
VcsCommand::ShowStdOut | VcsCommand::NoFullySync);
|
||||
ShellCommand::ShowStdOut | ShellCommand::NoFullySync);
|
||||
return proc.result() == ProcessResult::FinishedWithSuccess;
|
||||
}
|
||||
|
||||
@@ -223,7 +223,7 @@ void SubversionDiffEditorController::requestDescription()
|
||||
args << m_authenticationOptions;
|
||||
args << QLatin1String("-r");
|
||||
args << QString::number(m_changeNumber);
|
||||
runCommand(QList<QStringList>() << args, VcsCommand::SshPasswordPrompt);
|
||||
runCommand(QList<QStringList>() << args, ShellCommand::SshPasswordPrompt);
|
||||
}
|
||||
|
||||
void SubversionDiffEditorController::requestDiff()
|
||||
|
||||
Reference in New Issue
Block a user