diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:53:50 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:53:50 +0000 |
commit | 7be55ffa061c026e35e2d6a0effe1161ddb0d41f (patch) | |
tree | 8474f9b444b2756228600050f07a7ff25de532b2 /korn/boxcontainer.cpp | |
parent | f587f20a6d09f1729dd0a8c1cd8ee0110aec7451 (diff) | |
download | tdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.tar.gz tdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1157655 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'korn/boxcontainer.cpp')
-rw-r--r-- | korn/boxcontainer.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/korn/boxcontainer.cpp b/korn/boxcontainer.cpp index e245004c7..934a47c53 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 ); } |