diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-02 11:37:05 +0900 | 
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-06 19:52:23 +0900 | 
| commit | ce3ab44510bc56b6d1e8e25663aedee8f4a0ccd1 (patch) | |
| tree | b6897028e51844a0aeaafefc499fe4c213660b6f /src/k3binteractiondialog.cpp | |
| parent | 6a101aa2ef54f02a292d6c28f23e2554a72e2bce (diff) | |
| download | k3b-ce3ab44510bc56b6d1e8e25663aedee8f4a0ccd1.tar.gz k3b-ce3ab44510bc56b6d1e8e25663aedee8f4a0ccd1.zip | |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 61b79fc39298cb8646cee439dc032d5bf0169063)
Diffstat (limited to 'src/k3binteractiondialog.cpp')
| -rw-r--r-- | src/k3binteractiondialog.cpp | 28 | 
1 files changed, 14 insertions, 14 deletions
| diff --git a/src/k3binteractiondialog.cpp b/src/k3binteractiondialog.cpp index 92031e2..db82ed0 100644 --- a/src/k3binteractiondialog.cpp +++ b/src/k3binteractiondialog.cpp @@ -86,9 +86,9 @@ K3bInteractionDialog::K3bInteractionDialog( TQWidget* parent,      m_buttonLoadSettings = new K3bToolButton( /*i18n("User Defaults"), */this );      ((K3bToolButton*)m_buttonLoadSettings)->setIconSet( SmallIconSet( "document-revert" ) );      TQPopupMenu* userDefaultsPopup = new TQPopupMenu( m_buttonLoadSettings ); -    userDefaultsPopup->insertItem( i18n("Load default settings"), this, TQT_SLOT(slotLoadK3bDefaults()) ); -    userDefaultsPopup->insertItem( i18n("Load saved settings"), this, TQT_SLOT(slotLoadUserDefaults()) ); -    userDefaultsPopup->insertItem( i18n("Load last used settings"), this, TQT_SLOT(slotLoadLastSettings()) ); +    userDefaultsPopup->insertItem( i18n("Load default settings"), this, TQ_SLOT(slotLoadK3bDefaults()) ); +    userDefaultsPopup->insertItem( i18n("Load saved settings"), this, TQ_SLOT(slotLoadUserDefaults()) ); +    userDefaultsPopup->insertItem( i18n("Load last used settings"), this, TQ_SLOT(slotLoadLastSettings()) );      ((TQToolButton*)m_buttonLoadSettings)->setPopup( userDefaultsPopup );      ((K3bToolButton*)m_buttonLoadSettings)->setInstantMenu( true );      layout2->addWidget( m_buttonLoadSettings ); @@ -215,22 +215,22 @@ TQSize K3bInteractionDialog::sizeHint() const  void K3bInteractionDialog::initConnections()  {    if( m_buttonStart ) { -    connect( m_buttonStart, TQT_SIGNAL(clicked()), -	     this, TQT_SLOT(slotStartClickedInternal()) ); +    connect( m_buttonStart, TQ_SIGNAL(clicked()), +	     this, TQ_SLOT(slotStartClickedInternal()) );    }    if( m_buttonSave ) { -//     connect( m_buttonSave, TQT_SIGNAL(clicked()), -// 	     this, TQT_SLOT(slotSaveLastSettings()) ); -    connect( m_buttonSave, TQT_SIGNAL(clicked()), -	     this, TQT_SLOT(slotSaveClicked()) ); +//     connect( m_buttonSave, TQ_SIGNAL(clicked()), +// 	     this, TQ_SLOT(slotSaveLastSettings()) ); +    connect( m_buttonSave, TQ_SIGNAL(clicked()), +	     this, TQ_SLOT(slotSaveClicked()) );    }    if( m_buttonCancel ) -    connect( m_buttonCancel, TQT_SIGNAL(clicked()), -	     this, TQT_SLOT(slotCancelClicked()) ); +    connect( m_buttonCancel, TQ_SIGNAL(clicked()), +	     this, TQ_SLOT(slotCancelClicked()) );    if( !m_configGroup.isEmpty() ) { -    connect( m_buttonSaveSettings, TQT_SIGNAL(clicked()), -	     this, TQT_SLOT(slotSaveUserDefaults()) ); +    connect( m_buttonSaveSettings, TQ_SIGNAL(clicked()), +	     this, TQ_SLOT(slotSaveUserDefaults()) );    }  } @@ -584,7 +584,7 @@ int K3bInteractionDialog::exec( bool returnOnHide )    loadStartupSettings();    show();    if( m_delayedInit ) -    TQTimer::singleShot( 0, this, TQT_SLOT(slotDelayedInit()) ); +    TQTimer::singleShot( 0, this, TQ_SLOT(slotDelayedInit()) );    else      init(); | 
