summaryrefslogtreecommitdiffstats
path: root/krec/krecglobal.cpp
diff options
context:
space:
mode:
authorDarrell Anderson <humanreadable@yahoo.com>2012-06-08 15:54:25 -0500
committerDarrell Anderson <humanreadable@yahoo.com>2012-06-08 15:54:25 -0500
commit614de76a8610a1c95980fa61e0be979b76340f3d (patch)
treeb825a0a11f72195fbb3b73130013388af4f5350a /krec/krecglobal.cpp
parent1cb2ef2c511a0fc70615fa6c729fc64e42ec0359 (diff)
downloadtdemultimedia-614de76a8610a1c95980fa61e0be979b76340f3d.tar.gz
tdemultimedia-614de76a8610a1c95980fa61e0be979b76340f3d.zip
Update XDG information in support of bug report 892.
Diffstat (limited to 'krec/krecglobal.cpp')
-rw-r--r--krec/krecglobal.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/krec/krecglobal.cpp b/krec/krecglobal.cpp
index 58822f50..68c48665 100644
--- a/krec/krecglobal.cpp
+++ b/krec/krecglobal.cpp
@@ -81,7 +81,7 @@ TQString KRecGlobal::exportFormatEndings() const {
KTrader::OfferList::iterator it = offers.begin();
while ( it!=offers.end() ) {
out += " *.";
- out += ( *it )->property( "X-KDE-ExportSuffix" ).toStringList().join( " *." );
+ out += ( *it )->property( "X-TDE-ExportSuffix" ).toStringList().join( " *." );
++it;
}
@@ -92,8 +92,8 @@ KRecExportItem* KRecGlobal::getExportItemForEnding( const TQString &ending ) {
KTrader::OfferList offers = KTrader::self()->query( "KRec/exportplugin" );
KTrader::OfferList::iterator it = offers.begin();
while ( it!=offers.end() ) {
- kdDebug(60005) << ( *it )->property( "X-KDE-ExportSuffix" ).toStringList() << endl;
- if ( ( *it )->property( "X-KDE-ExportSuffix" ).toStringList().grep( ending ).count() ) {
+ kdDebug(60005) << ( *it )->property( "X-TDE-ExportSuffix" ).toStringList() << endl;
+ if ( ( *it )->property( "X-TDE-ExportSuffix" ).toStringList().grep( ending ).count() ) {
kdDebug(60005) << "Ending(" << ending << ") found" << endl;
return KParts::ComponentFactory::createInstanceFromService<KRecExportItem>( ( *it ), this, "exportplugin" );
} else kdDebug(60005) << "Doesn't contain " << ending << endl;