summaryrefslogtreecommitdiffstats
path: root/khexedit/converterdialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'khexedit/converterdialog.cpp')
-rw-r--r--khexedit/converterdialog.cpp24
1 files changed, 12 insertions, 12 deletions
diff --git a/khexedit/converterdialog.cpp b/khexedit/converterdialog.cpp
index e742e73..1f54df7 100644
--- a/khexedit/converterdialog.cpp
+++ b/khexedit/converterdialog.cpp
@@ -34,8 +34,8 @@ CValidateLineEdit::CValidateLineEdit( TQWidget *parent, int validateType,
{
mValidator = new CHexValidator( this, (CHexValidator::EState)validateType );
setValidator( mValidator );
- connect( this, TQT_SIGNAL(textChanged(const TQString &)),
- this, TQT_SLOT(convertText(const TQString &)) );
+ connect( this, TQ_SIGNAL(textChanged(const TQString &)),
+ this, TQ_SLOT(convertText(const TQString &)) );
}
@@ -101,16 +101,16 @@ CConverterDialog::CConverterDialog( TQWidget *parent, const char *name,
mTxtInput = new CValidateLineEdit( page, CHexValidator::regularText );
topLayout->addWidget( mTxtInput, 4, 1 );
- connect( mHexInput, TQT_SIGNAL(dataChanged(const TQByteArray &)),
- this, TQT_SLOT(setData(const TQByteArray &)) );
- connect( mDecInput, TQT_SIGNAL(dataChanged(const TQByteArray &)),
- this, TQT_SLOT(setData(const TQByteArray &)) );
- connect( mOctInput, TQT_SIGNAL(dataChanged(const TQByteArray &)),
- this, TQT_SLOT(setData(const TQByteArray &)) );
- connect( mBinInput, TQT_SIGNAL(dataChanged(const TQByteArray &)),
- this, TQT_SLOT(setData(const TQByteArray &)) );
- connect( mTxtInput, TQT_SIGNAL(dataChanged(const TQByteArray &)),
- this, TQT_SLOT(setData(const TQByteArray &)) );
+ connect( mHexInput, TQ_SIGNAL(dataChanged(const TQByteArray &)),
+ this, TQ_SLOT(setData(const TQByteArray &)) );
+ connect( mDecInput, TQ_SIGNAL(dataChanged(const TQByteArray &)),
+ this, TQ_SLOT(setData(const TQByteArray &)) );
+ connect( mOctInput, TQ_SIGNAL(dataChanged(const TQByteArray &)),
+ this, TQ_SLOT(setData(const TQByteArray &)) );
+ connect( mBinInput, TQ_SIGNAL(dataChanged(const TQByteArray &)),
+ this, TQ_SLOT(setData(const TQByteArray &)) );
+ connect( mTxtInput, TQ_SIGNAL(dataChanged(const TQByteArray &)),
+ this, TQ_SLOT(setData(const TQByteArray &)) );
}