summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Teske <daniel.teske@digia.com>2013-03-12 18:12:54 +0100
committerEike Ziller <eike.ziller@digia.com>2013-03-25 11:09:21 +0100
commita5942cf1d1976425caf74b5fa1fd382bd02b2f04 (patch)
tree158b7af9690c064bd464a035ac375f77e246e789
parentfb488b0f14ff8b480100d863b4be1ca0162fc5fb (diff)
downloadqt-creator-a5942cf1d1976425caf74b5fa1fd382bd02b2f04.tar.gz
MessageManager: Remove no longer used printToOutputPane functions
Change-Id: Ifd8f251a556e8102ed15a503ee5b67b36f894273 Reviewed-by: Eike Ziller <eike.ziller@digia.com>
-rw-r--r--src/plugins/coreplugin/messagemanager.cpp16
-rw-r--r--src/plugins/coreplugin/messagemanager.h3
2 files changed, 0 insertions, 19 deletions
diff --git a/src/plugins/coreplugin/messagemanager.cpp b/src/plugins/coreplugin/messagemanager.cpp
index e6819fdc3d..badb485451 100644
--- a/src/plugins/coreplugin/messagemanager.cpp
+++ b/src/plugins/coreplugin/messagemanager.cpp
@@ -68,12 +68,6 @@ void MessageManager::showOutputPane()
m_messageOutputWindow->popup(IOutputPane::ModeSwitch);
}
-void MessageManager::printToOutputPane(const QString &text, bool bringToForeground)
-{
- printToOutputPane(text, bringToForeground ? ModeSwitch
- : Silent);
-}
-
void MessageManager::printToOutputPane(const QString &text, PrintToOutputPaneFlags flags)
{
if (!m_messageOutputWindow)
@@ -89,13 +83,3 @@ void MessageManager::printToOutputPane(const QString &text, PrintToOutputPaneFla
m_messageOutputWindow->append(text + QLatin1Char('\n'));
}
-void MessageManager::printToOutputPanePopup(const QString &text)
-{
- printToOutputPane(text, ModeSwitch);
-}
-
-void MessageManager::printToOutputPane(const QString &text)
-{
- printToOutputPane(text, Silent);
-}
-
diff --git a/src/plugins/coreplugin/messagemanager.h b/src/plugins/coreplugin/messagemanager.h
index 51ba64e241..3d45be07c7 100644
--- a/src/plugins/coreplugin/messagemanager.h
+++ b/src/plugins/coreplugin/messagemanager.h
@@ -66,9 +66,6 @@ public:
Q_DECLARE_FLAGS(PrintToOutputPaneFlags, PrintToOutputPaneFlag)
public slots:
- void printToOutputPane(const QString &text, bool bringToForeground);
- void printToOutputPanePopup(const QString &text); // pops up
- void printToOutputPane(const QString &text);
void printToOutputPane(const QString &text, Core::MessageManager::PrintToOutputPaneFlags flags);
private: