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/optionsrequester.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/optionsrequester.cpp')
| -rw-r--r-- | src/optionsrequester.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/optionsrequester.cpp b/src/optionsrequester.cpp index 61e7b2e..db3d3aa 100644 --- a/src/optionsrequester.cpp +++ b/src/optionsrequester.cpp @@ -59,11 +59,11 @@ OptionsRequester::OptionsRequester( Config* config, TQStringList list, TQWidget pOk = new KPushButton( iconLoader->loadIcon("apply",TDEIcon::Small), i18n("Ok"), this, "pOk" ); buttonBox->addWidget( pOk ); - connect( pCancel, TQT_SIGNAL(clicked()), - this, TQT_SLOT(reject()) + connect( pCancel, TQ_SIGNAL(clicked()), + this, TQ_SLOT(reject()) ); - connect( pOk, TQT_SIGNAL(clicked()), - this, TQT_SLOT(okClicked()) + connect( pOk, TQ_SIGNAL(clicked()), + this, TQ_SLOT(okClicked()) ); // delete the icon loader object |
