diff options
author | Orgad Shaneh <[email protected]> | 2018-07-17 23:21:05 +0300 |
---|---|---|
committer | Tobias Hunger <[email protected]> | 2018-07-19 08:21:29 +0000 |
commit | 7cee991c70669c477aefa5009108fc0a658248de (patch) | |
tree | cf4c39585e044a28560b683e3f01c3dbd165d4c2 /src/libs/utils/shellcommandpage.cpp | |
parent | 9f8dbc1d2f518a50f4b5cefc3ba4c650321c274e (diff) |
Utils: Remove superfluous qualifications
Change-Id: I36e17dac0cff87f82f0ddaf97bc613389110f218
Reviewed-by: Eike Ziller <[email protected]>
Diffstat (limited to 'src/libs/utils/shellcommandpage.cpp')
-rw-r--r-- | src/libs/utils/shellcommandpage.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libs/utils/shellcommandpage.cpp b/src/libs/utils/shellcommandpage.cpp index 6f4690ef650..423fe646230 100644 --- a/src/libs/utils/shellcommandpage.cpp +++ b/src/libs/utils/shellcommandpage.cpp @@ -53,7 +53,7 @@ ShellCommandPage::ShellCommandPage(QWidget *parent) : resize(264, 200); auto verticalLayout = new QVBoxLayout(this); m_logPlainTextEdit = new QPlainTextEdit; - m_formatter = new Utils::OutputFormatter; + m_formatter = new OutputFormatter; m_logPlainTextEdit->setReadOnly(true); m_formatter->setPlainTextEdit(m_logPlainTextEdit); @@ -86,10 +86,10 @@ void ShellCommandPage::start(ShellCommand *command) m_command = command; command->setProgressiveOutput(true); connect(command, &ShellCommand::stdOutText, this, [this](const QString &text) { - m_formatter->appendMessage(text, Utils::StdOutFormat); + m_formatter->appendMessage(text, StdOutFormat); }); connect(command, &ShellCommand::stdErrText, this, [this](const QString &text) { - m_formatter->appendMessage(text, Utils::StdErrFormat); + m_formatter->appendMessage(text, StdErrFormat); }); connect(command, &ShellCommand::finished, this, &ShellCommandPage::slotFinished); QApplication::setOverrideCursor(Qt::WaitCursor); |