Revert 431412. dfaure says: "a static deleter is called VERY late. Don't do any config writing from there...."

svn path=/trunk/KDE/kdepim/; revision=434071
wilder-work
Ingo Klcker 21 years ago
parent 5d6539fd93
commit 44551d84a3
  1. 6
      kmmsgdict.cpp

@ -159,9 +159,6 @@ KMMsgDict::KMMsgDict()
KMMsgDict::~KMMsgDict()
{
// Remember how many items we put into the dict this time so we can create
// it with an appropriate size next time.
GlobalSettings::self()->setMsgDictSizeHint( dict->size() );
delete dict;
}
@ -426,6 +423,9 @@ int KMMsgDict::readFolderIds( FolderStorage& storage )
rentry->set(index, entry);
}
// Remember how many items we put into the dict this time so we can create
// it with an appropriate size next time.
GlobalSettings::setMsgDictSizeHint( GlobalSettings::msgDictSizeHint() + count );
fclose(fp);
storage.setRDict(rentry);

Loading…
Cancel
Save