diff options
Diffstat (limited to 'libkdepim/komposer/core/attachment.h')
-rw-r--r-- | libkdepim/komposer/core/attachment.h | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/libkdepim/komposer/core/attachment.h b/libkdepim/komposer/core/attachment.h index fc19fb2da..5c4e1ebf2 100644 --- a/libkdepim/komposer/core/attachment.h +++ b/libkdepim/komposer/core/attachment.h @@ -22,9 +22,9 @@ #ifndef KOMPOSER_ATTACHMENT_H #define KOMPOSER_ATTACHMENT_H -#include <qstring.h> -#include <qcstring.h> -#include <qvaluelist.h> +#include <tqstring.h> +#include <tqcstring.h> +#include <tqvaluelist.h> namespace Komposer { @@ -32,30 +32,30 @@ namespace Komposer class Attachment { public: - Attachment( const QString &name, - const QCString &cte, - const QByteArray &data, - const QCString &type, - const QCString &subType, - const QCString ¶mAttr, - const QString ¶mValue, - const QCString &contDisp ); + Attachment( const TQString &name, + const TQCString &cte, + const TQByteArray &data, + const TQCString &type, + const TQCString &subType, + const TQCString ¶mAttr, + const TQString ¶mValue, + const TQCString &contDisp ); ~Attachment(); - QString name() const; - QCString cte() const; - QByteArray data() const; - QCString type() const; - QCString subType() const; - QCString paramAttr() const; - QString paramValue() const; - QCString contentDisposition() const; + TQString name() const; + TQCString cte() const; + TQByteArray data() const; + TQCString type() const; + TQCString subType() const; + TQCString paramAttr() const; + TQString paramValue() const; + TQCString contentDisposition() const; private: class Private; Private *d; }; - typedef QValueList<Attachment> AttachmentList; + typedef TQValueList<Attachment> AttachmentList; } #endif |