diff options
author | hjk <hjk121@nokiamail.com> | 2014-08-26 17:15:37 +0200 |
---|---|---|
committer | hjk <hjk121@nokiamail.com> | 2014-08-27 16:08:02 +0200 |
commit | 2567f44a1d78435cf12a477677337a57f96cc13b (patch) | |
tree | bbefe8469d63462d889b03cfe7b18c860c997895 /src/plugins/qmljseditor/qmljseditor.h | |
parent | 976d8bb8fb4aadba574b130963d1c39ce6f0ce71 (diff) | |
download | qt-creator-2567f44a1d78435cf12a477677337a57f96cc13b.tar.gz |
QmlJSEditor: some Qt5-ification
Change-Id: I494ec29e0e9c09192f30c80945725276cc03b531
Reviewed-by: Christian Stenger <christian.stenger@digia.com>
Diffstat (limited to 'src/plugins/qmljseditor/qmljseditor.h')
-rw-r--r-- | src/plugins/qmljseditor/qmljseditor.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/plugins/qmljseditor/qmljseditor.h b/src/plugins/qmljseditor/qmljseditor.h index 118cb1bc77..aed1159aaa 100644 --- a/src/plugins/qmljseditor/qmljseditor.h +++ b/src/plugins/qmljseditor/qmljseditor.h @@ -40,10 +40,10 @@ #include <utils/uncommentselection.h> #include <QModelIndex> +#include <QTimer> QT_BEGIN_NAMESPACE class QComboBox; -class QTimer; QT_END_NAMESPACE namespace QmlJS { @@ -123,9 +123,9 @@ private: bool hideContextPane(); QmlJSEditorDocument *m_qmlJsEditorDocument; - QTimer *m_updateUsesTimer; // to wait for multiple text cursor position changes - QTimer *m_updateOutlineIndexTimer; - QTimer *m_contextPaneTimer; + 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; |