forked from qt-creator/qt-creator
Debugger: Some less verbose member initialization
Change-Id: I9e565d758ac490cc9ccb984e4d4e1ca809fb5a09 Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
This commit is contained in:
@@ -161,14 +161,14 @@ public:
|
|||||||
|
|
||||||
public:
|
public:
|
||||||
AnalyzerManager *q;
|
AnalyzerManager *q;
|
||||||
Internal::AnalyzerMode *m_mode;
|
Internal::AnalyzerMode *m_mode = 0;
|
||||||
bool m_isRunning;
|
bool m_isRunning = false;
|
||||||
FancyMainWindow *m_mainWindow;
|
FancyMainWindow *m_mainWindow = 0;
|
||||||
AnalyzerAction *m_currentAction;
|
AnalyzerAction *m_currentAction = 0;
|
||||||
QList<AnalyzerAction *> m_actions;
|
QList<AnalyzerAction *> m_actions;
|
||||||
QAction *m_startAction;
|
QAction *m_startAction = 0;
|
||||||
QAction *m_stopAction;
|
QAction *m_stopAction = 0;
|
||||||
ActionContainer *m_menu;
|
ActionContainer *m_menu = 0;
|
||||||
QComboBox *m_toolBox;
|
QComboBox *m_toolBox;
|
||||||
QStackedWidget *m_controlsStackWidget;
|
QStackedWidget *m_controlsStackWidget;
|
||||||
QStackedWidget *m_statusLabelsStackWidget;
|
QStackedWidget *m_statusLabelsStackWidget;
|
||||||
@@ -188,13 +188,6 @@ private:
|
|||||||
|
|
||||||
AnalyzerManagerPrivate::AnalyzerManagerPrivate(AnalyzerManager *qq):
|
AnalyzerManagerPrivate::AnalyzerManagerPrivate(AnalyzerManager *qq):
|
||||||
q(qq),
|
q(qq),
|
||||||
m_mode(0),
|
|
||||||
m_isRunning(false),
|
|
||||||
m_mainWindow(0),
|
|
||||||
m_currentAction(0),
|
|
||||||
m_startAction(0),
|
|
||||||
m_stopAction(0),
|
|
||||||
m_menu(0),
|
|
||||||
m_toolBox(new QComboBox),
|
m_toolBox(new QComboBox),
|
||||||
m_controlsStackWidget(new QStackedWidget),
|
m_controlsStackWidget(new QStackedWidget),
|
||||||
m_statusLabelsStackWidget(new QStackedWidget)
|
m_statusLabelsStackWidget(new QStackedWidget)
|
||||||
|
|||||||
Reference in New Issue
Block a user