diff options
Diffstat (limited to 'src/editorproxy.cpp')
-rw-r--r-- | src/editorproxy.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/editorproxy.cpp b/src/editorproxy.cpp index 73ff852b..fca4bfdf 100644 --- a/src/editorproxy.cpp +++ b/src/editorproxy.cpp @@ -27,7 +27,7 @@ #include "partcontroller.h" #include "core.h" #include "multibuffer.h" -#include "kdeveditorutil.h" +#include "tdeveditorutil.h" #include "editorproxy.h" @@ -178,20 +178,20 @@ void EditorProxy::popupAboutToShow() unsigned int line; unsigned int col; - if ( !KDevEditorUtil::currentPositionReal( &line, &col, doc ) ) return; + if ( !TDevEditorUtil::currentPositionReal( &line, &col, doc ) ) return; TQString wordstr; - TQString selection = KDevEditorUtil::currentSelection( doc ); + TQString selection = TDevEditorUtil::currentSelection( doc ); if ( !selection.isEmpty() && selection.contains('\n') != 0 ) { wordstr = selection; } else { - wordstr = KDevEditorUtil::currentWord( doc ); + wordstr = TDevEditorUtil::currentWord( doc ); } - TQString linestr = KDevEditorUtil::currentLine( doc ); + TQString linestr = TDevEditorUtil::currentLine( doc ); EditorContext context( doc->url(), line, col, linestr, wordstr ); Core::getInstance()->fillContextMenu( popup, &context ); |