summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-01 10:51:54 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-01 10:51:54 -0600
commitced2058eaf8e5af831ebc02812a18937ff7e1de3 (patch)
treeb9653a323c77162e331d6f34ad3ee0ab42eaa2ff
parent3120329f81fe10c31bcb61f43a963ddef8bf3251 (diff)
downloadtdemultimedia-ced2058e.tar.gz
tdemultimedia-ced2058e.zip
Rename KLock and KTrader to avoid conflicts with KDE4
-rw-r--r--krec/krecglobal.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/krec/krecglobal.cpp b/krec/krecglobal.cpp
index a1c9c44c..5ca06a6a 100644
--- a/krec/krecglobal.cpp
+++ b/krec/krecglobal.cpp
@@ -77,8 +77,8 @@ TQStringList KRecGlobal::exportFormats() const {
TQString KRecGlobal::exportFormatEndings() const {
TQString out;
- KTrader::OfferList offers = KTrader::self()->query( "KRec/exportplugin" );
- KTrader::OfferList::iterator it = offers.begin();
+ TDETrader::OfferList offers = TDETrader::self()->query( "KRec/exportplugin" );
+ TDETrader::OfferList::iterator it = offers.begin();
while ( it!=offers.end() ) {
out += " *.";
out += ( *it )->property( "X-TDE-ExportSuffix" ).toStringList().join( " *." );
@@ -89,8 +89,8 @@ TQString KRecGlobal::exportFormatEndings() const {
}
KRecExportItem* KRecGlobal::getExportItemForEnding( const TQString &ending ) {
- KTrader::OfferList offers = KTrader::self()->query( "KRec/exportplugin" );
- KTrader::OfferList::iterator it = offers.begin();
+ TDETrader::OfferList offers = TDETrader::self()->query( "KRec/exportplugin" );
+ TDETrader::OfferList::iterator it = offers.begin();
while ( it!=offers.end() ) {
kdDebug(60005) << ( *it )->property( "X-TDE-ExportSuffix" ).toStringList() << endl;
if ( ( *it )->property( "X-TDE-ExportSuffix" ).toStringList().grep( ending ).count() ) {