From acaab5ca7ce6869b8192de4f98c9f075fd17690e Mon Sep 17 00:00:00 2001 From: David Robillard Date: Tue, 24 May 2011 23:29:42 +0000 Subject: Remove dependence on protocol-specific client headers in GUI code. In other words, remove need for protocol-specific (and library dependent) headers to be in public headers... git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@3318 a436a847-0d15-0410-975c-d299462d15a1 --- src/gui/App.cpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'src/gui/App.cpp') diff --git a/src/gui/App.cpp b/src/gui/App.cpp index 9d7fffc1..f1e590cb 100644 --- a/src/gui/App.cpp +++ b/src/gui/App.cpp @@ -150,8 +150,7 @@ App::run() } void -App::attach(SharedPtr client, - SharedPtr handle) +App::attach(SharedPtr client) { assert(!_client); assert(!_store); @@ -160,7 +159,6 @@ App::attach(SharedPtr client, _world->engine()->register_client(client.get()); _client = client; - _handle = handle; _store = SharedPtr(new ClientStore(_world->uris(), _world->engine(), client)); _loader = SharedPtr(new ThreadedLoader(_world->uris(), _world->engine())); @@ -182,7 +180,6 @@ App::detach() _loader.reset(); _store.reset(); _client.reset(); - _handle.reset(); _world->set_engine(SharedPtr()); } } -- cgit v1.2.1