summaryrefslogtreecommitdiffstats
path: root/parts/documentation/indexview.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'parts/documentation/indexview.cpp')
-rw-r--r--parts/documentation/indexview.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/parts/documentation/indexview.cpp b/parts/documentation/indexview.cpp
index 3e0a3921..1b2e67ba 100644
--- a/parts/documentation/indexview.cpp
+++ b/parts/documentation/indexview.cpp
@@ -123,7 +123,7 @@ bool IndexView::eventFilter(TQObject *watched, TQEvent *e)
if (!watched || !e)
return true;
- if ((TQT_BASE_OBJECT(watched) == TQT_BASE_OBJECT(m_edit)) && (e->type() == TQEvent::KeyPress))
+ if ((watched == m_edit) && (e->type() == TQEvent::KeyPress))
{
TQKeyEvent *ke = (TQKeyEvent*)e;
if (ke->key() == Key_Up)