summaryrefslogtreecommitdiffstats
path: root/khexedit/converterdialog.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/converterdialog.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/converterdialog.h')
-rw-r--r--khexedit/converterdialog.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/khexedit/converterdialog.h b/khexedit/converterdialog.h
index f84fe66..abcc432 100644
--- a/khexedit/converterdialog.h
+++ b/khexedit/converterdialog.h
@@ -21,28 +21,28 @@
#ifndef _CONVERTER_DIALOG_H_
#define _CONVERTER_DIALOG_H_
-#include <qlineedit.h>
+#include <tqlineedit.h>
#include <kdialogbase.h>
class CHexValidator;
-class CValidateLineEdit : public QLineEdit
+class CValidateLineEdit : public TQLineEdit
{
Q_OBJECT
public:
- CValidateLineEdit( QWidget *parent, int validateType, const char *name=0 );
+ CValidateLineEdit( TQWidget *parent, int validateType, const char *name=0 );
~CValidateLineEdit( void );
public slots:
- void setData( const QByteArray &buf );
+ void setData( const TQByteArray &buf );
private slots:
- void convertText( const QString &text );
+ void convertText( const TQString &text );
signals:
- void dataChanged( const QByteArray &buf );
+ void dataChanged( const TQByteArray &buf );
private:
bool mBusy;
@@ -55,21 +55,21 @@ class CConverterDialog : public KDialogBase
Q_OBJECT
public:
- CConverterDialog( QWidget *parent, const char *name=0, bool modal=true );
+ CConverterDialog( TQWidget *parent, const char *name=0, bool modal=true );
~CConverterDialog( void );
protected:
- void showEvent( QShowEvent *e );
+ void showEvent( TQShowEvent *e );
protected slots:
virtual void slotUser1( void );
virtual void slotUser2( void );
private slots:
- void setData( const QByteArray &data );
+ void setData( const TQByteArray &data );
signals:
- void probeCursorValue( QByteArray &buf, uint size );
+ void probeCursorValue( TQByteArray &buf, uint size );
private:
CValidateLineEdit *mHexInput;