summaryrefslogtreecommitdiffstats
path: root/khexedit/lib/kvaluecolumn.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:52:55 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:52:55 +0000
commit5f5ee2367157176ed223b86343eb0a9e4022e020 (patch)
tree6a9c87f14ee38e90eff3c77c784f14e4f38fd5a1 /khexedit/lib/kvaluecolumn.h
parent4facf42feec57b22dcf46badc115ad6c5b5cc512 (diff)
downloadtdeutils-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/lib/kvaluecolumn.h')
-rw-r--r--khexedit/lib/kvaluecolumn.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/khexedit/lib/kvaluecolumn.h b/khexedit/lib/kvaluecolumn.h
index cc25929..7aa287e 100644
--- a/khexedit/lib/kvaluecolumn.h
+++ b/khexedit/lib/kvaluecolumn.h
@@ -40,7 +40,7 @@ class KValueColumn : public KBufferColumn
virtual ~KValueColumn();
public:
- void paintEditedByte( QPainter *P, char Byte, const QString &EditBuffer );
+ void paintEditedByte( TQPainter *P, char Byte, const TQString &EditBuffer );
public: // modification access
/**
@@ -61,11 +61,11 @@ class KValueColumn : public KBufferColumn
protected: // KBufferColumn API
- virtual void drawByte( QPainter *P, char Byte, KHEChar B, const QColor &Color ) const;
+ virtual void drawByte( TQPainter *P, char Byte, KHEChar B, const TQColor &Color ) const;
virtual void recalcByteWidth();
protected:
- void drawCode( QPainter *P, const QString &Code, const QColor &Color ) const;
+ void drawCode( TQPainter *P, const TQString &Code, const TQColor &Color ) const;
protected: // set data
/** */
@@ -77,7 +77,7 @@ class KValueColumn : public KBufferColumn
protected: // buffered data
/** buffer to hold the formatted coding */
- mutable QString CodedByte;
+ mutable TQString CodedByte;
/** calculated: Offset in pixels of the second half of the binary */
KPixelX BinaryHalfOffset;
};