diff options
author | Michele Calgaro <[email protected]> | 2023-08-09 17:18:13 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-08-09 17:18:13 +0900 |
commit | 23278d259378e17087bf9aeaa5e45974dfb74bce (patch) | |
tree | 6f823898e2ef1c01fc119740aa337e885db4d4f8 /tdeui/tdeactionclasses.cpp | |
parent | c0b74ba868682f39c41a9f70ae11297425b711e1 (diff) | |
download | tdelibs-23278d259378e17087bf9aeaa5e45974dfb74bce.tar.gz tdelibs-23278d259378e17087bf9aeaa5e45974dfb74bce.zip |
Drop TQT_TQ*_CONST defines
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'tdeui/tdeactionclasses.cpp')
-rw-r--r-- | tdeui/tdeactionclasses.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tdeui/tdeactionclasses.cpp b/tdeui/tdeactionclasses.cpp index a1e9f28a3..7ef60189c 100644 --- a/tdeui/tdeactionclasses.cpp +++ b/tdeui/tdeactionclasses.cpp @@ -322,12 +322,12 @@ void TDERadioAction::slotActivated() { if ( isChecked() ) { - const TQObject *senderObj = TQT_TQOBJECT_CONST(sender()); + const TQObject *senderObj = sender(); if ( !senderObj || !::tqqt_cast<const TDEToolBarButton *>( senderObj ) ) return; - const_cast<TDEToolBarButton *>( static_cast<const TDEToolBarButton *>( TQT_TQWIDGET_CONST(senderObj) ) )->on( true ); + const_cast<TDEToolBarButton *>( static_cast<const TDEToolBarButton *>( senderObj ) )->on( true ); return; } |