diff options
Diffstat (limited to 'kttsd/plugins/hadifix/hadifixconf.cpp')
-rw-r--r-- | kttsd/plugins/hadifix/hadifixconf.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kttsd/plugins/hadifix/hadifixconf.cpp b/kttsd/plugins/hadifix/hadifixconf.cpp index c38a0b3..f86c773 100644 --- a/kttsd/plugins/hadifix/hadifixconf.cpp +++ b/kttsd/plugins/hadifix/hadifixconf.cpp @@ -145,7 +145,7 @@ class HadifixConfPrivate { 100, 100, 100, "Local"); }; - void load (KConfig *config, const TQString &configGroup) { + void load (TDEConfig *config, const TQString &configGroup) { config->setGroup(configGroup); TQString voice = config->readEntry("voice", configWidget->getVoiceFilename()); @@ -173,7 +173,7 @@ class HadifixConfPrivate { ); }; - void save (KConfig *config, const TQString &configGroup) { + void save (TDEConfig *config, const TQString &configGroup) { config->setGroup(configGroup); config->writeEntry ("hadifixExec", PlugInConf::realFilePath(configWidget->hadifixURL->url())); config->writeEntry ("mbrolaExec", PlugInConf::realFilePath(configWidget->mbrolaURL->url())); @@ -233,13 +233,13 @@ HadifixConf::~HadifixConf(){ delete d; } -void HadifixConf::load(KConfig *config, const TQString &configGroup) { +void HadifixConf::load(TDEConfig *config, const TQString &configGroup) { // kdDebug() << "HadifixConf::load: Running" << endl; d->setDefaults(); d->load (config, configGroup); } -void HadifixConf::save(KConfig *config, const TQString &configGroup) { +void HadifixConf::save(TDEConfig *config, const TQString &configGroup) { // kdDebug() << "HadifixConf::save: Running" << endl; d->save (config, configGroup); } |