forked from qt-creator/qt-creator
Core: make OutputPaneManager life time functions private again
Change-Id: I340fed894fcd157f965ab0d441a92edbf7267558 Reviewed-by: Marcus Tillmanns <marcus.tillmanns@qt.io>
This commit is contained in:
@@ -38,11 +38,6 @@ public:
|
||||
static int outputPaneHeightSetting();
|
||||
static void setOutputPaneHeightSetting(int value);
|
||||
|
||||
// FIXME: Hide again
|
||||
static void create();
|
||||
static void initialize();
|
||||
static void destroy();
|
||||
|
||||
public slots:
|
||||
void slotHide();
|
||||
void slotNext();
|
||||
@@ -55,7 +50,7 @@ protected:
|
||||
|
||||
private:
|
||||
// the only class that is allowed to create and destroy
|
||||
friend class ICore;
|
||||
friend class Core::ICore;
|
||||
friend class ICorePrivate;
|
||||
friend class MainWindow;
|
||||
friend class OutputPaneManageButton;
|
||||
@@ -63,6 +58,10 @@ private:
|
||||
explicit OutputPaneManager(QWidget *parent = nullptr);
|
||||
~OutputPaneManager() override;
|
||||
|
||||
static void create();
|
||||
static void initialize();
|
||||
static void destroy();
|
||||
|
||||
void shortcutTriggered(int idx);
|
||||
void clearPage();
|
||||
void popupMenu();
|
||||
|
Reference in New Issue
Block a user