summaryrefslogtreecommitdiffstats
path: root/knode/articlewidget.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2023-11-30 21:31:17 +0900
committerMichele Calgaro <[email protected]>2023-12-02 22:49:10 +0900
commitae35bc48cbbe82211fa27f49e2d4f3c8bcdbe0ec (patch)
treefe7187f6c8ce4a11740c29304086eda5fa4146cf /knode/articlewidget.cpp
parent51d0291b086eede28d1f3b8c1f59affbf4109a99 (diff)
downloadtdepim-ae35bc48cbbe82211fa27f49e2d4f3c8bcdbe0ec.tar.gz
tdepim-ae35bc48cbbe82211fa27f49e2d4f3c8bcdbe0ec.zip
Replace 'Event' #define strings
Signed-off-by: Michele Calgaro <[email protected]> (cherry picked from commit ef173e633b7d068c4ddd2209af41899ec44e47ce)
Diffstat (limited to 'knode/articlewidget.cpp')
-rw-r--r--knode/articlewidget.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/knode/articlewidget.cpp b/knode/articlewidget.cpp
index 73b755141..852707ffa 100644
--- a/knode/articlewidget.cpp
+++ b/knode/articlewidget.cpp
@@ -1472,7 +1472,7 @@ void ArticleWidget::focusOutEvent( TQFocusEvent *e )
bool ArticleWidget::eventFilter( TQObject *o, TQEvent *e )
{
- if ( e->type() == TQEvent::KeyPress && (TQT_TQKEYEVENT(e)->key() == Key_Tab) ) {
+ if ( e->type() == TQEvent::KeyPress && (static_cast<TQKeyEvent*>(e)->key() == Key_Tab) ) {
emit focusChangeRequest( this );
if ( !hasFocus() ) // focusChangeRequest was successful
return true;