diff options
author | hjk <hjk121@nokiamail.com> | 2014-09-26 11:37:54 +0200 |
---|---|---|
committer | David Schulz <david.schulz@digia.com> | 2014-09-29 14:54:32 +0200 |
commit | 10c8d5f0cad6c89a75a7662aed0912c622482f03 (patch) | |
tree | 290f27191ff7a65427dd0df132652995efecedea /src/libs | |
parent | cfaa30d0b91ac7b46883b332bf246b41dd84e6dc (diff) | |
download | qt-creator-10c8d5f0cad6c89a75a7662aed0912c622482f03.tar.gz |
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/libs')
-rw-r--r-- | src/libs/qmljs/qmljsicontextpane.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libs/qmljs/qmljsicontextpane.h b/src/libs/qmljs/qmljsicontextpane.h index 1f32cc1c12..2ede43c682 100644 --- a/src/libs/qmljs/qmljsicontextpane.h +++ b/src/libs/qmljs/qmljsicontextpane.h @@ -37,7 +37,7 @@ #include <qmljs/qmljsdocument.h> #include <qmljs/parser/qmljsastfwd_p.h> -namespace TextEditor { class BaseTextEditorWidget; } +namespace TextEditor { class TextEditorWidget; } namespace QmlJS { @@ -50,9 +50,9 @@ class QMLJS_EXPORT IContextPane : public QObject public: IContextPane(QObject *parent = 0) : QObject(parent) {} virtual ~IContextPane() {} - virtual void apply(TextEditor::BaseTextEditorWidget *editorWidget, Document::Ptr document, const ScopeChain *scopeChain, AST::Node *node, bool update, bool force = false) = 0; + virtual void apply(TextEditor::TextEditorWidget *editorWidget, Document::Ptr document, const ScopeChain *scopeChain, AST::Node *node, bool update, bool force = false) = 0; virtual void setEnabled(bool) = 0; - virtual bool isAvailable(TextEditor::BaseTextEditorWidget *editorWidget, Document::Ptr document, AST::Node *node) = 0; + virtual bool isAvailable(TextEditor::TextEditorWidget *editorWidget, Document::Ptr document, AST::Node *node) = 0; virtual QWidget* widget() = 0; signals: void closed(); |