diff options
Diffstat (limited to 'libkscan/kscanoptset.cpp')
-rw-r--r-- | libkscan/kscanoptset.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libkscan/kscanoptset.cpp b/libkscan/kscanoptset.cpp index 80404d74..0c9b76e6 100644 --- a/libkscan/kscanoptset.cpp +++ b/libkscan/kscanoptset.cpp @@ -146,7 +146,7 @@ void KScanOptSet::saveConfig( const TQString& scannerName, const TQString& confi TQString confFile = SCANNER_DB_FILE; kdDebug( 29000) << "Creating scan configuration file <" << confFile << ">" << endl; - KConfig *scanConfig = new KConfig( confFile ); + TDEConfig *scanConfig = new TDEConfig( confFile ); TQString cfgName = configName; if( configName.isNull() || configName.isEmpty() ) @@ -180,7 +180,7 @@ bool KScanOptSet::load( const TQString& /*scannerName*/ ) kdDebug( 29000) << "** Reading from scan configuration file <" << confFile << ">" << endl; bool ret = true; - KConfig *scanConfig = new KConfig( confFile, true ); + TDEConfig *scanConfig = new TDEConfig( confFile, true ); TQString cfgName = name; /* of the KScanOptSet, given in constructor */ if( cfgName.isNull() || cfgName.isEmpty() ) |