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 23:42:28 +0900
commit6549f0042fd6a42d652ffd0a027033dff763278b (patch)
tree9d59c3d777f68fdb90091579ee5620e6bce0fc3a
parent50df78ea79ec4a51f0b92379f43bf063e3515c49 (diff)
downloadkile-6549f004.tar.gz
kile-6549f004.zip
Replace 'Event' #define strings
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 9310b03dcfb213c0551bf9decb2c3a2445decf5c)
-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() )