forked from qt-creator/qt-creator
QmlJSEditor: use direct member initialization
Change-Id: I03aada10107a9d80d920d18c92df7ec36e6a22d4 Reviewed-by: Marco Benelli <marco.benelli@qt.io>
This commit is contained in:
@@ -85,14 +85,14 @@ private:
|
||||
bool syncCursor();
|
||||
|
||||
private:
|
||||
QmlJSOutlineTreeView *m_treeView;
|
||||
QmlJSOutlineFilterModel *m_filterModel;
|
||||
QmlJSEditorWidget *m_editor;
|
||||
QmlJSOutlineTreeView *m_treeView = nullptr;
|
||||
QmlJSOutlineFilterModel *m_filterModel = nullptr;
|
||||
QmlJSEditorWidget *m_editor = nullptr;
|
||||
|
||||
QAction *m_showBindingsAction;
|
||||
QAction *m_showBindingsAction = nullptr;
|
||||
|
||||
bool m_enableCursorSync;
|
||||
bool m_blockCursorSync;
|
||||
bool m_enableCursorSync = true;
|
||||
bool m_blockCursorSync = false;
|
||||
};
|
||||
|
||||
class QmlJSOutlineWidgetFactory : public TextEditor::IOutlineWidgetFactory
|
||||
|
||||
Reference in New Issue
Block a user