diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-31 13:28:49 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-31 13:28:49 -0600 |
commit | 32de9b20387f7237914d8d9b9f1ac733287a08a1 (patch) | |
tree | 796116d577da64255dc6e239ea25c4df30474306 /tdeioslave | |
parent | 86a162c3105e54d6e7e38c8b4f8e4ee36387f789 (diff) | |
download | tdemultimedia-32de9b20387f7237914d8d9b9f1ac733287a08a1.tar.gz tdemultimedia-32de9b20387f7237914d8d9b9f1ac733287a08a1.zip |
Rename KStandard for enhanced compatibility with KDE4
Diffstat (limited to 'tdeioslave')
-rw-r--r-- | tdeioslave/audiocd/plugins/audiocdencoder.cpp | 4 | ||||
-rw-r--r-- | tdeioslave/audiocd/plugins/audiocdencoder.h | 2 | ||||
-rw-r--r-- | tdeioslave/audiocd/plugins/lame/encoderlame.cpp | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/tdeioslave/audiocd/plugins/audiocdencoder.cpp b/tdeioslave/audiocd/plugins/audiocdencoder.cpp index 26c108b8..05a1c145 100644 --- a/tdeioslave/audiocd/plugins/audiocdencoder.cpp +++ b/tdeioslave/audiocd/plugins/audiocdencoder.cpp @@ -62,12 +62,12 @@ void *loadPlugin(const TQString &libFileName) void AudioCDEncoder::findAllPlugins(TDEIO::SlaveBase *slave, TQPtrList<AudioCDEncoder> &encoders){ TQString foundEncoders; - KStandardDirs standardDirs; + TDEStandardDirs standardDirs; TQStringList dirs = standardDirs.findDirs("module", ""); for (TQStringList::Iterator it = dirs.begin(); it != dirs.end(); ++it) { TQDir dir(*it); if (!dir.exists()) { - kdDebug(7117) << "Directory given by KStandardDirs: " << dir.path() << " doesn't exists!" << endl; + kdDebug(7117) << "Directory given by TDEStandardDirs: " << dir.path() << " doesn't exists!" << endl; continue; } dir.setFilter(TQDir::Files | TQDir::Hidden); diff --git a/tdeioslave/audiocd/plugins/audiocdencoder.h b/tdeioslave/audiocd/plugins/audiocdencoder.h index 56fe7aa5..164c7aec 100644 --- a/tdeioslave/audiocd/plugins/audiocdencoder.h +++ b/tdeioslave/audiocd/plugins/audiocdencoder.h @@ -124,7 +124,7 @@ public: /** * Helper function to load all of the AudioCD Encoders from libraries. - * Uses KStandardDirs to find where libraries could be, opens all of the ones + * Uses TDEStandardDirs to find where libraries could be, opens all of the ones * that we might own audiocd_encoder_* and then uses the symbol * create_audiocd_encoders to obtain the encoders from that library. * @param slave ioslave needed if the plugin is going to be used to encode something. diff --git a/tdeioslave/audiocd/plugins/lame/encoderlame.cpp b/tdeioslave/audiocd/plugins/lame/encoderlame.cpp index a9a6233f..6040f9a4 100644 --- a/tdeioslave/audiocd/plugins/lame/encoderlame.cpp +++ b/tdeioslave/audiocd/plugins/lame/encoderlame.cpp @@ -79,7 +79,7 @@ TQWidget* EncoderLame::getConfigureWidget(TDEConfigSkeleton** manager) const { bool EncoderLame::init(){ // Determine if lame is installed on the system or not. - if ( KStandardDirs::findExe( "lame" ).isEmpty() ) + if ( TDEStandardDirs::findExe( "lame" ).isEmpty() ) return false; // Ask lame for the list of genres it knows; otherwise it barfs when doing |