diff options
author | hjk <[email protected]> | 2013-09-05 01:52:17 +0200 |
---|---|---|
committer | hjk <[email protected]> | 2013-09-05 12:51:00 +0200 |
commit | 527046acc212691b20be60d450c249d8d7dcbe12 (patch) | |
tree | 5d4e4f2e5d4359a2da95ecec20e8f3c59513b239 /src/plugins/debugger/debuggerplugin.cpp | |
parent | aadb6f16af94a2baff9d13772e9ddce33faa7650 (diff) |
MessageManager: General cleanup.
Apply 'static' pattern, rename 'printToOutputPane' to 'write'
Change-Id: I6f31f1a8c914661e2a2182c0b6256b41ead28de7
Reviewed-by: David Schulz <[email protected]>
Diffstat (limited to 'src/plugins/debugger/debuggerplugin.cpp')
-rw-r--r-- | src/plugins/debugger/debuggerplugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/debugger/debuggerplugin.cpp b/src/plugins/debugger/debuggerplugin.cpp index 7c8b74f50a6..b31f6b5d9f2 100644 --- a/src/plugins/debugger/debuggerplugin.cpp +++ b/src/plugins/debugger/debuggerplugin.cpp @@ -1479,7 +1479,7 @@ void DebuggerPluginPrivate::parseCommandLineArguments() errorMessage = tr("Error evaluating command line arguments: %1") .arg(errorMessage); qWarning("%s\n", qPrintable(errorMessage)); - Core::MessageManager::instance()->printToOutputPane(errorMessage, Core::MessageManager::NoModeSwitch); + MessageManager::write(errorMessage); } if (!m_scheduledStarts.isEmpty()) QTimer::singleShot(0, this, SLOT(runScheduled())); |