diff options
author | hjk <hjk121@nokiamail.com> | 2014-07-23 19:10:38 +0200 |
---|---|---|
committer | hjk <hjk121@nokiamail.com> | 2014-07-25 13:45:55 +0200 |
commit | bf5e43be94b24517d6e62acbfd18fdc5a25ede73 (patch) | |
tree | 6f977217f47634c08e30aadc20105654b3ae6918 /src/plugins/qmljseditor/qmljshoverhandler.cpp | |
parent | 15421995ab1d4eada18e721a3503c87f58e94db9 (diff) | |
download | qt-creator-bf5e43be94b24517d6e62acbfd18fdc5a25ede73.tar.gz |
TextEditor: Merge ITextEditor and BaseTextEditor
Adjust all callers, de-export BaseTextEditorAnimator
Change-Id: I2329d976c1398e2449844bb480a4d4ed29859506
Reviewed-by: Tobias Hunger <tobias.hunger@digia.com>
Diffstat (limited to 'src/plugins/qmljseditor/qmljshoverhandler.cpp')
-rw-r--r-- | src/plugins/qmljseditor/qmljshoverhandler.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/plugins/qmljseditor/qmljshoverhandler.cpp b/src/plugins/qmljseditor/qmljshoverhandler.cpp index b632de221e..90333eea2d 100644 --- a/src/plugins/qmljseditor/qmljshoverhandler.cpp +++ b/src/plugins/qmljseditor/qmljshoverhandler.cpp @@ -45,7 +45,6 @@ #include <qmljs/parser/qmljsastfwd_p.h> #include <qmljs/qmljsutils.h> #include <qmljs/qmljsqrcparser.h> -#include <texteditor/itexteditor.h> #include <texteditor/basetexteditor.h> #include <texteditor/helpitem.h> #include <utils/tooltip/tooltip.h> @@ -184,7 +183,7 @@ bool HoverHandler::setQmlTypeHelp(const ScopeChain &scopeChain, const Document:: return true; } -void HoverHandler::identifyMatch(TextEditor::ITextEditor *editor, int pos) +void HoverHandler::identifyMatch(TextEditor::BaseTextEditor *editor, int pos) { reset(); @@ -377,7 +376,7 @@ void HoverHandler::reset() m_colorTip = QColor(); } -void HoverHandler::operateTooltip(TextEditor::ITextEditor *editor, const QPoint &point) +void HoverHandler::operateTooltip(TextEditor::BaseTextEditor *editor, const QPoint &point) { if (toolTip().isEmpty()) Utils::ToolTip::hide(); |