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:
@@ -117,16 +117,16 @@ private:
|
||||
QModelIndex indexForPosition(unsigned cursorPosition, const QModelIndex &rootIndex = QModelIndex()) const;
|
||||
bool hideContextPane();
|
||||
|
||||
QmlJSEditorDocument *m_qmlJsEditorDocument;
|
||||
QmlJSEditorDocument *m_qmlJsEditorDocument = nullptr;
|
||||
QTimer m_updateUsesTimer; // to wait for multiple text cursor position changes
|
||||
QTimer m_updateOutlineIndexTimer;
|
||||
QTimer m_contextPaneTimer;
|
||||
QComboBox *m_outlineCombo;
|
||||
QModelIndex m_outlineModelIndex;
|
||||
QmlJS::ModelManagerInterface *m_modelManager;
|
||||
QmlJS::ModelManagerInterface *m_modelManager = nullptr;
|
||||
|
||||
QmlJS::IContextPane *m_contextPane;
|
||||
int m_oldCursorPosition;
|
||||
QmlJS::IContextPane *m_contextPane = nullptr;
|
||||
int m_oldCursorPosition = -1;
|
||||
|
||||
FindReferences *m_findReferences;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user