I submit patch to BerliOS. SVN rev.4032 crash on startup without this patch.
http://developer.berlios.de/patch/index.php?func=detailpatch&patch_id=2243&group_id=5358 (http://developer.berlios.de/patch/index.php?func=detailpatch&patch_id=2243&group_id=5358)
Piece of code from this patch for explains:
- Manager::Get()->GetLogManager()->Log(_("Found %d lexers"), count);
+ Manager::Get()->GetLogManager()->Log(F(_("Found %d lexers"), count));
MinGW 3.4.5
wxWidgets 2.8.6
Now C::B worked succesfully.
svn 4632. I does edit topic subject.
Last revision when I used before 4632 - 4603. All versions after 4603 have crash on startup.
OS : Microsoft Windows XP Professional
Version: 5.1.2600 Service Pack 2 Build 2600
MinGW 3.4.5, wxWindows 2.8.6
Original line when I patched is:
Manager::Get()->GetLogManager()->Log(_("Found %d lexers"), count);
My new line is:
Manager::Get()->GetLogManager()->Log(F(_("Found %d lexers"), count));
Anybody can see method void EditorColourSet::LoadAvailableSets()
in sdk/editorcolourset.cpp
and will found then line 131 has difference with line 147. I have no comments more.