diff options
author | Michele Calgaro <[email protected]> | 2024-01-02 11:38:18 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-01-15 10:12:20 +0900 |
commit | 773c73d27492ada253b9e81752bd735ee3dc3ac1 (patch) | |
tree | dc8d0269d4e95c57b29be70c1c2b90545112ef56 /src/configdialog.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 <[email protected]>
Diffstat (limited to 'src/configdialog.cpp')
-rw-r--r-- | src/configdialog.cpp | 64 |
1 files changed, 32 insertions, 32 deletions
diff --git a/src/configdialog.cpp b/src/configdialog.cpp index 09e3424..22efb6e 100644 --- a/src/configdialog.cpp +++ b/src/configdialog.cpp @@ -43,65 +43,65 @@ ConfigDialog::ConfigDialog( Config* _config, TQWidget *parent, const char *name, binaries = config->binaries; - connect( this, TQT_SIGNAL(applyClicked()), - this,TQT_SLOT(applyClickedSlot()) + connect( this, TQ_SIGNAL(applyClicked()), + this,TQ_SLOT(applyClickedSlot()) ); - connect( this, TQT_SIGNAL(okClicked()), - this,TQT_SLOT(okClickedSlot()) + connect( this, TQ_SIGNAL(okClicked()), + this,TQ_SLOT(okClickedSlot()) ); - connect( this, TQT_SIGNAL(defaultClicked()), - this,TQT_SLOT(defaultClickedSlot()) + connect( this, TQ_SIGNAL(defaultClicked()), + this,TQ_SLOT(defaultClickedSlot()) ); generalPage = addPage( i18n("General"), "misc" ); configGeneralPage = new ConfigGeneralPage( config, generalPage, "configGeneralPage" ); - connect( configGeneralPage, TQT_SIGNAL(configChanged()), - this, TQT_SLOT(configChanged()) + connect( configGeneralPage, TQ_SIGNAL(configChanged()), + this, TQ_SLOT(configChanged()) ); - connect( this, TQT_SIGNAL(saveGeneral()), - configGeneralPage, TQT_SLOT(saveSettings()) + connect( this, TQ_SIGNAL(saveGeneral()), + configGeneralPage, TQ_SLOT(saveSettings()) ); - connect( this, TQT_SIGNAL(resetGeneral()), - configGeneralPage, TQT_SLOT(resetDefaults()) + connect( this, TQ_SIGNAL(resetGeneral()), + configGeneralPage, TQ_SLOT(resetDefaults()) ); pluginsPage = addPage( i18n("Plugins"), "connect_creating" ); configPluginsPage = new ConfigPluginsPage( config, pluginsPage, "configPluginsPage" ); - connect( configPluginsPage, TQT_SIGNAL(configChanged()), - this, TQT_SLOT(configChanged()) + connect( configPluginsPage, TQ_SIGNAL(configChanged()), + this, TQ_SLOT(configChanged()) ); - connect( this, TQT_SIGNAL(savePlugins()), - configPluginsPage, TQT_SLOT(saveSettings()) + connect( this, TQ_SIGNAL(savePlugins()), + configPluginsPage, TQ_SLOT(saveSettings()) ); - connect( this, TQT_SIGNAL(resetPlugins()), - configPluginsPage, TQT_SLOT(resetDefaults()) + connect( this, TQ_SIGNAL(resetPlugins()), + configPluginsPage, TQ_SLOT(resetDefaults()) ); environmentPage = addPage( i18n("Environment"), "filefind" ); configEnvironmentPage = new ConfigEnvironmentPage( config, &binaries, environmentPage, "configEnvironmentPage" ); - connect( configEnvironmentPage, TQT_SIGNAL(configChanged()), - this, TQT_SLOT(configChanged()) + connect( configEnvironmentPage, TQ_SIGNAL(configChanged()), + this, TQ_SLOT(configChanged()) ); - connect( this, TQT_SIGNAL(saveEnvironment()), - configEnvironmentPage, TQT_SLOT(saveSettings()) + connect( this, TQ_SIGNAL(saveEnvironment()), + configEnvironmentPage, TQ_SLOT(saveSettings()) ); - connect( this, TQT_SIGNAL(resetEnvironment()), - configEnvironmentPage, TQT_SLOT(resetDefaults()) + connect( this, TQ_SIGNAL(resetEnvironment()), + configEnvironmentPage, TQ_SLOT(resetDefaults()) ); backendsPage = addPage( i18n("Backends"), "preferences-system" ); configBackendsPage = new ConfigBackendsPage( config, &binaries, backendsPage, "configBackendsPage" ); - connect( configBackendsPage, TQT_SIGNAL(configChanged()), - this, TQT_SLOT(configChanged()) + connect( configBackendsPage, TQ_SIGNAL(configChanged()), + this, TQ_SLOT(configChanged()) ); - connect( this, TQT_SIGNAL(saveBackends()), - configBackendsPage, TQT_SLOT(saveSettings()) + connect( this, TQ_SIGNAL(saveBackends()), + configBackendsPage, TQ_SLOT(saveSettings()) ); - connect( this, TQT_SIGNAL(resetBackends()), - configBackendsPage, TQT_SLOT(resetDefaults()) + connect( this, TQ_SIGNAL(resetBackends()), + configBackendsPage, TQ_SLOT(resetDefaults()) ); - connect( configEnvironmentPage, TQT_SIGNAL(rebuildBackendsPage()), - configBackendsPage, TQT_SLOT(rebuild()) + connect( configEnvironmentPage, TQ_SIGNAL(rebuildBackendsPage()), + configBackendsPage, TQ_SLOT(rebuild()) ); setConfigChanged( false ); |