summaryrefslogtreecommitdiffstats
path: root/khexedit/parts/kbytesedit/kbyteseditwidget.cpp
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/parts/kbytesedit/kbyteseditwidget.cpp
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/parts/kbytesedit/kbyteseditwidget.cpp')
-rw-r--r--khexedit/parts/kbytesedit/kbyteseditwidget.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/khexedit/parts/kbytesedit/kbyteseditwidget.cpp b/khexedit/parts/kbytesedit/kbyteseditwidget.cpp
index 4cc91ab..cb2b549 100644
--- a/khexedit/parts/kbytesedit/kbyteseditwidget.cpp
+++ b/khexedit/parts/kbytesedit/kbyteseditwidget.cpp
@@ -16,7 +16,7 @@
// qt specific
-#include <qlayout.h>
+#include <tqlayout.h>
// kde specific
#include <klocale.h>
#include <kgenericfactory.h>
@@ -26,14 +26,14 @@
#include "kbyteseditwidget.h"
-KBytesEditWidget::KBytesEditWidget( QWidget *parent, const char *name, const QStringList & )
- : QWidget( parent, name)
+KBytesEditWidget::KBytesEditWidget( TQWidget *parent, const char *name, const TQStringList & )
+ : TQWidget( parent, name)
{
- QHBoxLayout* Layout = new QHBoxLayout( this );
+ TQHBoxLayout* Layout = new TQHBoxLayout( this );
BytesEdit = new KHE::KBytesEdit( this, "BytesEdit" );
Layout->addWidget( BytesEdit );
-// connect( _editor, SIGNAL( canUndo(bool) ), this, SIGNAL( canUndo(bool) ) );
- connect( BytesEdit, SIGNAL(copyAvailable( bool )), this, SIGNAL(copyAvailable( bool )) );
+// connect( _editor, TQT_SIGNAL( canUndo(bool) ), this, TQT_SIGNAL( canUndo(bool) ) );
+ connect( BytesEdit, TQT_SIGNAL(copyAvailable( bool )), this, TQT_SIGNAL(copyAvailable( bool )) );
}
@@ -144,7 +144,7 @@ void KBytesEditWidget::setShowUnprintable( bool SU )
BytesEdit->setShowUnprintable( SU );
}
-void KBytesEditWidget::setSubstituteChar( QChar SC )
+void KBytesEditWidget::setSubstituteChar( TQChar SC )
{
BytesEdit->setSubstituteChar( SC );
}
@@ -230,7 +230,7 @@ bool KBytesEditWidget::showUnprintable() const
return BytesEdit->showUnprintable();
}
-QChar KBytesEditWidget::substituteChar() const
+TQChar KBytesEditWidget::substituteChar() const
{
return BytesEdit->substituteChar();
}
@@ -253,7 +253,7 @@ void KBytesEditWidget::repaintRange( int i1, int i2 )
}
-void KBytesEditWidget::insert( const QByteArray &D )
+void KBytesEditWidget::insert( const TQByteArray &D )
{
BytesEdit->insert( D );
}