forked from qt-creator/qt-creator
ShellCommand: Rename some signals
Rename the signals used to report stdout/stderr to make it clearer what they actually do. Remove some unimplemented private member functions while at it. Change-Id: I7e856f906ccb45964f3b1b64336d4d8ebca7b9ee Reviewed-by: Orgad Shaneh <orgads@gmail.com>
This commit is contained in:
@@ -95,8 +95,8 @@ void CheckoutProgressWizardPage::start(VcsCommand *command)
|
||||
QTC_ASSERT(m_state != Running, return);
|
||||
m_command = command;
|
||||
command->setProgressiveOutput(true);
|
||||
connect(command, &VcsCommand::output, this, &CheckoutProgressWizardPage::reportStdOut);
|
||||
connect(command, &VcsCommand::errorText, this, &CheckoutProgressWizardPage::reportStdErr);
|
||||
connect(command, &VcsCommand::stdOutText, this, &CheckoutProgressWizardPage::reportStdOut);
|
||||
connect(command, &VcsCommand::stdErrText, this, &CheckoutProgressWizardPage::reportStdErr);
|
||||
connect(command, &VcsCommand::finished, this, &CheckoutProgressWizardPage::slotFinished);
|
||||
QApplication::setOverrideCursor(Qt::WaitCursor);
|
||||
m_logPlainTextEdit->clear();
|
||||
|
||||
Reference in New Issue
Block a user