Summary: | away messages aren't saved between sessions | ||
---|---|---|---|
Product: | [Unmaintained] kopete | Reporter: | Pino Toscano <pino> |
Component: | general | Assignee: | Kopete Developers <kopete-bugs-null> |
Status: | RESOLVED FIXED | ||
Severity: | normal | ||
Priority: | NOR | ||
Version First Reported In: | 0.9.1 | ||
Target Milestone: | --- | ||
Platform: | unspecified | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
Pino Toscano
2005-01-25 12:00:53 UTC
CVS commit by ogoffart: Fix Bug 97857: away messages aren't saved between sessions BUG: 97857 It's a conflict with the old settings which were not removed. The problem is fixed now, in KDE 3.4 If you can't wait, open your kopeterc, and remove every away messages from there. M +5 -8 kopeteaway.cpp 1.43 --- kdenetwork/kopete/libkopete/kopeteaway.cpp #1.42:1.43 @@ -135,8 +135,9 @@ Kopete::Away::Away() : QObject( kapp , " config->setGroup("Away Messages"); - /* - * Old config format - */ - if(config->hasKey("Titles")) + if(config->hasKey("Messages")) + { + d->awayMessageList = config->readListEntry("Messages"); + } + else if(config->hasKey("Titles")) // Old config format { QStringList titles = config->readListEntry("Titles"); // Get the titles @@ -149,8 +150,4 @@ Kopete::Away::Away() : QObject( kapp , " save(); } - else if(config->hasKey("Messages")) - { - d->awayMessageList = config->readListEntry("Messages"); - } else { |