diff options
author | hjk <hjk121@nokiamail.com> | 2014-07-30 16:30:31 +0200 |
---|---|---|
committer | hjk <hjk121@nokiamail.com> | 2014-07-31 10:54:58 +0200 |
commit | 210321377e10b39c9aaf78e4cb4d39a57876a225 (patch) | |
tree | 19e13e680c96e64735f929b444fd48f16d9ecf2c /src/plugins/pythoneditor/pythoneditorwidget.h | |
parent | f6b48950ed275d8c540e4950f3c2f145de03ae16 (diff) | |
download | qt-creator-210321377e10b39c9aaf78e4cb4d39a57876a225.tar.gz |
Editors: Some renamings to enhance consistency
The base pattern is FooEditor for BaseTextEditor derived classes
and FooEditorWidget for BaseTextEditorWidget derived classes. So:
CPPEditorWidget -> CppEditorWidget
CPPEditorWidgetPrivate -> CppEditorWidgetPrivate
...::EditorWidget -> PythonEditorWidget
GLSLTextEditorWidget -> GlslEditorWidget
GLSLEditorEditable -> GlslEditor
Change-Id: I76d34a3694c2fb35491982d86e83f7e4774c0be6
Reviewed-by: Daniel Teske <daniel.teske@digia.com>
Reviewed-by: Christian Stenger <christian.stenger@digia.com>
Diffstat (limited to 'src/plugins/pythoneditor/pythoneditorwidget.h')
-rw-r--r-- | src/plugins/pythoneditor/pythoneditorwidget.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/plugins/pythoneditor/pythoneditorwidget.h b/src/plugins/pythoneditor/pythoneditorwidget.h index d8d63bb372..e5a63d4140 100644 --- a/src/plugins/pythoneditor/pythoneditorwidget.h +++ b/src/plugins/pythoneditor/pythoneditorwidget.h @@ -36,19 +36,19 @@ namespace PythonEditor { namespace Internal { -class EditorWidget : public TextEditor::BaseTextEditorWidget +class PythonEditorWidget : public TextEditor::BaseTextEditorWidget { Q_OBJECT public: - EditorWidget(QWidget *parent = 0); - EditorWidget(EditorWidget *other); + PythonEditorWidget(QWidget *parent = 0); + PythonEditorWidget(PythonEditorWidget *other); protected: TextEditor::BaseTextEditor *createEditor(); private: - EditorWidget(TextEditor::BaseTextEditorWidget *); // avoid stupidity + PythonEditorWidget(TextEditor::BaseTextEditorWidget *); // avoid stupidity void ctor(); }; |