summaryrefslogtreecommitdiffstats
path: root/src/configdialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/configdialog.cpp')
-rw-r--r--src/configdialog.cpp64
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 );