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