aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/cppeditor/cppdocumentationcommenthelper.h
diff options
context:
space:
mode:
authorhjk <hjk121@nokiamail.com>2014-09-26 11:37:54 +0200
committerDavid Schulz <david.schulz@digia.com>2014-09-29 14:54:32 +0200
commit10c8d5f0cad6c89a75a7662aed0912c622482f03 (patch)
tree290f27191ff7a65427dd0df132652995efecedea /src/plugins/cppeditor/cppdocumentationcommenthelper.h
parentcfaa30d0b91ac7b46883b332bf246b41dd84e6dc (diff)
TextEditor: Rename BaseTextEditorWidget to TextEditorWidget
... and some of the related implementation details Change-Id: I1f03aa5acf2d3fb2cfc2a6a7845f3d3578b0408d Reviewed-by: David Schulz <david.schulz@digia.com>
Diffstat (limited to 'src/plugins/cppeditor/cppdocumentationcommenthelper.h')
-rw-r--r--src/plugins/cppeditor/cppdocumentationcommenthelper.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/cppeditor/cppdocumentationcommenthelper.h b/src/plugins/cppeditor/cppdocumentationcommenthelper.h
index c8b81a3e03..7dbdbe2a8c 100644
--- a/src/plugins/cppeditor/cppdocumentationcommenthelper.h
+++ b/src/plugins/cppeditor/cppdocumentationcommenthelper.h
@@ -36,7 +36,7 @@
QT_FORWARD_DECLARE_CLASS(QKeyEvent)
-namespace TextEditor { class BaseTextEditorWidget; }
+namespace TextEditor { class TextEditorWidget; }
namespace CppEditor {
namespace Internal {
@@ -47,7 +47,7 @@ class CppDocumentationCommentHelper : public QObject
Q_DISABLE_COPY(CppDocumentationCommentHelper)
public:
- explicit CppDocumentationCommentHelper(TextEditor::BaseTextEditorWidget *editorWidget);
+ explicit CppDocumentationCommentHelper(TextEditor::TextEditorWidget *editorWidget);
bool handleKeyPressEvent(QKeyEvent *e) const;
private slots:
@@ -56,7 +56,7 @@ private slots:
private:
CppDocumentationCommentHelper();
- TextEditor::BaseTextEditorWidget *m_editorWidget;
+ TextEditor::TextEditorWidget *m_editorWidget;
CppTools::CommentsSettings m_settings;
};