diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:53:50 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:53:50 +0000 |
commit | 7be55ffa061c026e35e2d6a0effe1161ddb0d41f (patch) | |
tree | 8474f9b444b2756228600050f07a7ff25de532b2 /libkdepim/kvcarddrag.h | |
parent | f587f20a6d09f1729dd0a8c1cd8ee0110aec7451 (diff) | |
download | tdepim-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 'libkdepim/kvcarddrag.h')
-rw-r--r-- | libkdepim/kvcarddrag.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/libkdepim/kvcarddrag.h b/libkdepim/kvcarddrag.h index c97fd8aeb..55b3ef188 100644 --- a/libkdepim/kvcarddrag.h +++ b/libkdepim/kvcarddrag.h @@ -22,8 +22,8 @@ #ifndef KVCARDDRAG_H #define KVCARDDRAG_H -#include <qdragobject.h> -#include <qstring.h> +#include <tqdragobject.h> +#include <tqstring.h> #include <kabc/addressee.h> #include <kdepimmacros.h> @@ -44,33 +44,33 @@ class KDE_EXPORT KVCardDrag : public QStoredDrag /** * Constructs an empty vcard drag. */ - KVCardDrag( QWidget *dragsource = 0, const char *name = 0 ); + KVCardDrag( TQWidget *dragsource = 0, const char *name = 0 ); /** * Constructs a vcard drag with the @p addressee. */ - KVCardDrag( const QString &content, QWidget *dragsource = 0, const char *name = 0 ); + KVCardDrag( const TQString &content, TQWidget *dragsource = 0, const char *name = 0 ); virtual ~KVCardDrag() {} /** * Sets the vcard of the drag to @p content. */ - void setVCard( const QString &content ); + void setVCard( const TQString &content ); /** * Returns true if the MIME source @p e contains a vcard object. */ - static bool canDecode( QMimeSource *e ); + static bool canDecode( TQMimeSource *e ); /** * Decodes the MIME source @p e and puts the resulting vcard into @p content. */ - static bool decode( QMimeSource *e, QString &content ); + static bool decode( TQMimeSource *e, TQString &content ); /** * Decodes the MIME source @p e and puts the resulting vcard into @p addresseess. */ - static bool decode( QMimeSource *e, KABC::Addressee::List& addressees ); + static bool decode( TQMimeSource *e, KABC::Addressee::List& addressees ); protected: virtual void virtual_hook( int id, void* data ); |