the description in the crash-dialog says:
"The application encountered a crash at address %u.\n\n"
"A snapshot of the present state of Code::Blocks has been saved to the directory cb-crash-recover inside your 'My Files' folder.
Hopefully, this will prevent you from losing recent modifications.\n\n"
but in reality a new user-folder is created (at least) on Windoze-systems in the system "Document and Settings" folder
LONG WINAPI CrashHandlerFunc(PEXCEPTION_POINTERS ExceptionInfo)
{
...
wxString path(ConfigManager::GetHomeFolder() + _T("cb-crash-recover"));
wxMkdir(ConfigManager::GetHomeFolder() + _T("cb-crash-recover"));
path << _T("/");
...
}
e.g. my system
Username = Cad
then ConfigManager::GetHomeFolder() returns "C:\Dokumente und Einstellungen\Cad"
(without Backslash at the end)
and the files are backed up to "C:\Dokumente und Einstellungen\Cadcb-crash-recover"
following the description in the crash-dialog it should be backed up to
"C:\Dokumente und Einstellungen\Cad\Eigene Dateien\cb-crash-revover"
is this what was intended originally ?
otherwise the explanantion in the crash-dialog should be updated accordingly.
thx
tiwag