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);
|
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)
|
void MessageManager::printToOutputPane(const QString &text, PrintToOutputPaneFlags flags)
|
||||||
{
|
{
|
||||||
if (!m_messageOutputWindow)
|
if (!m_messageOutputWindow)
|
||||||
@@ -89,13 +83,3 @@ void MessageManager::printToOutputPane(const QString &text, PrintToOutputPaneFla
|
|||||||
m_messageOutputWindow->append(text + QLatin1Char('\n'));
|
m_messageOutputWindow->append(text + QLatin1Char('\n'));
|
||||||
}
|
}
|
||||||
|
|
||||||
void MessageManager::printToOutputPanePopup(const QString &text)
|
|
||||||
{
|
|
||||||
printToOutputPane(text, ModeSwitch);
|
|
||||||
}
|
|
||||||
|
|
||||||
void MessageManager::printToOutputPane(const QString &text)
|
|
||||||
{
|
|
||||||
printToOutputPane(text, Silent);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|||||||
@@ -66,9 +66,6 @@ public:
|
|||||||
Q_DECLARE_FLAGS(PrintToOutputPaneFlags, PrintToOutputPaneFlag)
|
Q_DECLARE_FLAGS(PrintToOutputPaneFlags, PrintToOutputPaneFlag)
|
||||||
|
|
||||||
public slots:
|
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);
|
void printToOutputPane(const QString &text, Core::MessageManager::PrintToOutputPaneFlags flags);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|||||||
Reference in New Issue
Block a user