diff options
author | Timothy Pearson <[email protected]> | 2013-01-31 13:16:17 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-01-31 13:16:17 -0600 |
commit | 5f3c4af105444b1cf4ea099910cad0b2c178954c (patch) | |
tree | 8b57ce38b5958f642e0a89951647ecd151656b75 /src/rip/k3baudioripthread.cpp | |
parent | d012fd9b3d5f0e1553dfa8622e2905aa3e7fa90e (diff) | |
download | k3b-5f3c4af105444b1cf4ea099910cad0b2c178954c.tar.gz k3b-5f3c4af105444b1cf4ea099910cad0b2c178954c.zip |
Rename KStandard for enhanced compatibility with KDE4
Diffstat (limited to 'src/rip/k3baudioripthread.cpp')
-rw-r--r-- | src/rip/k3baudioripthread.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/rip/k3baudioripthread.cpp b/src/rip/k3baudioripthread.cpp index c650755..faf8fcc 100644 --- a/src/rip/k3baudioripthread.cpp +++ b/src/rip/k3baudioripthread.cpp @@ -195,7 +195,7 @@ void K3bAudioRipThread::run() TQString& filename = m_tracks[0].second; TQString dir = filename.left( filename.findRev("/") ); - if( !KStandardDirs::makeDir( dir, 0777 ) ) { + if( !TDEStandardDirs::makeDir( dir, 0777 ) ) { d->paranoiaLib->close(); emitInfoMessage( i18n("Unable to create directory %1").arg(dir), K3bJob::ERROR ); m_device->block(false); @@ -299,7 +299,7 @@ bool K3bAudioRipThread::ripTrack( int track, const TQString& filename ) long trackSectorsRead = 0; TQString dir = filename.left( filename.findRev("/") ); - if( !KStandardDirs::makeDir( dir, 0777 ) ) { + if( !TDEStandardDirs::makeDir( dir, 0777 ) ) { emitInfoMessage( i18n("Unable to create directory %1").arg(dir), K3bJob::ERROR ); return false; } @@ -446,7 +446,7 @@ bool K3bAudioRipThread::writePlaylist() // this is an absolut path so there is always a "/" TQString playlistDir = m_playlistFilename.left( m_playlistFilename.findRev( "/" ) ); - if( !KStandardDirs::makeDir( playlistDir ) ) { + if( !TDEStandardDirs::makeDir( playlistDir ) ) { emitInfoMessage( i18n("Unable to create directory %1").arg(playlistDir), K3bJob::ERROR ); return false; } |