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, 0 insertions, 10 deletions
diff --git a/src/editorproxy.cpp b/src/editorproxy.cpp
index f9ce2ab8..48b78426 100644
--- a/src/editorproxy.cpp
+++ b/src/editorproxy.cpp
@@ -80,16 +80,6 @@ void EditorProxy::setLineNumber(KParts::Part *part, int lineNum, int col)
ViewCursorInterface *iface = dynamic_cast<ViewCursorInterface*>(part->widget());
if (iface)
{
-#if KDE_IS_VERSION(3,5,5)
-#else
- if (!part->widget()->hasFocus()) //workaround for TQXIMInputContext crashes. Keep for KDE <=3.5.4!
- {
- m_delayedPart = part;
- m_delayedLine = lineNum;
- m_delayedCol = col;
- m_delayedLineTimer->start( 1, true );
- } else
-#endif
iface->setCursorPositionReal(lineNum, col == -1 ? 0 : col);
}
else {