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:13:01 +0900 |
| commit | 8c11a1403700fcc6b1ae25a2693be842fbf0d37e (patch) | |
| tree | f4425787a031de0ced74124ad92eb66339b0962a /src/dirdialog.cpp | |
| parent | 9897ab3092180bda391ff33ab5135c75c5086979 (diff) | |
| download | soundkonverter-8c11a140.tar.gz soundkonverter-8c11a140.zip | |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 773c73d27492ada253b9e81752bd735ee3dc3ac1)
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 |
