From 614de76a8610a1c95980fa61e0be979b76340f3d Mon Sep 17 00:00:00 2001 From: Darrell Anderson Date: Fri, 8 Jun 2012 15:54:25 -0500 Subject: Update XDG information in support of bug report 892. --- krec/krecglobal.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'krec/krecglobal.cpp') 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( ( *it ), this, "exportplugin" ); } else kdDebug(60005) << "Doesn't contain " << ending << endl; -- cgit v1.2.1