summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-11-30 20:43:05 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-11-30 20:43:05 +0900
commit9310b03dcfb213c0551bf9decb2c3a2445decf5c (patch)
tree9d59c3d777f68fdb90091579ee5620e6bce0fc3a
parent7281cbd9fb8d1d9718cdd51d06cc7ff8a89510a5 (diff)
downloadkile-9310b03dcfb213c0551bf9decb2c3a2445decf5c.tar.gz
kile-9310b03dcfb213c0551bf9decb2c3a2445decf5c.zip
Replace 'Event' #define strings
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r--src/kile/tabulardialog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kile/tabulardialog.cpp b/src/kile/tabulardialog.cpp
index c24a2ff..d05156e 100644
--- a/src/kile/tabulardialog.cpp
+++ b/src/kile/tabulardialog.cpp
@@ -741,7 +741,7 @@ bool TabularTable::eventFilter(TQObject *o, TQEvent *e)
{
if ( e->type() == TQEvent::MouseButtonPress )
{
- TQMouseEvent *me = TQT_TQMOUSEEVENT(e);
+ TQMouseEvent *me = static_cast<TQMouseEvent*>(e);
if ( me->button() == TQt::RightButton )
{
if ( o == horizontalHeader() )