summaryrefslogtreecommitdiffstats
path: root/starter/baghiralinkdrag.h
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2016-03-25 20:03:28 +0100
committerSlávek Banko <slavek.banko@axis.cz>2016-03-25 20:03:28 +0100
commit2ee99ab520931c5efe91123c85ba10064a45e95d (patch)
treea367666e410de28d0f258aed77b11e17cafb28e4 /starter/baghiralinkdrag.h
parentcfa36e1a95e82492c17225ff376911abb3688f62 (diff)
downloadtde-style-baghira-2ee99ab520931c5efe91123c85ba10064a45e95d.tar.gz
tde-style-baghira-2ee99ab520931c5efe91123c85ba10064a45e95d.zip
Initial TQt conversion
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
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