QmlJSEditor: some Qt5-ification

Change-Id: I494ec29e0e9c09192f30c80945725276cc03b531
Reviewed-by: Christian Stenger <christian.stenger@digia.com>
This commit is contained in:
hjk
2014-08-26 17:15:37 +02:00
parent 976d8bb8fb
commit 2567f44a1d
2 changed files with 26 additions and 23 deletions

View File

@@ -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;