diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-07 19:47:43 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-07 19:47:43 +0900 |
commit | b462285e51b3005312b7151cd078ce94843fd72d (patch) | |
tree | 53926b034245bee9acb24bb9e7379d56716fc676 /krename/tabs.cpp | |
parent | 10da9998098672ff2d6c1213bda6993adc0b6589 (diff) | |
download | krename-b462285e51b3005312b7151cd078ce94843fd72d.tar.gz krename-b462285e51b3005312b7151cd078ce94843fd72d.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'krename/tabs.cpp')
-rw-r--r-- | krename/tabs.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/krename/tabs.cpp b/krename/tabs.cpp index 2cfbf3d..2cd78ff 100644 --- a/krename/tabs.cpp +++ b/krename/tabs.cpp @@ -60,14 +60,14 @@ tabs::tabs(KRenameImpl* impl, TQRect r, TQWidget *parent, const char *name ) menuBar = new KMenuBar( this ); layout->setMenuBar( menuBar ); - connect( cancelButton, TQT_SIGNAL( clicked() ), this, TQT_SLOT( close() ) ); + connect( cancelButton, TQ_SIGNAL( clicked() ), this, TQ_SLOT( close() ) ); krename = impl ? impl : new KRenameImpl( this, menuBar, finishButton ); - connect( krename, TQT_SIGNAL( pageDone( TQWidget*, const TQString & ) ), this, TQT_SLOT( slotAddPage( TQWidget*, const TQString & ) ) ); - connect( krename, TQT_SIGNAL( showPage( int ) ), this, TQT_SLOT( slotShowPage( int ) ) ); - connect( krename, TQT_SIGNAL( enableFinish( bool ) ), this, TQT_SLOT( slotEnableFinish( bool ) ) ); - connect( tab, TQT_SIGNAL( currentChanged( TQWidget* ) ), this, TQT_SLOT( slotTabChanged() ) ); + connect( krename, TQ_SIGNAL( pageDone( TQWidget*, const TQString & ) ), this, TQ_SLOT( slotAddPage( TQWidget*, const TQString & ) ) ); + connect( krename, TQ_SIGNAL( showPage( int ) ), this, TQ_SLOT( slotShowPage( int ) ) ); + connect( krename, TQ_SIGNAL( enableFinish( bool ) ), this, TQ_SLOT( slotEnableFinish( bool ) ) ); + connect( tab, TQ_SIGNAL( currentChanged( TQWidget* ) ), this, TQ_SLOT( slotTabChanged() ) ); if( impl ) { |