diff options
Diffstat (limited to 'krec/krecfile.cpp')
-rw-r--r-- | krec/krecfile.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/krec/krecfile.cpp b/krec/krecfile.cpp index a1e5c584..27975cdf 100644 --- a/krec/krecfile.cpp +++ b/krec/krecfile.cpp @@ -166,7 +166,7 @@ void KRecFile::save( const TQString &fname ) { tar->addLocalDirectory( _dir->name(), basename ); delete tar; - KIO::file_move( tmpname, filetosave, -1, true, false, true ); + TDEIO::file_move( tmpname, filetosave, -1, true, false, true ); KRecGlobal::the()->message( i18n( "Saving \"%1\" was successful." ).arg( filename() ) ); _saved = true; @@ -226,7 +226,7 @@ TQIODevice::Offset KRecFile::samplesToOffset( int n ) const { return out; } -/// * * * Properties <-> KConfig * * * +/// * * * Properties <-> TDEConfig * * * void KRecFile::saveProps() { kdDebug( 60005 ) << k_funcinfo << endl; _config->setGroup( "General" ); @@ -327,7 +327,7 @@ KRecBuffer::~KRecBuffer() { //kdDebug( 60005 ) << k_funcinfo << "done." << endl; } -void KRecBuffer::writeConfig( KConfig* config ) { +void KRecBuffer::writeConfig( TDEConfig* config ) { //kdDebug( 60005 ) << k_funcinfo << config << endl; config->writeEntry( "Filename", _fileinfo->fileName() ); config->writeEntry( "StartPos", _start ); @@ -336,7 +336,7 @@ void KRecBuffer::writeConfig( KConfig* config ) { config->writeEntry( "Comment", _comment ); } -KRecBuffer* KRecBuffer::fromConfig( KConfig* config, TQDir* dir, KRecFile* p, const char* n ) { +KRecBuffer* KRecBuffer::fromConfig( TDEConfig* config, TQDir* dir, KRecFile* p, const char* n ) { kdDebug( 60005 ) << k_funcinfo << config << endl; KRecBuffer* tmp = new KRecBuffer( dir->path() + "/" + config->readEntry( "Filename" ), config->readNumEntry( "StartPos" ), |