diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-30 21:30:44 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-30 21:30:44 +0900 |
commit | c3aa1feaab76f93138ae16090af4b2acb4dcc147 (patch) | |
tree | 05d6bc6077035d1c03f32bc104e1dd8db01d9145 /kooka | |
parent | 6f8204d5e92e1524474668e99f241c4740e7020c (diff) | |
download | tdegraphics-c3aa1feaab76f93138ae16090af4b2acb4dcc147.tar.gz tdegraphics-c3aa1feaab76f93138ae16090af4b2acb4dcc147.zip |
Replace 'Event' #define strings
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kooka')
-rw-r--r-- | kooka/ksaneocr.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kooka/ksaneocr.cpp b/kooka/ksaneocr.cpp index a0a3de38..672989b1 100644 --- a/kooka/ksaneocr.cpp +++ b/kooka/ksaneocr.cpp @@ -1127,7 +1127,7 @@ bool KSANEOCR::eventFilter( TQObject *object, TQEvent *event ) { if( event->type() == TQEvent::MouseButtonDblClick ) { - TQMouseEvent *mev = TQT_TQMOUSEEVENT(event); + TQMouseEvent *mev = static_cast<TQMouseEvent*>(event); int x = mev->x(); int y = mev->y(); |