diff options
author | Timothy Pearson <[email protected]> | 2013-01-31 00:19:02 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-01-31 00:19:02 -0600 |
commit | 3fde37bc74e136b675635c7f82b452ee6538a57c (patch) | |
tree | 9ebf72211d571071500717fee2e6b59c24d04a2b /src | |
parent | 0d4f427bb068801882339a8c1f0395479608078e (diff) | |
download | soundkonverter-3fde37bc74e136b675635c7f82b452ee6538a57c.tar.gz soundkonverter-3fde37bc74e136b675635c7f82b452ee6538a57c.zip |
Rename KShared
Diffstat (limited to 'src')
-rwxr-xr-x | src/filelist.cpp | 2 | ||||
-rwxr-xr-x | src/outputdirectory.cpp | 2 | ||||
-rwxr-xr-x | src/replaygainfilelist.cpp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/filelist.cpp b/src/filelist.cpp index b4faa99..f24a998 100755 --- a/src/filelist.cpp +++ b/src/filelist.cpp @@ -472,7 +472,7 @@ void FileList::addFiles( TQStringList fileList, FileListItem* after, bool enable for( KMountPoint::List::ConstIterator jt = mountPoints.begin(); jt != mountPoints.end(); ++jt ) { - const KSharedPtr<KMountPoint> mp = *jt; + const TDESharedPtr<KMountPoint> mp = *jt; logger->log( 1000, mp->mountedFrom() + " : " + mp->mountPoint() ); if( mp->mountedFrom() == device ) { diff --git a/src/outputdirectory.cpp b/src/outputdirectory.cpp index 55a2ecf..6a1dda0 100755 --- a/src/outputdirectory.cpp +++ b/src/outputdirectory.cpp @@ -293,7 +293,7 @@ TQString OutputDirectory::uniqueFileName( const TQString& filename ) for( KMountPoint::List::ConstIterator jt = mountPoints.begin(); jt != mountPoints.end(); ++jt ) { - const KSharedPtr<KMountPoint> mp = *jt; + const TDESharedPtr<KMountPoint> mp = *jt; if( mp->mountedFrom() == device ) { filePathName = ( mp->mountPoint() == "/" ) ? mp->mountPoint() : mp->mountPoint() + "/"; diff --git a/src/replaygainfilelist.cpp b/src/replaygainfilelist.cpp index 145591a..8d7f4cc 100755 --- a/src/replaygainfilelist.cpp +++ b/src/replaygainfilelist.cpp @@ -619,7 +619,7 @@ void ReplayGainFileList::addFile( const TQString& file ) for( KMountPoint::List::ConstIterator jt = mountPoints.begin(); jt != mountPoints.end(); ++jt ) { - const KSharedPtr<KMountPoint> mp = *jt; + const TDESharedPtr<KMountPoint> mp = *jt; if( mp->mountedFrom() == device ) { filePathName = ( mp->mountPoint() == "/" ) ? mp->mountPoint() : mp->mountPoint() + "/"; |