The problem seems in language (LoadDefaultSettings at codestatconfig.cpp:224):
Actually, I'm leaning toward the fact that "languages" in
"LoadSetting(languages)" in the following code has never been allocated. But I
can't prove it yet.
The only allocation of languages is in the routine Execute()
which is never executed when the Editor/Settings routines
invokes CodeStatConfigDlg
I've got to figure out why "LoadSettings(languages)" doesn't get an error
from the compiler.
CodeStatConfigDlg::CodeStatConfigDlg(wxWindow* parent)
{
wxXmlResource::Get()->LoadPanel(this, parent, _("dlgCodeStatConfig"));
// Load the languages parameters
nb_languages = LoadSettings(languages);
ReInitDialog();
}