diff options
author | David Robillard <d@drobilla.net> | 2010-02-26 05:40:58 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2010-02-26 05:40:58 +0000 |
commit | fe61806905a86e7513df64d59ec8b4d31f184a33 (patch) | |
tree | 85176ff9a53fd1a6e120e7c5c4055a7b38c4a4c9 /src/gui | |
parent | 9b69b141af8bfdc5bdb5d12e3fde0bbc0136cc92 (diff) | |
download | ingen-fe61806905a86e7513df64d59ec8b4d31f184a33.tar.gz ingen-fe61806905a86e7513df64d59ec8b4d31f184a33.tar.bz2 ingen-fe61806905a86e7513df64d59ec8b4d31f184a33.zip |
Remove request_all_objects from EngineInterface (and RequestAllObjects event from engine),
a vestigial equivalent to get(Path("/")).
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2503 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/ConnectWindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/ConnectWindow.cpp b/src/gui/ConnectWindow.cpp index 281fa274..0d8c8e76 100644 --- a/src/gui/ConnectWindow.cpp +++ b/src/gui/ConnectWindow.cpp @@ -445,7 +445,7 @@ ConnectWindow::gtk_callback() } } } else if (_connect_stage == 2) { - App::instance().engine()->request_all_objects(); + App::instance().engine()->get(Path("/")); if (_widgets_loaded) _progress_label->set_text(string("Requesting root patch...")); ++_connect_stage; |