diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-11-06 21:47:32 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-11-06 21:47:32 -0600 |
commit | 7cb24f16beba124f021091c4b7bcf8565a06fb95 (patch) | |
tree | 966c56d322d59439374c65c06803bdca34b00af5 /kresources/newexchange | |
parent | dbb49d72f7a1bc5c4b7312219cae8491cc571def (diff) | |
download | tdepim-7cb24f16beba124f021091c4b7bcf8565a06fb95.tar.gz tdepim-7cb24f16beba124f021091c4b7bcf8565a06fb95.zip |
Rename additional instances of KDE to TDE
Diffstat (limited to 'kresources/newexchange')
-rw-r--r-- | kresources/newexchange/exchangeconvertercalendar.cpp | 4 | ||||
-rw-r--r-- | kresources/newexchange/exchangeconvertercontact.cpp | 4 | ||||
-rw-r--r-- | kresources/newexchange/exchangeglobals.cpp | 8 |
3 files changed, 8 insertions, 8 deletions
diff --git a/kresources/newexchange/exchangeconvertercalendar.cpp b/kresources/newexchange/exchangeconvertercalendar.cpp index d093faf18..53cc7e78d 100644 --- a/kresources/newexchange/exchangeconvertercalendar.cpp +++ b/kresources/newexchange/exchangeconvertercalendar.cpp @@ -221,9 +221,9 @@ kdDebug()<<"ExchangeConverterCalendar::readIncidencd"<<endl; readTZ( node, incidence ); if ( WebdavHandler::extractString( node, "getetag", tmpstr ) ) - incidence->setCustomProperty( "KDEPIM-Exchange-Resource", "fingerprint", tmpstr ); + incidence->setCustomProperty( "TDEPIM-Exchange-Resource", "fingerprint", tmpstr ); if ( WebdavHandler::extractString( node, "href", tmpstr ) ) - incidence->setCustomProperty( "KDEPIM-Exchange-Resource", "href", tmpstr ); + incidence->setCustomProperty( "TDEPIM-Exchange-Resource", "href", tmpstr ); // FIXME: use repl-uid as scheduling id? if ( WebdavHandler::extractString( node, "textdescription", tmpstr ) ) diff --git a/kresources/newexchange/exchangeconvertercontact.cpp b/kresources/newexchange/exchangeconvertercontact.cpp index 1c2828c10..e8de19cb8 100644 --- a/kresources/newexchange/exchangeconvertercontact.cpp +++ b/kresources/newexchange/exchangeconvertercontact.cpp @@ -221,9 +221,9 @@ bool ExchangeConverterContact::readAddressee( const TQDomElement &node, Addresse return false; } if ( WebdavHandler::extractString( node, "getetag", tmpstr ) ) - addressee.insertCustom( "KDEPIM-Exchange-Resource", "fingerprint", tmpstr ); + addressee.insertCustom( "TDEPIM-Exchange-Resource", "fingerprint", tmpstr ); if ( WebdavHandler::extractString( node, "href", tmpstr ) ) - addressee.insertCustom( "KDEPIM-Exchange-Resource", "href", tmpstr ); + addressee.insertCustom( "TDEPIM-Exchange-Resource", "href", tmpstr ); /* KDE4: addressee does not have any creation or modification date :-(( */ /* KDE4: read-only not supported by libkabc */ diff --git a/kresources/newexchange/exchangeglobals.cpp b/kresources/newexchange/exchangeglobals.cpp index aaef31bcd..5cb2eee77 100644 --- a/kresources/newexchange/exchangeglobals.cpp +++ b/kresources/newexchange/exchangeglobals.cpp @@ -251,8 +251,8 @@ kdDebug() << "ExchangeGlobals::interpretCalendarDownloadItemsJob(): TQDomDocumen bool res = false; KCal::Incidence::List::Iterator it = incidences.begin(); for ( ; it != incidences.end(); ++it ) { - TQString fpr = (*it)->customProperty( "KDEPIM-Exchange-Resource", "fingerprint" ); - KURL href( (*it)->customProperty( "KDEPIM-Exchange-Resource", "href" ) ); + TQString fpr = (*it)->customProperty( "TDEPIM-Exchange-Resource", "fingerprint" ); + KURL href( (*it)->customProperty( "TDEPIM-Exchange-Resource", "href" ) ); adaptor->calendarItemDownloaded( (*it), (*it)->uid(), href, fpr, href.prettyURL() ); res = true; } @@ -274,8 +274,8 @@ kdDebug() << "ExchangeGlobals::interpretAddressBookDownloadItemsJob(): TQDomDocu bool res = false; KABC::Addressee::List::Iterator it = addressees.begin(); for ( ; it != addressees.end(); ++it ) { - TQString fpr = (*it).custom( "KDEPIM-Exchange-Resource", "fingerprint" ); - KURL href( (*it).custom( "KDEPIM-Exchange-Resource", "href" ) ); + TQString fpr = (*it).custom( "TDEPIM-Exchange-Resource", "fingerprint" ); + KURL href( (*it).custom( "TDEPIM-Exchange-Resource", "href" ) ); adaptor->addressbookItemDownloaded( (*it), (*it).uid(), href, fpr, href.prettyURL() ); res = true; } |