summaryrefslogtreecommitdiffstats
path: root/libkcal/customproperties.cpp
diff options
context:
space:
mode:
authorDarrell Anderson <humanreadable@yahoo.com>2012-06-08 15:56:39 -0500
committerDarrell Anderson <humanreadable@yahoo.com>2012-06-08 15:56:39 -0500
commit829790146716bc30c2e98cf2a767e60f60e5143a (patch)
tree9ec044f1ff90653dc07bc9e50254ab56c61b7144 /libkcal/customproperties.cpp
parent66914d2878a6cadacbaf6ceacdd74d2999e4114e (diff)
downloadtdepim-829790146716bc30c2e98cf2a767e60f60e5143a.tar.gz
tdepim-829790146716bc30c2e98cf2a767e60f60e5143a.zip
Update XDG information in support of bug report 892.
Diffstat (limited to 'libkcal/customproperties.cpp')
-rw-r--r--libkcal/customproperties.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/libkcal/customproperties.cpp b/libkcal/customproperties.cpp
index ca31645a..7940d23c 100644
--- a/libkcal/customproperties.cpp
+++ b/libkcal/customproperties.cpp
@@ -60,7 +60,7 @@ void CustomProperties::setCustomProperty(const TQCString &app, const TQCString &
{
if (value.isNull() || key.isEmpty() || app.isEmpty())
return;
- TQCString property = "X-KDE-" + app + "-" + key;
+ TQCString property = "X-TDE-" + app + "-" + key;
if (!checkName(property))
return;
mProperties[property] = value;
@@ -69,12 +69,12 @@ void CustomProperties::setCustomProperty(const TQCString &app, const TQCString &
void CustomProperties::removeCustomProperty(const TQCString &app, const TQCString &key)
{
- removeNonKDECustomProperty(TQCString("X-KDE-" + app + "-" + key));
+ removeNonKDECustomProperty(TQCString("X-TDE-" + app + "-" + key));
}
TQString CustomProperties::customProperty(const TQCString &app, const TQCString &key) const
{
- return nonKDECustomProperty(TQCString("X-KDE-" + app + "-" + key));
+ return nonKDECustomProperty(TQCString("X-TDE-" + app + "-" + key));
}
void CustomProperties::setNonKDECustomProperty(const TQCString &name, const TQString &value)