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:
@@ -69,7 +69,7 @@ public:
|
||||
return *it;
|
||||
const QString desc = QString::fromUtf8(
|
||||
GitClient::instance()->synchronousShow(
|
||||
m_workingDirectory, revision, VcsCommand::NoOutput));
|
||||
m_workingDirectory, revision, ShellCommand::NoOutput));
|
||||
m_descriptions[revision] = desc;
|
||||
return desc;
|
||||
}
|
||||
@@ -192,7 +192,7 @@ bool LogChangeWidget::populateLog(const FilePath &repository, const QString &com
|
||||
arguments << "--";
|
||||
QString output;
|
||||
if (!GitClient::instance()->synchronousLog(
|
||||
repository, arguments, &output, nullptr, VcsCommand::NoOutput)) {
|
||||
repository, arguments, &output, nullptr, ShellCommand::NoOutput)) {
|
||||
return false;
|
||||
}
|
||||
const QStringList lines = output.split('\n');
|
||||
|
||||
Reference in New Issue
Block a user