summaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2012-12-12 20:03:41 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2012-12-12 20:03:41 +0000
commit37c7d0cbc1bd48647a993852561fd934481a0429 (patch)
treedb09666e4d3b27d2a2c292a0f0aeaa091e4247f2 /libs
parentfa746f4d9768f4101713dd8af75e7e8d10107b57 (diff)
because sometimes there are good reasons for not doing things the way a windows programmer would
git-svn-id: svn://localhost/ardour2/branches/3.0@13652 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs')
-rw-r--r--libs/ardour/ardour/ardour.h1
-rw-r--r--libs/ardour/globals.cc1
-rw-r--r--libs/ardour/session.cc5
3 files changed, 0 insertions, 7 deletions
diff --git a/libs/ardour/ardour/ardour.h b/libs/ardour/ardour/ardour.h
index 03de3965ec..c19d4332e8 100644
--- a/libs/ardour/ardour/ardour.h
+++ b/libs/ardour/ardour/ardour.h
@@ -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 ();
diff --git a/libs/ardour/globals.cc b/libs/ardour/globals.cc
index 2b0bc05534..085dfc8e59 100644
--- a/libs/ardour/globals.cc
+++ b/libs/ardour/globals.cc
@@ -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 ();
diff --git a/libs/ardour/session.cc b/libs/ardour/session.cc
index 3b46ad3be1..4062537e37 100644
--- a/libs/ardour/session.cc
+++ b/libs/ardour/session.cc
@@ -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) {