diff options
Diffstat (limited to 'lib/koproperty/editor.cpp')
-rw-r--r-- | lib/koproperty/editor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/koproperty/editor.cpp b/lib/koproperty/editor.cpp index 2a72fdbe..ddd23539 100644 --- a/lib/koproperty/editor.cpp +++ b/lib/koproperty/editor.cpp @@ -916,7 +916,7 @@ bool Editor::eventFilter( TQObject * watched, TQEvent * e ) { if ((watched==this || watched==viewport()) && e->type()==TQEvent::KeyPress) { - if (handleKeyPress(TQT_TQKEYEVENT(e))) + if (handleKeyPress(static_cast<TQKeyEvent*>(e))) return true; } return TDEListView::eventFilter(watched, e); |