summaryrefslogtreecommitdiffstats
path: root/libkcal/attachment.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:53:50 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:53:50 +0000
commit7be55ffa061c026e35e2d6a0effe1161ddb0d41f (patch)
tree8474f9b444b2756228600050f07a7ff25de532b2 /libkcal/attachment.h
parentf587f20a6d09f1729dd0a8c1cd8ee0110aec7451 (diff)
downloadtdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.tar.gz
tdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1157655 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'libkcal/attachment.h')
-rw-r--r--libkcal/attachment.h24
1 files changed, 12 insertions, 12 deletions
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 <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;