summaryrefslogtreecommitdiffstats
path: root/starter/baghiralinkdrag.h
diff options
context:
space:
mode:
Diffstat (limited to 'starter/baghiralinkdrag.h')
-rw-r--r--starter/baghiralinkdrag.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/starter/baghiralinkdrag.h b/starter/baghiralinkdrag.h
index 3aca9ec..23dc9c0 100644
--- a/starter/baghiralinkdrag.h
+++ b/starter/baghiralinkdrag.h
@@ -1,24 +1,24 @@
#ifndef _BAGHIRALINKDRAG_H_
#define _BAGHIRALINKDRAG_H_
-#include <qdragobject.h>
-#include <qstring.h>
+#include <tqdragobject.h>
+#include <tqstring.h>
-class BaghiraLinkDrag : public QDragObject
+class BaghiraLinkDrag : public TQDragObject
{
// Q_OBJECT
public:
- BaghiraLinkDrag(QString title, QString command, QString icon, int index = -1, QWidget* dragSource = 0);
+ BaghiraLinkDrag(TQString title, TQString command, TQString icon, int index = -1, TQWidget* dragSource = 0);
~BaghiraLinkDrag();
- static bool decode( const QMimeSource * e, QString * title, QString * command, QString * icon, int * index);
- static bool canDecode( const QMimeSource * e);
+ static bool decode( const TQMimeSource * e, TQString * title, TQString * command, TQString * icon, int * index);
+ static bool canDecode( const TQMimeSource * e);
static void setAccepted( );
virtual const char * format ( int i = 0 ) const;
- virtual QByteArray encodedData ( const char * ) const;
+ virtual TQByteArray encodedData ( const char * ) const;
static bool accepted( );
private:
- QByteArray a;
+ TQByteArray a;
};
#endif