mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 15:25:01 +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;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
||||||
catch (SessionException const& e) {
|
catch (SessionException const& e) {
|
||||||
gchar* escaped_error_txt = 0;
|
gchar* escaped_error_txt = 0;
|
||||||
stringstream ss;
|
stringstream ss;
|
||||||
|
|
@ -465,6 +466,7 @@ ARDOUR_UI::load_session_stage_two (const std::string& path, const std::string& s
|
||||||
|
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
||||||
catch (ARDOUR::WrongProgram const & wp) {
|
catch (ARDOUR::WrongProgram const & wp) {
|
||||||
|
|
||||||
std::string first_word = wp.creator.substr (0, wp.creator.find (' '));
|
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 ();
|
msg.hide ();
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
||||||
catch (Glib::Error const& e) {
|
catch (Glib::Error const& e) {
|
||||||
const std::string& glib_what = e.what();
|
const std::string& glib_what = e.what();
|
||||||
gchar* escaped_error_txt = 0;
|
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;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
||||||
catch (...) {
|
catch (...) {
|
||||||
gchar* escaped_error_txt = 0;
|
gchar* escaped_error_txt = 0;
|
||||||
stringstream ss;
|
stringstream ss;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue