summaryrefslogtreecommitdiffstats
path: root/korn/boxcontainer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'korn/boxcontainer.cpp')
-rw-r--r--korn/boxcontainer.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/korn/boxcontainer.cpp b/korn/boxcontainer.cpp
index e245004c..934a47c5 100644
--- a/korn/boxcontainer.cpp
+++ b/korn/boxcontainer.cpp
@@ -22,11 +22,11 @@
#include <kconfig.h>
#include <kdebug.h>
-#include <qptrlist.h>
+#include <tqptrlist.h>
-BoxContainer::BoxContainer( QObject * parent, const char * name )
- : QObject( parent, name ),
- _items( new QPtrList< BoxContainerItem > )
+BoxContainer::BoxContainer( TQObject * parent, const char * name )
+ : TQObject( parent, name ),
+ _items( new TQPtrList< BoxContainerItem > )
{
_items->setAutoDelete( true );
}
@@ -39,9 +39,9 @@ BoxContainer::~BoxContainer()
void BoxContainer::readConfig( KConfig* config )
{
int counter = 0;
- while( config->hasGroup( QString( "korn-%1" ).arg( counter ) ) )
+ while( config->hasGroup( TQString( "korn-%1" ).arg( counter ) ) )
{
- config->setGroup( QString( "korn-%1" ).arg( counter ) );
+ config->setGroup( TQString( "korn-%1" ).arg( counter ) );
BoxContainerItem *item = newBoxInstance();
item->readConfig( config, counter );
addItem( item );
@@ -76,7 +76,7 @@ void BoxContainer::slotShowConfiguration()
void BoxContainer::addItem( BoxContainerItem* item )
{
- connect( item, SIGNAL( showConfiguration() ), this, SLOT( slotShowConfiguration() ) );
+ connect( item, TQT_SIGNAL( showConfiguration() ), this, TQT_SLOT( slotShowConfiguration() ) );
_items->append( item );
}