diff options
Diffstat (limited to 'korn/boxcontainer.cpp')
-rw-r--r-- | korn/boxcontainer.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/korn/boxcontainer.cpp b/korn/boxcontainer.cpp index 72719812d..934a47c53 100644 --- a/korn/boxcontainer.cpp +++ b/korn/boxcontainer.cpp @@ -39,9 +39,9 @@ BoxContainer::~BoxContainer() void BoxContainer::readConfig( KConfig* config ) { int counter = 0; - while( config->hasGroup( TQString( "korn-%1" ).tqarg( counter ) ) ) + while( config->hasGroup( TQString( "korn-%1" ).arg( counter ) ) ) { - config->setGroup( TQString( "korn-%1" ).tqarg( counter ) ); + config->setGroup( TQString( "korn-%1" ).arg( counter ) ); BoxContainerItem *item = newBoxInstance(); item->readConfig( config, counter ); addItem( item ); |