aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/qmljseditor/qmljseditorplugin.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/qmljseditor/qmljseditorplugin.h')
-rw-r--r--src/plugins/qmljseditor/qmljseditorplugin.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/plugins/qmljseditor/qmljseditorplugin.h b/src/plugins/qmljseditor/qmljseditorplugin.h
index dfe2c39f8b..79d928e6d5 100644
--- a/src/plugins/qmljseditor/qmljseditorplugin.h
+++ b/src/plugins/qmljseditor/qmljseditorplugin.h
@@ -53,7 +53,7 @@ class IEditor;
}
namespace TextEditor {
-class ITextEditable;
+class ITextEditor;
}
namespace QmlJS {
@@ -63,7 +63,7 @@ namespace QmlJS {
namespace QmlJSEditor {
class QmlFileWizard;
-class QmlJSTextEditor;
+class QmlJSTextEditorWidget;
namespace Internal {
@@ -90,7 +90,7 @@ public:
QmlJSQuickFixCollector *quickFixCollector() const;
- void initializeEditor(QmlJSEditor::QmlJSTextEditor *editor);
+ void initializeEditor(QmlJSEditor::QmlJSTextEditorWidget *editor);
public Q_SLOTS:
void followSymbolUnderCursor();
@@ -98,7 +98,7 @@ public Q_SLOTS:
void showContextPane();
private Q_SLOTS:
- void quickFix(TextEditor::ITextEditable *editable);
+ void quickFix(TextEditor::ITextEditor *editable);
void quickFixNow();
void currentEditorChanged(Core::IEditor *editor);
@@ -119,7 +119,7 @@ private:
QmlJSQuickFixCollector *m_quickFixCollector;
QTimer *m_quickFixTimer;
- QPointer<TextEditor::ITextEditable> m_currentTextEditable;
+ QPointer<TextEditor::ITextEditor> m_currentTextEditable;
QmlTaskManager *m_qmlTaskManager;
};