summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-08-09 13:53:46 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-08-09 17:33:00 +0900
commit9f8bd22e4ec224b451e049c836ef00ada9bfd2fa (patch)
tree59060ef63f002866a2a327fd7b899e7cfd1da8d3
parent6c942432065800f1ca40e40a3b38bf3d9696db92 (diff)
downloadk3b-9f8bd22e4ec224b451e049c836ef00ada9bfd2fa.tar.gz
k3b-9f8bd22e4ec224b451e049c836ef00ada9bfd2fa.zip
Drop TQT_TQ*_CONST defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 10c4d3e3041e1a358d7da6e27def8f5228d6dc89)
-rw-r--r--libk3b/tools/k3bradioaction.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/libk3b/tools/k3bradioaction.cpp b/libk3b/tools/k3bradioaction.cpp
index d19f579..182c8b5 100644
--- a/libk3b/tools/k3bradioaction.cpp
+++ b/libk3b/tools/k3bradioaction.cpp
@@ -78,12 +78,12 @@ void K3bRadioAction::slotActivated()
if( m_alwaysEmit )
emit activated();
- const TQObject *senderObj = TQT_TQOBJECT_CONST(const_cast<const TQT_BASE_OBJECT_NAME*>(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;
}