summaryrefslogtreecommitdiffstats
path: root/libkcal/customproperties.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-04-13 00:46:47 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-04-13 00:46:47 +0000
commit67e29a054cfcb1b0d2fe6b0a316cf6b3eec087b7 (patch)
tree5f52a9eada2e9f3654fc327d7c14dfef570a6ecb /libkcal/customproperties.h
parent2ee4bf4fd5eff93b2fbef0ff8e8063edffc5da5c (diff)
downloadtdepim-67e29a054cfcb1b0d2fe6b0a316cf6b3eec087b7.tar.gz
tdepim-67e29a054cfcb1b0d2fe6b0a316cf6b3eec087b7.zip
Initial conversion of kdepim to TQt
This will probably require some tweaking before it will build under Qt4, however Qt3 builds are OK. Any alterations this commit makes to kdepim behaviour under Qt3 are unintentional and should be fixed. git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1227832 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'libkcal/customproperties.h')
-rw-r--r--libkcal/customproperties.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/libkcal/customproperties.h b/libkcal/customproperties.h
index 46814ca0..d4347389 100644
--- a/libkcal/customproperties.h
+++ b/libkcal/customproperties.h
@@ -56,7 +56,7 @@ class LIBKCAL_EXPORT CustomProperties
@param app Application name as it appears in the custom property name.
@param key Property identifier specific to the application.
- @param value The property's value. A call with a value of TQString::null
+ @param value The property's value. A call with a value of TQString()
will be ignored.
*/
void setCustomProperty( const TQCString &app, const TQCString &key,
@@ -73,7 +73,7 @@ class LIBKCAL_EXPORT CustomProperties
@param app Application name as it appears in the custom property name.
@param key Property identifier specific to the application.
- @return Property value, or TQString::null if (and only if) the property
+ @return Property value, or TQString() if (and only if) the property
does not exist.
*/
TQString customProperty( const TQCString &app, const TQCString &key ) const;
@@ -82,7 +82,7 @@ class LIBKCAL_EXPORT CustomProperties
Create or modify a non-KDE or non-standard custom calendar property.
@param name Full property name
- @param value The property's value. A call with a value of TQString::null
+ @param value The property's value. A call with a value of TQString()
will be ignored.
*/
void setNonKDECustomProperty( const TQCString &name, const TQString &value );
@@ -96,7 +96,7 @@ class LIBKCAL_EXPORT CustomProperties
Return the value of a non-KDE or non-standard custom calendar property.
@param name Full property name
- @return Property value, or TQString::null if (and only if) the property
+ @return Property value, or TQString() if (and only if) the property
does not exist.
*/
TQString nonKDECustomProperty( const TQCString& name ) const;