From 95292c3fe7b1d6eccf38d93e1a2e071847dc6120 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sun, 8 Mar 2026 12:15:00 +0900 Subject: Remove use of KDE_IS_VERSION Signed-off-by: Michele Calgaro --- src/editorproxy.cpp | 10 ---------- 1 file changed, 10 deletions(-) (limited to 'src/editorproxy.cpp') 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(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 { -- cgit v1.2.3