diff options
Diffstat (limited to 'src/config.cpp')
-rwxr-xr-x | src/config.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/config.cpp b/src/config.cpp index ac169aa..ea71d2f 100755 --- a/src/config.cpp +++ b/src/config.cpp @@ -131,11 +131,11 @@ void Config::read() data.environment.foundPrograms = conf->readListEntry( "foundPrograms", listDefaults ); conf->setGroup( "Ripper" ); - ripper = conf->readEntry( "ripper", "kio_audiocd" ); + ripper = conf->readEntry( "ripper", "tdeio_audiocd" ); - if( ripper == "kio_audiocd" ) rank = 10000; - else rank = 60; // kio_audiocd ranking - currentRipper = 0; // this is a valid ripper (kio_audiocd) + if( ripper == "tdeio_audiocd" ) rank = 10000; + else rank = 60; // tdeio_audiocd ranking + currentRipper = 0; // this is a valid ripper (tdeio_audiocd) for( TQValueList<RipperPlugin*>::Iterator b = rippers.begin(); b != rippers.end(); ++b ) { binaries[ (*b)->rip.bin ] = ""; if( (*b)->rip.rank > rank ) { @@ -269,7 +269,7 @@ void Config::write( bool sync ) TDEConfig *conf = kapp->config(); conf->setGroup( "Ripper" ); - conf->writeEntry( "ripper", (currentRipper)?currentRipper->rip.bin:"kio_audiocd" ); + conf->writeEntry( "ripper", (currentRipper)?currentRipper->rip.bin:"tdeio_audiocd" ); for( TQValueList<FormatItem>::Iterator it = formats.begin(); it != formats.end(); ++it ) { |