summaryrefslogtreecommitdiffstats
path: root/kmail/kmheaders.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2023-11-30 21:31:17 +0900
committerMichele Calgaro <[email protected]>2023-12-02 22:49:10 +0900
commitae35bc48cbbe82211fa27f49e2d4f3c8bcdbe0ec (patch)
treefe7187f6c8ce4a11740c29304086eda5fa4146cf /kmail/kmheaders.cpp
parent51d0291b086eede28d1f3b8c1f59affbf4109a99 (diff)
downloadtdepim-ae35bc48cbbe82211fa27f49e2d4f3c8bcdbe0ec.tar.gz
tdepim-ae35bc48cbbe82211fa27f49e2d4f3c8bcdbe0ec.zip
Replace 'Event' #define strings
Signed-off-by: Michele Calgaro <[email protected]> (cherry picked from commit ef173e633b7d068c4ddd2209af41899ec44e47ce)
Diffstat (limited to 'kmail/kmheaders.cpp')
-rw-r--r--kmail/kmheaders.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/kmail/kmheaders.cpp b/kmail/kmheaders.cpp
index 66231ae26..eaf045b46 100644
--- a/kmail/kmheaders.cpp
+++ b/kmail/kmheaders.cpp
@@ -235,7 +235,7 @@ KMHeaders::~KMHeaders ()
bool KMHeaders::eventFilter ( TQObject *o, TQEvent *e )
{
if ( e->type() == TQEvent::MouseButtonPress &&
- TQT_TQMOUSEEVENT(e)->button() == TQt::RightButton &&
+ static_cast<TQMouseEvent*>(e)->button() == TQt::RightButton &&
o->isA("TQHeader") )
{
// if we currently only show one of either sender/receiver column
@@ -248,7 +248,7 @@ bool KMHeaders::eventFilter ( TQObject *o, TQEvent *e )
else
mPopup->changeItem(KPaintInfo::COL_RECEIVER, i18n("Receiver"));
- mPopup->popup( TQT_TQMOUSEEVENT(e)->globalPos() );
+ mPopup->popup( static_cast<TQMouseEvent*>(e)->globalPos() );
return true;
}
return TDEListView::eventFilter(o, e);