summaryrefslogtreecommitdiffstats
path: root/krename/profiledlg.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-07 19:47:43 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-09 10:55:42 +0900
commit222407dabc88b886d914eb43742fd99b9cbc825f (patch)
tree8d69716f3c0c8b54134d9ef21ab4c1df2c889cbc /krename/profiledlg.cpp
parent44470b8aac4ef252b9f4169b5df025d4405e3c37 (diff)
downloadkrename-222407da.tar.gz
krename-222407da.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit b462285e51b3005312b7151cd078ce94843fd72d)
Diffstat (limited to 'krename/profiledlg.cpp')
-rw-r--r--krename/profiledlg.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/krename/profiledlg.cpp b/krename/profiledlg.cpp
index b92e985..54ea4a3 100644
--- a/krename/profiledlg.cpp
+++ b/krename/profiledlg.cpp
@@ -430,12 +430,12 @@ ProfileDlg::ProfileDlg(KRenameImpl* krename, TQWidget *parent, const char *name)
enableControls();
- connect( createProfile, TQT_SIGNAL( clicked() ), this, TQT_SLOT( slotCreateProfile() ) );
- connect( loadProfile, TQT_SIGNAL( clicked() ), this, TQT_SLOT( slotLoadProfile() ) );
- connect( deleteProfile, TQT_SIGNAL( clicked() ), this, TQT_SLOT( slotDeleteProfile() ) );
- connect( profiles, TQT_SIGNAL( selectionChanged () ), this, TQT_SLOT( enableControls() ) );
- connect( checkDefault, TQT_SIGNAL( clicked() ), this, TQT_SLOT( slotSetDefault() ) );
- connect( this, TQT_SIGNAL( hidden() ), this, TQT_SLOT( slotHidden() ) );
+ connect( createProfile, TQ_SIGNAL( clicked() ), this, TQ_SLOT( slotCreateProfile() ) );
+ connect( loadProfile, TQ_SIGNAL( clicked() ), this, TQ_SLOT( slotLoadProfile() ) );
+ connect( deleteProfile, TQ_SIGNAL( clicked() ), this, TQ_SLOT( slotDeleteProfile() ) );
+ connect( profiles, TQ_SIGNAL( selectionChanged () ), this, TQ_SLOT( enableControls() ) );
+ connect( checkDefault, TQ_SIGNAL( clicked() ), this, TQ_SLOT( slotSetDefault() ) );
+ connect( this, TQ_SIGNAL( hidden() ), this, TQ_SLOT( slotHidden() ) );
TDEConfig* conf = kapp->config();
conf->setGroup( "ProfilesHeader" );