diff options
| author | hjk <hjk121@nokiamail.com> | 2014-08-28 11:34:19 +0200 |
|---|---|---|
| committer | hjk <hjk121@nokiamail.com> | 2014-08-28 17:36:36 +0200 |
| commit | 12642cc49a37e50eb3b099bfd34c28e6259b7526 (patch) | |
| tree | c6f444c1acfe2d662506c9c77b0a10289eb4da26 /src/plugins/pythoneditor/pythoneditor.cpp | |
| parent | 761f8de751e0d52105dba3df7473f10c0a884e45 (diff) | |
| download | qt-creator-12642cc49a37e50eb3b099bfd34c28e6259b7526.tar.gz | |
TextEditor: Remove some *Widget::createEditor implementation
This removes the ones that were not to be used anymore.
The fallback in the base class is left in for now.
Change-Id: I5e7ab16497a83eff9b11deb9e1feb390757eac0e
Reviewed-by: Christian Stenger <christian.stenger@digia.com>
Diffstat (limited to 'src/plugins/pythoneditor/pythoneditor.cpp')
| -rw-r--r-- | src/plugins/pythoneditor/pythoneditor.cpp | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/src/plugins/pythoneditor/pythoneditor.cpp b/src/plugins/pythoneditor/pythoneditor.cpp index 1f05378866..96be07bc01 100644 --- a/src/plugins/pythoneditor/pythoneditor.cpp +++ b/src/plugins/pythoneditor/pythoneditor.cpp @@ -57,7 +57,7 @@ namespace Internal { // PythonEditor // -class PythonEditor : public TextEditor::BaseTextEditor +class PythonEditor : public BaseTextEditor { public: PythonEditor() @@ -80,7 +80,7 @@ public: // PythonEditorWidget // -class PythonEditorWidget : public TextEditor::BaseTextEditorWidget +class PythonEditorWidget : public BaseTextEditorWidget { public: PythonEditorWidget() @@ -89,11 +89,6 @@ public: setMarksVisible(true); setCodeFoldingSupported(true); } - - TextEditor::BaseTextEditor *createEditor() - { - QTC_ASSERT("should not happen anymore" && false, return 0); - } }; |
