diff options
Diffstat (limited to 'kopete/libkopete/kopeteproperties.h')
-rw-r--r-- | kopete/libkopete/kopeteproperties.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kopete/libkopete/kopeteproperties.h b/kopete/libkopete/kopeteproperties.h index bb27b82f..5b04e4a1 100644 --- a/kopete/libkopete/kopeteproperties.h +++ b/kopete/libkopete/kopeteproperties.h @@ -89,11 +89,11 @@ class Property : public PropertyBase<Parent> { public: /** - * Returns the value of this property in the object @p tqparent. + * Returns the value of this property in the object @p parent. */ - virtual Type get( const Parent *tqparent ) const = 0; + virtual Type get( const Parent *parent ) const = 0; /** - * Sets the value of this property in the object @p tqparent. + * Sets the value of this property in the object @p parent. */ virtual void set( Parent *, const Type & ) const = 0; }; @@ -101,7 +101,7 @@ public: /** * @brief Base class for property data objects * - * Some property objects want to store property-specific data in their tqparent objects. + * Some property objects want to store property-specific data in their parent objects. * To support that, subclasses of this class are permitted to be stored. Once passed * to the @ref PropertyStorage object via @ref PropertyStorage::setCustomPropertyData, * the @ref PropertyStorage object owns the PropertyData, and will delete it when it |