summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-11-30 21:31:31 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-12-02 22:44:53 +0900
commit64a5b23e468b923185b07b7ac27c7e3f228d8c2a (patch)
tree4464bfdeb280b7448ac0ffab1e98276a0756882d
parent79c780ceb923bad0480d5a6b79fcc9cc82a42fb5 (diff)
downloadtdetoys-64a5b23e468b923185b07b7ac27c7e3f228d8c2a.tar.gz
tdetoys-64a5b23e468b923185b07b7ac27c7e3f228d8c2a.zip
Replace 'Event' #define strings
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 2cde36cd6db66eb3ef5bce69f52f44f6a80242a8)
-rw-r--r--kworldwatch/applet.cpp2
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;
}