kitchensync
prefs_base.cpp00001
00002
00003
00004 #include "prefs_base.h"
00005
00006 #include <klocale.h>
00007
00008 using namespace KSync;
00009
00010 PrefsBase::PrefsBase( )
00011 : KPimPrefs( QString::fromLatin1( "kitchensyncrc" ) )
00012 {
00013 setCurrentGroup( QString::fromLatin1( "Profiles" ) );
00014
00015 mCurrentProfileItem = new KConfigSkeleton::ItemInt( currentGroup(), QString::fromLatin1( "CurrentProfile" ), mCurrentProfile, 0 );
00016 mCurrentProfileItem->setLabel( i18n("CurrentProfile") );
00017 addItem( mCurrentProfileItem, QString::fromLatin1( "CurrentProfile" ) );
00018 }
00019
00020 PrefsBase::~PrefsBase()
00021 {
00022 }
00023
|