summaryrefslogtreecommitdiffstats
path: root/kscreensaver/kxsconfig/kxscontrol.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kscreensaver/kxsconfig/kxscontrol.cpp')
-rw-r--r--kscreensaver/kxsconfig/kxscontrol.cpp24
1 files changed, 12 insertions, 12 deletions
diff --git a/kscreensaver/kxsconfig/kxscontrol.cpp b/kscreensaver/kxsconfig/kxscontrol.cpp
index aca1993c..08f9b55c 100644
--- a/kscreensaver/kxsconfig/kxscontrol.cpp
+++ b/kscreensaver/kxsconfig/kxscontrol.cpp
@@ -33,7 +33,7 @@
//===========================================================================
KXSRangeControl::KXSRangeControl(TQWidget *parent, const TQString &name,
- KConfig &config)
+ TDEConfig &config)
: TQWidget(parent), KXSRangeItem(name, config), mSlider(0), mSpinBox(0)
{
TQVBoxLayout *l = new TQVBoxLayout(this);
@@ -87,7 +87,7 @@ void KXSRangeControl::slotValueChanged(int value)
emit changed();
}
-void KXSRangeControl::read(KConfig &config)
+void KXSRangeControl::read(TDEConfig &config)
{
KXSRangeItem::read(config);
if ( mSpinBox )
@@ -98,7 +98,7 @@ void KXSRangeControl::read(KConfig &config)
//===========================================================================
KXSDoubleRangeControl::KXSDoubleRangeControl(TQWidget *parent,
- const TQString &name, KConfig &config)
+ const TQString &name, TDEConfig &config)
: TQWidget(parent), KXSDoubleRangeItem(name, config)
{
TQVBoxLayout *l = new TQVBoxLayout(this);
@@ -144,7 +144,7 @@ void KXSDoubleRangeControl::slotValueChanged(int value)
emit changed();
}
-void KXSDoubleRangeControl::read(KConfig &config)
+void KXSDoubleRangeControl::read(TDEConfig &config)
{
KXSDoubleRangeItem::read(config);
mSlider->setValue((int)((mValue - mMinimum) * 100.0 /
@@ -153,7 +153,7 @@ void KXSDoubleRangeControl::read(KConfig &config)
//===========================================================================
KXSCheckBoxControl::KXSCheckBoxControl(TQWidget *parent, const TQString &name,
- KConfig &config)
+ TDEConfig &config)
: TQCheckBox(parent), KXSBoolItem(name, config)
{
setText(mLabel);
@@ -176,7 +176,7 @@ void KXSCheckBoxControl::slotToggled(bool state)
emit changed();
}
-void KXSCheckBoxControl::read(KConfig &config)
+void KXSCheckBoxControl::read(TDEConfig &config)
{
KXSBoolItem::read(config);
setChecked(mValue);
@@ -184,7 +184,7 @@ void KXSCheckBoxControl::read(KConfig &config)
//===========================================================================
KXSDropListControl::KXSDropListControl(TQWidget *parent, const TQString &name,
- KConfig &config)
+ TDEConfig &config)
: TQWidget(parent), KXSSelectItem(name, config)
{
TQVBoxLayout *l = new TQVBoxLayout(this);
@@ -224,7 +224,7 @@ void KXSDropListControl::slotActivated(int indx)
emit changed();
}
-void KXSDropListControl::read(KConfig &config)
+void KXSDropListControl::read(TDEConfig &config)
{
KXSSelectItem::read(config);
mCombo->setCurrentItem(mValue);
@@ -232,7 +232,7 @@ void KXSDropListControl::read(KConfig &config)
//===========================================================================
KXSLineEditControl::KXSLineEditControl(TQWidget *parent, const TQString &name,
- KConfig &config)
+ TDEConfig &config)
: TQWidget(parent), KXSStringItem(name, config)
{
TQVBoxLayout *l = new TQVBoxLayout(this);
@@ -261,7 +261,7 @@ void KXSLineEditControl::textChanged( const TQString &text )
emit changed();
}
-void KXSLineEditControl::read(KConfig &config)
+void KXSLineEditControl::read(TDEConfig &config)
{
KXSStringItem::read(config);
mEdit->setText(mValue);
@@ -269,7 +269,7 @@ void KXSLineEditControl::read(KConfig &config)
//===========================================================================
KXSFileControl::KXSFileControl(TQWidget *parent, const TQString &name,
- KConfig &config)
+ TDEConfig &config)
: TQWidget(parent), KXSStringItem(name, config)
{
TQVBoxLayout *l = new TQVBoxLayout(this);
@@ -312,7 +312,7 @@ void KXSFileControl::selectFile()
}
}
-void KXSFileControl::read(KConfig &config)
+void KXSFileControl::read(TDEConfig &config)
{
KXSStringItem::read(config);
mEdit->setText(mValue);