aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer/editorconfiguration.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/projectexplorer/editorconfiguration.h')
-rw-r--r--src/plugins/projectexplorer/editorconfiguration.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/plugins/projectexplorer/editorconfiguration.h b/src/plugins/projectexplorer/editorconfiguration.h
index 54d923daae..01ad2a47ec 100644
--- a/src/plugins/projectexplorer/editorconfiguration.h
+++ b/src/plugins/projectexplorer/editorconfiguration.h
@@ -42,9 +42,9 @@ class Id;
}
namespace TextEditor {
-class ITextEditor;
-class BaseTextEditorWidget;
-class BaseTextDocument;
+class BaseTextEditor;
+class TextEditorWidget;
+class TextDocument;
class TabSettings;
class ICodeStylePreferences;
class TypingSettings;
@@ -84,8 +84,8 @@ public:
TextEditor::ICodeStylePreferences *codeStyle(Core::Id languageId) const;
QMap<Core::Id, TextEditor::ICodeStylePreferences *> codeStyles() const;
- void configureEditor(TextEditor::ITextEditor *textEditor) const;
- void deconfigureEditor(TextEditor::ITextEditor *textEditor) const;
+ void configureEditor(TextEditor::BaseTextEditor *textEditor) const;
+ void deconfigureEditor(TextEditor::BaseTextEditor *textEditor) const;
QVariantMap toMap() const;
void fromMap(const QVariantMap &map);
@@ -113,7 +113,7 @@ private slots:
void slotAboutToRemoveProject(ProjectExplorer::Project *project);
void editorsClosed(const QList<Core::IEditor*> &closedEditors);
private:
- void switchSettings(TextEditor::BaseTextEditorWidget *baseTextEditor) const;
+ void switchSettings(TextEditor::TextEditorWidget *baseTextEditor) const;
EditorConfigurationPrivate *d;
};
@@ -122,7 +122,7 @@ private:
// the file belongs to and return the project settings. If the file doesn't belong to any
// project return the global settings.
PROJECTEXPLORER_EXPORT TextEditor::TabSettings actualTabSettings(
- const QString &fileName, const TextEditor::BaseTextDocument *baseTextDocument);
+ const QString &fileName, const TextEditor::TextDocument *baseTextDocument);
} // ProjectExplorer