diff options
author | Darrell Anderson <humanreadable@yahoo.com> | 2012-06-08 15:56:39 -0500 |
---|---|---|
committer | Darrell Anderson <humanreadable@yahoo.com> | 2012-06-08 15:56:39 -0500 |
commit | 829790146716bc30c2e98cf2a767e60f60e5143a (patch) | |
tree | 9ec044f1ff90653dc07bc9e50254ab56c61b7144 /kresources/kolab/kcal | |
parent | 66914d2878a6cadacbaf6ceacdd74d2999e4114e (diff) | |
download | tdepim-829790146716bc30c2e98cf2a767e60f60e5143a.tar.gz tdepim-829790146716bc30c2e98cf2a767e60f60e5143a.zip |
Update XDG information in support of bug report 892.
Diffstat (limited to 'kresources/kolab/kcal')
-rw-r--r-- | kresources/kolab/kcal/incidence.cpp | 6 | ||||
-rw-r--r-- | kresources/kolab/kcal/kolab.desktop | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/kresources/kolab/kcal/incidence.cpp b/kresources/kolab/kcal/incidence.cpp index 2617da4a1..ddc31491b 100644 --- a/kresources/kolab/kcal/incidence.cpp +++ b/kresources/kolab/kcal/incidence.cpp @@ -532,7 +532,7 @@ bool Incidence::loadAttribute( TQDomElement& element ) // Unhandled tag - save for later storage //kdDebug() << "Saving unhandled tag " << element.tagName() << endl; Custom c; - c.key = TQCString( "X-KDE-KolabUnhandled-" ) + element.tagName().latin1(); + c.key = TQCString( "X-TDE-KolabUnhandled-" ) + element.tagName().latin1(); c.value = element.text(); mCustomList.append( c ); } @@ -574,8 +574,8 @@ void Incidence::saveCustomAttributes( TQDomElement& element ) const for ( ; it != mCustomList.end(); ++it ) { TQString key = (*it).key; Q_ASSERT( !key.isEmpty() ); - if ( key.startsWith( "X-KDE-KolabUnhandled-" ) ) { - key = key.mid( strlen( "X-KDE-KolabUnhandled-" ) ); + if ( key.startsWith( "X-TDE-KolabUnhandled-" ) ) { + key = key.mid( strlen( "X-TDE-KolabUnhandled-" ) ); writeString( element, key, (*it).value ); } else { // Let's use attributes so that other tag-preserving-code doesn't need sub-elements diff --git a/kresources/kolab/kcal/kolab.desktop b/kresources/kolab/kcal/kolab.desktop index 21b412ed2..b8fb5aa2e 100644 --- a/kresources/kolab/kcal/kolab.desktop +++ b/kresources/kolab/kcal/kolab.desktop @@ -45,8 +45,8 @@ Name[tr]=KMail Aracılığı ile IMAP Sunucusunda Takvim Name[uk]=Календар на сервері IMAP через KMail Name[zh_CN]=通过 KMail 访问 IMAP 服务器上的日历 Name[zh_TW]=透過 KMail 取得 IMAP 伺服器上的行事曆 -X-KDE-Library=kcal_kolab +X-TDE-Library=kcal_kolab Type=Service ServiceTypes=KResources/Plugin -X-KDE-ResourceFamily=calendar -X-KDE-ResourceType=imap +X-TDE-ResourceFamily=calendar +X-TDE-ResourceType=imap |