summaryrefslogtreecommitdiff
path: root/gtk2_ardour/ardour_ui.cc
diff options
context:
space:
mode:
Diffstat (limited to 'gtk2_ardour/ardour_ui.cc')
-rw-r--r--gtk2_ardour/ardour_ui.cc30
1 files changed, 15 insertions, 15 deletions
diff --git a/gtk2_ardour/ardour_ui.cc b/gtk2_ardour/ardour_ui.cc
index 1b108100d9..c5d2bf5c11 100644
--- a/gtk2_ardour/ardour_ui.cc
+++ b/gtk2_ardour/ardour_ui.cc
@@ -2396,20 +2396,6 @@ ARDOUR_UI::idle_load (const std::string& path)
}
}
-void
-ARDOUR_UI::loading_message (const std::string& msg)
-{
- if (ARDOUR_COMMAND_LINE::no_splash) {
- return;
- }
-
- if (!splash) {
- show_splash ();
- }
-
- splash->message (msg);
-}
-
/** @param quit_on_cancel true if exit() should be called if the user clicks `cancel' in the new session dialog */
int
ARDOUR_UI::get_session_parameters (bool quit_on_cancel, bool should_be_new, string load_template)
@@ -2814,7 +2800,7 @@ ARDOUR_UI::launch_manual ()
void
ARDOUR_UI::launch_reference ()
{
- PBD::open_uri("http://ardour.org/refmanual");
+ PBD::open_uri ("http://ardour.org/refmanual");
}
void
@@ -2833,6 +2819,20 @@ ARDOUR_UI::about_signal_response (int /*response*/)
}
void
+ARDOUR_UI::loading_message (const std::string& msg)
+{
+ if (ARDOUR_COMMAND_LINE::no_splash) {
+ return;
+ }
+
+ if (!splash) {
+ show_splash ();
+ }
+
+ splash->message (msg);
+}
+
+void
ARDOUR_UI::show_splash ()
{
if (splash == 0) {