From 7be55ffa061c026e35e2d6a0effe1161ddb0d41f Mon Sep 17 00:00:00 2001 From: tpearson Date: Sat, 31 Jul 2010 19:53:50 +0000 Subject: Trinity Qt initial conversion git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1157655 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- libkcal/attachment.h | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) (limited to 'libkcal/attachment.h') diff --git a/libkcal/attachment.h b/libkcal/attachment.h index 6e390709..41670185 100644 --- a/libkcal/attachment.h +++ b/libkcal/attachment.h @@ -24,7 +24,7 @@ #include "listbase.h" #include "libkcal_export.h" -#include +#include 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; -- cgit v1.2.3