You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.3 KiB
47 lines
1.3 KiB
12 years ago
|
// This file is generated by tdeconfig_compiler from test8b.kcfg.
|
||
15 years ago
|
// All changes you do to this file will be lost.
|
||
|
|
||
|
#include "test8b.h"
|
||
|
|
||
|
#include <kstaticdeleter.h>
|
||
|
|
||
|
Test8b *Test8b::mSelf = 0;
|
||
|
static KStaticDeleter<Test8b> staticTest8bDeleter;
|
||
|
|
||
|
Test8b *Test8b::self()
|
||
|
{
|
||
|
if ( !mSelf ) {
|
||
|
staticTest8bDeleter.setObject( mSelf, new Test8b() );
|
||
|
mSelf->readConfig();
|
||
|
}
|
||
|
|
||
|
return mSelf;
|
||
|
}
|
||
|
|
||
|
Test8b::Test8b( )
|
||
|
: Test8a()
|
||
|
{
|
||
|
mSelf = this;
|
||
13 years ago
|
setCurrentGroup( TQString::fromLatin1( "Group8b1" ) );
|
||
15 years ago
|
|
||
12 years ago
|
TDEConfigSkeleton::ItemUInt *itemSomething;
|
||
|
itemSomething = new TDEConfigSkeleton::ItemUInt( currentGroup(), TQString::fromLatin1( "Something" ), mSomething, 60 );
|
||
13 years ago
|
addItem( itemSomething, TQString::fromLatin1( "Something" ) );
|
||
15 years ago
|
|
||
13 years ago
|
setCurrentGroup( TQString::fromLatin1( "Group8b2" ) );
|
||
15 years ago
|
|
||
12 years ago
|
TDEConfigSkeleton::ItemBool *itemFooBoo;
|
||
|
itemFooBoo = new TDEConfigSkeleton::ItemBool( currentGroup(), TQString::fromLatin1( "FooBoo" ), mFooBoo, false );
|
||
13 years ago
|
addItem( itemFooBoo, TQString::fromLatin1( "FooBoo" ) );
|
||
12 years ago
|
TDEConfigSkeleton::ItemUInt *itemPort;
|
||
|
itemPort = new TDEConfigSkeleton::ItemUInt( currentGroup(), TQString::fromLatin1( "Port" ), mPort, 1000 );
|
||
13 years ago
|
addItem( itemPort, TQString::fromLatin1( "Port" ) );
|
||
15 years ago
|
}
|
||
|
|
||
|
Test8b::~Test8b()
|
||
|
{
|
||
|
if ( mSelf == this )
|
||
|
staticTest8bDeleter.setObject( mSelf, 0, false );
|
||
|
}
|
||
|
|