diff options
Diffstat (limited to 'client/config/crystalconfig.cc')
-rw-r--r-- | client/config/crystalconfig.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/client/config/crystalconfig.cc b/client/config/crystalconfig.cc index 9ccf5f5..50d21e6 100644 --- a/client/config/crystalconfig.cc +++ b/client/config/crystalconfig.cc @@ -106,7 +106,7 @@ CrystalConfig::CrystalConfig(KConfig*, TQWidget* tqparent) connect(dialog_->tintButtons, TQT_SIGNAL(toggled(bool)),this,TQT_SLOT(boolChanged(bool))); connect(dialog_->menuimage, TQT_SIGNAL(stateChanged(int)),this,TQT_SLOT(selectionChanged(int))); - connect(dialog_->tqrepaintMode, TQT_SIGNAL(clicked(int)),this, TQT_SLOT(selectionChanged(int))); + connect(dialog_->repaintMode, TQT_SIGNAL(clicked(int)),this, TQT_SLOT(selectionChanged(int))); connect(dialog_->updateTime, TQT_SIGNAL(valueChanged(int)),this, TQT_SLOT(selectionChanged(int))); @@ -222,7 +222,7 @@ void CrystalConfig::load(KConfig*) dialog_->buttonTheme->setCurrentItem(config_->readNumEntry("ButtonTheme",8)); dialog_->updateTime->setValue(config_->readNumEntry("RepaintTime",200)); - button=(TQRadioButton*)dialog_->tqrepaintMode->tqfind(config_->readNumEntry("RepaintMode",1)); + button=(TQRadioButton*)dialog_->repaintMode->tqfind(config_->readNumEntry("RepaintMode",1)); if (button)button->setChecked(true); dialog_->active_blur->setValue(config_->readNumEntry("ActiveBlur",0)); @@ -308,7 +308,7 @@ void CrystalConfig::save(KConfig*) config_->writeEntry("MenuImage",dialog_->menuimage->isChecked()); config_->writeEntry("ButtonTheme",dialog_->buttonTheme->currentItem()); - config_->writeEntry("RepaintMode",dialog_->tqrepaintMode->selectedId()); + config_->writeEntry("RepaintMode",dialog_->repaintMode->selectedId()); config_->writeEntry("RepaintTime",dialog_->updateTime->value()); config_->writeEntry("ActiveBlur",dialog_->active_blur->value()); |