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:
Jarek Kobus
2022-07-12 14:09:40 +02:00
parent e3da02248a
commit 0490e3426d
18 changed files with 162 additions and 186 deletions

View File

@@ -115,11 +115,11 @@ VcsCommandResultProxy::VcsCommandResultProxy(VcsCommand *command,
: QObject(target->q)
, m_target(target)
{
connect(command, &VcsCommand::stdOutText,
connect(command, &ShellCommand::stdOutText,
this, &VcsCommandResultProxy::storeOutput);
connect(command, &VcsCommand::finished,
connect(command, &ShellCommand::finished,
this, &VcsCommandResultProxy::commandFinished);
connect(command, &VcsCommand::destroyed,
connect(command, &ShellCommand::destroyed,
this, &QObject::deleteLater);
}