diff options
Diffstat (limited to 'libkcal/attachment.h')
-rw-r--r-- | libkcal/attachment.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/libkcal/attachment.h b/libkcal/attachment.h index 6e3907099..416701850 100644 --- a/libkcal/attachment.h +++ b/libkcal/attachment.h @@ -24,7 +24,7 @@ #include "listbase.h" #include "libkcal_export.h" -#include <qstring.h> +#include <tqstring.h> namespace KCal { @@ -49,7 +49,7 @@ class KDE_EXPORT Attachment @param uri the uri this attachment refers to @param mime the mime type of the resource being linked to */ - Attachment( const QString &uri, const QString &mime = QString::null ); + Attachment( const TQString &uri, const TQString &mime = TQString::null ); /** Create a binary attachment. @@ -57,35 +57,35 @@ class KDE_EXPORT Attachment @param base64 the attachment in base64 format @param mime the mime type of the attachment */ - Attachment( const char *base64, const QString &mime = QString::null ); + Attachment( const char *base64, const TQString &mime = TQString::null ); /* The VALUE parameter in iCal */ bool isUri() const; - QString uri() const; - void setUri( const QString &uri ); + TQString uri() const; + void setUri( const TQString &uri ); bool isBinary() const; char *data() const; void setData( const char *base64 ); /* The optional FMTTYPE parameter in iCal */ - QString mimeType() const; - void setMimeType( const QString &mime ); + TQString mimeType() const; + void setMimeType( const TQString &mime ); /* The custom X-CONTENT-DISPOSITION parameter, used by OGo etc. */ bool showInline() const; void setShowInline( bool showinline ); /* The custom X-LABEL parameter to show a human-readable title */ - QString label() const; - void setLabel( const QString &label ); + TQString label() const; + void setLabel( const TQString &label ); private: - QString mMimeType; - QString mData; + TQString mMimeType; + TQString mData; bool mBinary; bool mShowInline; - QString mLabel; + TQString mLabel; class Private; Private *d; |