diff options
Diffstat (limited to 'src/plugins/pythoneditor')
-rw-r--r-- | src/plugins/pythoneditor/pythoneditor.cpp | 5 | ||||
-rw-r--r-- | src/plugins/pythoneditor/pythoneditor.h | 1 |
2 files changed, 0 insertions, 6 deletions
diff --git a/src/plugins/pythoneditor/pythoneditor.cpp b/src/plugins/pythoneditor/pythoneditor.cpp index c66e1fe393..629e326e2f 100644 --- a/src/plugins/pythoneditor/pythoneditor.cpp +++ b/src/plugins/pythoneditor/pythoneditor.cpp @@ -74,11 +74,6 @@ Core::Id PythonEditor::id() const return Core::Id(Constants::C_PYTHONEDITOR_ID); } -Core::Id PythonEditor::preferredModeType() const -{ - return Core::Id(); -} - bool PythonEditor::open(QString *errorString, const QString &fileName, const QString &realFileName) diff --git a/src/plugins/pythoneditor/pythoneditor.h b/src/plugins/pythoneditor/pythoneditor.h index 1ca117458f..435fb08560 100644 --- a/src/plugins/pythoneditor/pythoneditor.h +++ b/src/plugins/pythoneditor/pythoneditor.h @@ -50,7 +50,6 @@ public: Core::Id id() const; bool isTemporary() const { return false; } - Core::Id preferredModeType() const; /** Opens file for editing, actual work performed by base class |