diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-05-26 00:38:19 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-05-26 00:38:19 +0000 |
commit | f0296ef9e1f94e23c00d6f490e565d1dc768416d (patch) | |
tree | 7f3fd9f99621c111ff67f2d62feb5960a3371853 /src/part/radialMap/segmentTip.h | |
parent | 3098eb909534268622ce776f9a7bb5310d31b3c1 (diff) | |
download | filelight-f0296ef9e1f94e23c00d6f490e565d1dc768416d.tar.gz filelight-f0296ef9e1f94e23c00d6f490e565d1dc768416d.zip |
TQt4 port Filelight
This enables compilation under both Qt3 and Qt4
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/filelight@1233561 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/part/radialMap/segmentTip.h')
-rw-r--r-- | src/part/radialMap/segmentTip.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/part/radialMap/segmentTip.h b/src/part/radialMap/segmentTip.h index 8bc479e..b082b62 100644 --- a/src/part/radialMap/segmentTip.h +++ b/src/part/radialMap/segmentTip.h @@ -5,28 +5,28 @@ #define SEGMENTTIP_H #include <kpixmap.h> -#include <qwidget.h> +#include <tqwidget.h> class File; class Directory; namespace RadialMap { - class SegmentTip : public QWidget + class SegmentTip : public TQWidget { public: SegmentTip( uint ); void updateTip( const File*, const Directory* ); - void moveTo( QPoint, const QWidget&, bool ); + void moveTo( TQPoint, const TQWidget&, bool ); private: - virtual bool eventFilter( QObject*, QEvent* ); - virtual bool event( QEvent* ); + virtual bool eventFilter( TQObject*, TQEvent* ); + virtual bool event( TQEvent* ); uint m_cursorHeight; KPixmap m_pixmap; - QString m_text; + TQString m_text; bool m_backing_store; }; } |