summaryrefslogtreecommitdiffstats
path: root/libkdepim/kvcarddrag.h
diff options
context:
space:
mode:
Diffstat (limited to 'libkdepim/kvcarddrag.h')
-rw-r--r--libkdepim/kvcarddrag.h16
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 );