summaryrefslogtreecommitdiffstats
path: root/khexedit/bitswapwidget.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'khexedit/bitswapwidget.cpp')
-rw-r--r--khexedit/bitswapwidget.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/khexedit/bitswapwidget.cpp b/khexedit/bitswapwidget.cpp
index bc6da80..098fc9d 100644
--- a/khexedit/bitswapwidget.cpp
+++ b/khexedit/bitswapwidget.cpp
@@ -56,7 +56,7 @@ void CDigitLabel::setValue( uint digit, bool notify )
{
if( notify == true )
{
- emit valueChanged( TQT_TQOBJECT(this), digit, false );
+ emit valueChanged( this, digit, false );
}
mDigit = digit;
@@ -64,7 +64,7 @@ void CDigitLabel::setValue( uint digit, bool notify )
if( notify == true )
{
- emit valueChanged( TQT_TQOBJECT(this), mDigit, true );
+ emit valueChanged( this, mDigit, true );
}
}
}
@@ -145,12 +145,12 @@ void CDigitLabel::keyPressEvent( TQKeyEvent *e )
{
case Key_Left:
case Key_Up:
- emit stepCell( TQT_TQOBJECT(this), false );
+ emit stepCell( this, false );
break;
case Key_Right:
case Key_Down:
- emit stepCell( TQT_TQOBJECT(this), true );
+ emit stepCell( this, true );
break;
case Key_Escape:
@@ -186,10 +186,10 @@ CByteWidget::CByteWidget( TQWidget *parent, const char *name )
mDigit[i]->setFixedSize( mDigit[i]->sizeHint()*2 );
mDigit[i]->setFrameStyle( TQFrame::Panel | TQFrame::Sunken );
mDigit[i]->setAlignment( AlignCenter );
- connect( mDigit[i], TQT_SIGNAL(stepCell(const TQObject *, bool )),
- this, TQT_SLOT(stepCell(const TQObject *, bool )));
- connect( mDigit[i], TQT_SIGNAL(valueChanged(const TQObject *, uint, bool )),
- this, TQT_SLOT(valueChanged(const TQObject *, uint, bool )));
+ connect( mDigit[i], TQ_SIGNAL(stepCell(const TQObject *, bool )),
+ this, TQ_SLOT(stepCell(const TQObject *, bool )));
+ connect( mDigit[i], TQ_SIGNAL(valueChanged(const TQObject *, uint, bool )),
+ this, TQ_SLOT(valueChanged(const TQObject *, uint, bool )));
mHBox->addWidget( mDigit[i] );
}