forked from qt-creator/qt-creator
MessageManager: Remove no longer used printToOutputPane functions
Change-Id: Ifd8f251a556e8102ed15a503ee5b67b36f894273 Reviewed-by: Eike Ziller <eike.ziller@digia.com>
This commit is contained in:
committed by
Eike Ziller
parent
fb488b0f14
commit
a5942cf1d1
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user