Fix some whitespace in frame_main.cpp

Originally committed to SVN as r5557.
This commit is contained in:
Thomas Goyne 2011-08-27 06:29:57 +00:00
parent fb1e6fcbaf
commit 27867421b2

View file

@ -623,17 +623,17 @@ void FrameMain::OnAutoSave(wxTimerEvent &) try {
StatusTimeout(_("File backup saved as \"") + dstpath.GetFullPath() + "\".");
}
}
catch (const agi::Exception& err) {
}
catch (const agi::Exception& err) {
StatusTimeout(lagi_wxString("Exception when attempting to autosave file: " + err.GetMessage()));
}
catch (wxString err) {
}
catch (wxString err) {
StatusTimeout("Exception when attempting to autosave file: " + err);
}
catch (const wchar_t *err) {
}
catch (const wchar_t *err) {
StatusTimeout("Exception when attempting to autosave file: " + wxString(err));
}
catch (...) {
}
catch (...) {
StatusTimeout("Unhandled exception when attempting to autosave file.");
}