diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-02 11:38:18 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-15 10:12:20 +0900 |
commit | 773c73d27492ada253b9e81752bd735ee3dc3ac1 (patch) | |
tree | dc8d0269d4e95c57b29be70c1c2b90545112ef56 /src/dirdialog.cpp | |
parent | 07fbaa743408f4302df7b6889347a4a2deadc4de (diff) | |
download | soundkonverter-773c73d27492ada253b9e81752bd735ee3dc3ac1.tar.gz soundkonverter-773c73d27492ada253b9e81752bd735ee3dc3ac1.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/dirdialog.cpp')
-rw-r--r-- | src/dirdialog.cpp | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/src/dirdialog.cpp b/src/dirdialog.cpp index cf5d0dd..7cbbcef 100644 --- a/src/dirdialog.cpp +++ b/src/dirdialog.cpp @@ -43,8 +43,8 @@ DirDialog::DirDialog( Config* config, Mode mode, TQWidget *parent, const char *n pDirectory = new KPushButton( iconLoader->loadIcon("folder_open",TDEIcon::Small), "", this, "pDirectory" ); directoryBox->addWidget( pDirectory ); - connect( pDirectory, TQT_SIGNAL(clicked()), - this, TQT_SLOT(selectDirectoryClicked()) + connect( pDirectory, TQ_SIGNAL(clicked()), + this, TQ_SLOT(selectDirectoryClicked()) ); TQHBoxLayout* fileTypesBox = new TQHBoxLayout(); @@ -62,22 +62,22 @@ DirDialog::DirDialog( Config* config, Mode mode, TQWidget *parent, const char *n pSelectAll = new KPushButton( iconLoader->loadIcon("font-x-generic",TDEIcon::Small), i18n("Select all"), this, "pSelectAll" ); fileTypesButtonsBox->addWidget( pSelectAll ); - connect( pSelectAll, TQT_SIGNAL(clicked()), - this, TQT_SLOT(selectAllClicked()) + connect( pSelectAll, TQ_SIGNAL(clicked()), + this, TQ_SLOT(selectAllClicked()) ); pSelectNone = new KPushButton( iconLoader->loadIcon("application-x-zerosize",TDEIcon::Small), i18n("Select none"), this, "pSelectNone" ); fileTypesButtonsBox->addWidget( pSelectNone ); - connect( pSelectNone, TQT_SIGNAL(clicked()), - this, TQT_SLOT(selectNoneClicked()) + connect( pSelectNone, TQ_SIGNAL(clicked()), + this, TQ_SLOT(selectNoneClicked()) ); cRecursive = new TQCheckBox( i18n("Recursive"), this, "cRecursive" ); cRecursive->setChecked( true ); recursive = true; fileTypesButtonsBox->addWidget( cRecursive ); - connect( cRecursive, TQT_SIGNAL(toggled(bool)), - this, TQT_SLOT(recursiveToggled(bool)) + connect( cRecursive, TQ_SIGNAL(toggled(bool)), + this, TQ_SLOT(recursiveToggled(bool)) ); fileTypesButtonsBox->addStretch(); @@ -87,8 +87,8 @@ DirDialog::DirDialog( Config* config, Mode mode, TQWidget *parent, const char *n pOk = new KPushButton( iconLoader->loadIcon("folder_open",TDEIcon::Small), i18n("Open"), this, "pOk" ); buttonBox->addWidget( pOk ); - connect( pOk, TQT_SIGNAL(clicked()), - this, TQT_SLOT(okClicked()) + connect( pOk, TQ_SIGNAL(clicked()), + this, TQ_SLOT(okClicked()) ); buttonBox->addStretch(); @@ -96,8 +96,8 @@ DirDialog::DirDialog( Config* config, Mode mode, TQWidget *parent, const char *n pCancel = new KPushButton( iconLoader->loadIcon("cancel",TDEIcon::Small),i18n("Cancel"), this, "pCancel" ); pOk->setFocus(); buttonBox->addWidget( pCancel ); - connect( pCancel, TQT_SIGNAL(clicked()), - this, TQT_SLOT(reject()) + connect( pCancel, TQ_SIGNAL(clicked()), + this, TQ_SLOT(reject()) ); // delete the icon loader object |