-rw-r--r-- | korganizer/koprefs.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/korganizer/koprefs.cpp b/korganizer/koprefs.cpp index f1f1442..138028d 100644 --- a/korganizer/koprefs.cpp +++ b/korganizer/koprefs.cpp | |||
@@ -528,32 +528,34 @@ void KOPrefs::usrWriteConfig() | |||
528 | { | 528 | { |
529 | config()->setGroup("General"); | 529 | config()->setGroup("General"); |
530 | config()->writeEntry("Custom Categories",mCustomCategories); | 530 | config()->writeEntry("Custom Categories",mCustomCategories); |
531 | 531 | ||
532 | config()->setGroup("Personal Settings"); | 532 | config()->setGroup("Personal Settings"); |
533 | config()->writeEntry("user_name",mName); | 533 | config()->writeEntry("user_name",mName); |
534 | config()->writeEntry("user_email",mEmail); | 534 | config()->writeEntry("user_email",mEmail); |
535 | 535 | ||
536 | config()->setGroup("Category Colors"); | 536 | config()->setGroup("Category Colors"); |
537 | QDictIterator<QColor> it(mCategoryColors); | 537 | QDictIterator<QColor> it(mCategoryColors); |
538 | while (it.current()) { | 538 | while (it.current()) { |
539 | config()->writeEntry(it.currentKey(),*(it.current())); | 539 | config()->writeEntry(it.currentKey(),*(it.current())); |
540 | ++it; | 540 | ++it; |
541 | } | 541 | } |
542 | KConfig fc (locateLocal("config","kopicalendarrc")); | 542 | KConfig fc (locateLocal("config","kopicalendarrc")); |
543 | fc.setGroup("CC"); | 543 | fc.setGroup("CC"); |
544 | fc.deleteGroup( "CC"); | ||
545 | fc.setGroup("CC"); | ||
544 | fc.writeEntry("NumberCalendars",mCalendars.count()); | 546 | fc.writeEntry("NumberCalendars",mCalendars.count()); |
545 | int numCal = 1; | 547 | int numCal = 1; |
546 | int writeCal = 0; | 548 | int writeCal = 0; |
547 | while ( numCal < mNextAvailableCalendar ) { | 549 | while ( numCal < mNextAvailableCalendar ) { |
548 | KopiCalendarFile * kkf = mCalendars.first(); | 550 | KopiCalendarFile * kkf = mCalendars.first(); |
549 | while ( kkf ) { | 551 | while ( kkf ) { |
550 | //qDebug("cal num %d %d ", kkf->mCalNumber, numCal); | 552 | //qDebug("cal num %d %d ", kkf->mCalNumber, numCal); |
551 | if ( kkf->mCalNumber == numCal ) { | 553 | if ( kkf->mCalNumber == numCal ) { |
552 | ++writeCal; | 554 | ++writeCal; |
553 | //qDebug("Write calendar %d %d ", numCal , writeCal); | 555 | //qDebug("Write calendar %d %d ", numCal , writeCal); |
554 | QString prefix = "Cal_" + QString::number( writeCal ); | 556 | QString prefix = "Cal_" + QString::number( writeCal ); |
555 | fc.writeEntry( prefix+"_isStandard", kkf->isStandard ); | 557 | fc.writeEntry( prefix+"_isStandard", kkf->isStandard ); |
556 | fc.writeEntry( prefix+"_isEnabled", kkf->isEnabled ); | 558 | fc.writeEntry( prefix+"_isEnabled", kkf->isEnabled ); |
557 | fc.writeEntry( prefix+"_isAlarmEnabled", kkf->isAlarmEnabled ); | 559 | fc.writeEntry( prefix+"_isAlarmEnabled", kkf->isAlarmEnabled ); |
558 | fc.writeEntry( prefix+"_isReadOnly", kkf->isReadOnly ); | 560 | fc.writeEntry( prefix+"_isReadOnly", kkf->isReadOnly ); |
559 | fc.writeEntry( prefix+"_isRelative", kkf->isRelative ); | 561 | fc.writeEntry( prefix+"_isRelative", kkf->isRelative ); |