diff options
Diffstat (limited to 'kmix/kmixapplet.cpp')
-rw-r--r-- | kmix/kmixapplet.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kmix/kmixapplet.cpp b/kmix/kmixapplet.cpp index 63b376e7..0af64588 100644 --- a/kmix/kmixapplet.cpp +++ b/kmix/kmixapplet.cpp @@ -235,7 +235,7 @@ void KMixApplet::saveConfig() kdDebug(67100) << "KMixApplet::saveConfig()" << endl; if ( m_mixerWidget != 0) { //kdDebug(67100) << "KMixApplet::saveConfig() save" << endl; - KConfig *cfg = this->config(); + TDEConfig *cfg = this->config(); //kdDebug(67100) << "KMixApplet::saveConfig() save cfg=" << cfg << endl; cfg->setGroup( 0 ); cfg->writeEntry( "Mixer", _mixer->id() ); @@ -262,7 +262,7 @@ void KMixApplet::saveConfig() void KMixApplet::loadConfig() { kdDebug(67100) << "KMixApplet::loadConfig()" << endl; - KConfig *cfg = this->config(); + TDEConfig *cfg = this->config(); cfg->setGroup(0); _mixerId = cfg->readEntry( "Mixer", "undef" ); @@ -282,7 +282,7 @@ void KMixApplet::loadConfig() } -void KMixApplet::loadConfig( KConfig *config, const TQString &grp ) +void KMixApplet::loadConfig( TDEConfig *config, const TQString &grp ) { if ( m_mixerWidget ) { //config->setGroup( grp ); @@ -291,7 +291,7 @@ void KMixApplet::loadConfig( KConfig *config, const TQString &grp ) } -void KMixApplet::saveConfig( KConfig *config, const TQString &grp ) +void KMixApplet::saveConfig( TDEConfig *config, const TQString &grp ) { if ( m_mixerWidget ) { config->setGroup( grp ); |