diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:52:55 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:52:55 +0000 |
commit | 5f5ee2367157176ed223b86343eb0a9e4022e020 (patch) | |
tree | 6a9c87f14ee38e90eff3c77c784f14e4f38fd5a1 /khexedit/hexdrag.h | |
parent | 4facf42feec57b22dcf46badc115ad6c5b5cc512 (diff) | |
download | tdeutils-5f5ee2367157176ed223b86343eb0a9e4022e020.tar.gz tdeutils-5f5ee2367157176ed223b86343eb0a9e4022e020.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeutils@1157653 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'khexedit/hexdrag.h')
-rw-r--r-- | khexedit/hexdrag.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/khexedit/hexdrag.h b/khexedit/hexdrag.h index b29b197..2705124 100644 --- a/khexedit/hexdrag.h +++ b/khexedit/hexdrag.h @@ -22,31 +22,31 @@ #define _HEX_DRAG_H_ -#include <qdragobject.h> -#include <qstring.h> +#include <tqdragobject.h> +#include <tqstring.h> class CHexDrag : public QDragObject { Q_OBJECT public: - CHexDrag( const QByteArray &data, QWidget *dragSource = 0, + CHexDrag( const TQByteArray &data, TQWidget *dragSource = 0, const char *name = 0 ); - CHexDrag( QWidget *dragSource = 0, const char *name = 0 ); + CHexDrag( TQWidget *dragSource = 0, const char *name = 0 ); - void setData( const QByteArray &data ); + void setData( const TQByteArray &data ); const char* format ( int i ) const; - QByteArray encodedData( const char *fmt ) const; + TQByteArray encodedData( const char *fmt ) const; - static bool canDecode( const QMimeSource *e ); - static bool decode( const QMimeSource *e, QByteArray &dest ); + static bool canDecode( const TQMimeSource *e ); + static bool decode( const TQMimeSource *e, TQByteArray &dest ); private: void prepPixmap( void ); private: - QByteArray mData; + TQByteArray mData; }; |