diff options
Diffstat (limited to 'lib/compatibility/knewstuff/entry.h')
-rw-r--r-- | lib/compatibility/knewstuff/entry.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/lib/compatibility/knewstuff/entry.h b/lib/compatibility/knewstuff/entry.h index a3c816a1..3de9982c 100644 --- a/lib/compatibility/knewstuff/entry.h +++ b/lib/compatibility/knewstuff/entry.h @@ -106,15 +106,15 @@ class KDE_EXPORT Entry /** * Sets a short description on what the object is all about. */ - void setSummary( const TQString &, const TQString &lang = TQString::null ); + void setSummary( const TQString &, const TQString &lang = TQString() ); /** * Retrieve a short description about the object. * - * @param lang preferred language, or TQString::null for KDE default + * @param lang preferred language, or TQString() for KDE default * @return object description */ - TQString summary( const TQString &lang = TQString::null ) const; + TQString summary( const TQString &lang = TQString() ) const; /** * Sets the version number. @@ -156,29 +156,29 @@ class KDE_EXPORT Entry /** * Sets the object's file. */ - void setPayload( const KURL &, const TQString &lang = TQString::null ); + void setPayload( const KURL &, const TQString &lang = TQString() ); /** * Retrieve the file name of the object. * - * @param lang preferred language, or TQString::null for KDE default + * @param lang preferred language, or TQString() for KDE default * @return object filename */ - KURL payload( const TQString &lang = TQString::null ) const; + KURL payload( const TQString &lang = TQString() ) const; /** * Sets the object's preview file, if available. This should be a * picture file. */ - void setPreview( const KURL &, const TQString &lang = TQString::null ); + void setPreview( const KURL &, const TQString &lang = TQString() ); /** * Retrieve the file name of an image containing a preview of the object. * - * @param lang preferred language, or TQString::null for KDE default + * @param lang preferred language, or TQString() for KDE default * @return object preview filename */ - KURL preview( const TQString &lang = TQString::null ) const; + KURL preview( const TQString &lang = TQString() ) const; /** * Sets the rating between 0 (worst) and 10 (best). @@ -229,10 +229,10 @@ class KDE_EXPORT Entry /** * @internal */ - TQDomElement createDomElement( TQDomDocument &, TQDomElement &parent ); + TQDomElement createDomElement( TQDomDocument &, TQDomElement &tqparent ); protected: - TQDomElement addElement( TQDomDocument &doc, TQDomElement &parent, + TQDomElement addElement( TQDomDocument &doc, TQDomElement &tqparent, const TQString &tag, const TQString &value ); private: |