summaryrefslogtreecommitdiff
path: root/gtk2_ardour/ardour_ui_startup.cc
diff options
context:
space:
mode:
Diffstat (limited to 'gtk2_ardour/ardour_ui_startup.cc')
-rw-r--r--gtk2_ardour/ardour_ui_startup.cc32
1 files changed, 1 insertions, 31 deletions
diff --git a/gtk2_ardour/ardour_ui_startup.cc b/gtk2_ardour/ardour_ui_startup.cc
index 38a0225f78..1310a89e4d 100644
--- a/gtk2_ardour/ardour_ui_startup.cc
+++ b/gtk2_ardour/ardour_ui_startup.cc
@@ -325,40 +325,10 @@ ARDOUR_UI::keyboard_settings () const
return node;
}
-
-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) {
- try {
- splash = new Splash;
- } catch (...) {
- return;
- }
- }
-
- splash->display ();
-}
-
void
ARDOUR_UI::hide_splash ()
{
- delete splash;
- splash = 0;
+ Splash::drop ();
}
void