forked from mia/Aegisub
Fix some whitespace in frame_main.cpp
Originally committed to SVN as r5557.
This commit is contained in:
parent
fb1e6fcbaf
commit
27867421b2
1 changed files with 22 additions and 22 deletions
|
@ -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.");
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue