diff options
author | Michele Calgaro <[email protected]> | 2023-11-30 21:31:31 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-11-30 21:31:31 +0900 |
commit | 2cde36cd6db66eb3ef5bce69f52f44f6a80242a8 (patch) | |
tree | 9017c14e2563f47f942b4081bbbf834521e443bc /kworldwatch | |
parent | c53b2fa4e7dbbe86e5431adccd0a7f4ba16008f5 (diff) | |
download | tdetoys-2cde36cd6db66eb3ef5bce69f52f44f6a80242a8.tar.gz tdetoys-2cde36cd6db66eb3ef5bce69f52f44f6a80242a8.zip |
Replace 'Event' #define strings
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'kworldwatch')
-rw-r--r-- | kworldwatch/applet.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kworldwatch/applet.cpp b/kworldwatch/applet.cpp index 8ce7560..aa7be5a 100644 --- a/kworldwatch/applet.cpp +++ b/kworldwatch/applet.cpp @@ -94,7 +94,7 @@ bool KWWApplet::eventFilter( TQObject *o, TQEvent *e ) { if ((e->type() == TQEvent::MouseButtonPress) || (e->type() == TQEvent::MouseButtonDblClick)) { - mousePressEvent(TQT_TQMOUSEEVENT(e)); + mousePressEvent(static_cast<TQMouseEvent*>(e)); return true; } |