MessageManager: Remove no longer used printToOutputPane functions

Change-Id: Ifd8f251a556e8102ed15a503ee5b67b36f894273
Reviewed-by: Eike Ziller <eike.ziller@digia.com>
This commit is contained in:
Daniel Teske
2013-03-12 18:12:54 +01:00
committed by Eike Ziller
parent fb488b0f14
commit a5942cf1d1
2 changed files with 0 additions and 19 deletions

View File

@@ -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);
}