From 61b79fc39298cb8646cee439dc032d5bf0169063 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Tue, 2 Jan 2024 11:37:05 +0900 Subject: Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines Signed-off-by: Michele Calgaro --- libk3b/tools/k3btoolbox.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'libk3b/tools/k3btoolbox.cpp') diff --git a/libk3b/tools/k3btoolbox.cpp b/libk3b/tools/k3btoolbox.cpp index b7fa687..a9467f2 100644 --- a/libk3b/tools/k3btoolbox.cpp +++ b/libk3b/tools/k3btoolbox.cpp @@ -101,22 +101,22 @@ K3bToolBoxButton::K3bToolBoxButton( TDEAction* action, TQWidget* parent ) // if( ta->isChecked() ) // toggle(); -// connect( ta, TQT_SIGNAL(toggled(bool)), this, TQT_SLOT(toggle()) ); -// connect( this, TQT_SIGNAL(toggled(bool)), ta, TQT_SLOT(setChecked(bool)) ); +// connect( ta, TQ_SIGNAL(toggled(bool)), this, TQ_SLOT(toggle()) ); +// connect( this, TQ_SIGNAL(toggled(bool)), ta, TQ_SLOT(setChecked(bool)) ); // } // else if( TDEActionMenu* am = dynamic_cast( action ) ) { m_popupMenu = am->popupMenu(); - connect( this, TQT_SIGNAL(pressed()), this, TQT_SLOT(slotPopupActivated()) ); + connect( this, TQ_SIGNAL(pressed()), this, TQ_SLOT(slotPopupActivated()) ); setPopup( m_popupMenu ); } else { - connect( this, TQT_SIGNAL(clicked()), action, TQT_SLOT(activate()) ); + connect( this, TQ_SIGNAL(clicked()), action, TQ_SLOT(activate()) ); } - connect( action, TQT_SIGNAL(enabled(bool)), this, TQT_SLOT(setEnabled(bool)) ); + connect( action, TQ_SIGNAL(enabled(bool)), this, TQ_SLOT(setEnabled(bool)) ); } @@ -141,7 +141,7 @@ K3bToolBoxButton::K3bToolBoxButton( const TQString& text, const TQString& icon, TQToolTip::add( this, tooltip ); if( receiver && slot ) - connect( this, TQT_SIGNAL(clicked()), receiver, slot ); + connect( this, TQ_SIGNAL(clicked()), receiver, slot ); } -- cgit v1.2.3