mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 14:54:56 +01:00
NO-OP: newlines to spread out a series of catch() statements
This commit is contained in:
parent
feb80d39f4
commit
c6fc0d8283
1 changed files with 4 additions and 0 deletions
|
|
@ -437,6 +437,7 @@ ARDOUR_UI::load_session_stage_two (const std::string& path, const std::string& s
|
|||
}
|
||||
goto out;
|
||||
}
|
||||
|
||||
catch (SessionException const& e) {
|
||||
gchar* escaped_error_txt = 0;
|
||||
stringstream ss;
|
||||
|
|
@ -465,6 +466,7 @@ ARDOUR_UI::load_session_stage_two (const std::string& path, const std::string& s
|
|||
|
||||
goto out;
|
||||
}
|
||||
|
||||
catch (ARDOUR::WrongProgram const & wp) {
|
||||
|
||||
std::string first_word = wp.creator.substr (0, wp.creator.find (' '));
|
||||
|
|
@ -480,6 +482,7 @@ ARDOUR_UI::load_session_stage_two (const std::string& path, const std::string& s
|
|||
msg.hide ();
|
||||
goto out;
|
||||
}
|
||||
|
||||
catch (Glib::Error const& e) {
|
||||
const std::string& glib_what = e.what();
|
||||
gchar* escaped_error_txt = 0;
|
||||
|
|
@ -511,6 +514,7 @@ ARDOUR_UI::load_session_stage_two (const std::string& path, const std::string& s
|
|||
|
||||
goto out;
|
||||
}
|
||||
|
||||
catch (...) {
|
||||
gchar* escaped_error_txt = 0;
|
||||
stringstream ss;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue