because sometimes there are good reasons for not doing things the way a windows progr...
authorPaul Davis <paul@linuxaudiosystems.com>
Wed, 12 Dec 2012 20:03:41 +0000 (20:03 +0000)
committerPaul Davis <paul@linuxaudiosystems.com>
Wed, 12 Dec 2012 20:03:41 +0000 (20:03 +0000)
git-svn-id: svn://localhost/ardour2/branches/3.0@13652 d708f5d6-7413-0410-9779-e7cbd77b26cf

libs/ardour/ardour/ardour.h
libs/ardour/globals.cc
libs/ardour/session.cc

index 03de3965ec9f82251df3cb0abb224f03052eda8a..c19d4332e8dd5356513d949f6ce404e1b131582e 100644 (file)
@@ -48,7 +48,6 @@ namespace ARDOUR {
        class AudioEngine;
 
        extern PBD::Signal1<void,std::string> BootMessage;
-       extern PBD::Signal0<void> GUIIdle;
 
        int init (bool with_vst, bool try_optimization);
        void init_post_engine ();
index 2b0bc0553441e2d5fccd3e892dc99ad4d492bad3..085dfc8e5906345d25cd5274cac2f31f9e3b8cb0 100644 (file)
@@ -113,7 +113,6 @@ mix_buffers_with_gain_t ARDOUR::mix_buffers_with_gain = 0;
 mix_buffers_no_gain_t   ARDOUR::mix_buffers_no_gain = 0;
 
 PBD::Signal1<void,std::string> ARDOUR::BootMessage;
-PBD::Signal0<void> ARDOUR::GUIIdle;
 
 namespace ARDOUR {
 extern void setup_enum_writer ();
index 3b46ad3be14258a6fd9d06b424ca4cc4a80d90cf..4062537e37332f37f9cc9ed57b62a1c049f60f1e 100644 (file)
@@ -2012,11 +2012,8 @@ Session::new_audio_route (int input_channels, int output_channels, RouteGroup* r
                        bus->add_internal_return ();
 
                        ret.push_back (bus);
-                       
-                       ARDOUR::GUIIdle ();
                }
 
-
                catch (failed_constructor &err) {
                        error << _("Session: could not create new audio route.") << endmsg;
                        goto failure;
@@ -2244,8 +2241,6 @@ Session::add_routes_inner (RouteList& new_routes, bool input_auto_connect, bool
                                order++;
                        }
                }
-
-               ARDOUR::GUIIdle ();
        }
 
        if (_monitor_out && IO::connecting_legal) {