From 14764da12f3808da0c40b643ac8224716f060729 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Tue, 19 Aug 2008 02:33:04 +0000 Subject: Remove weird virtual inheritance interface overlay thing from client in favour of wrappers. git-svn-id: http://svn.drobilla.net/lad/ingen@1445 a436a847-0d15-0410-975c-d299462d15a1 --- src/libs/gui/App.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/libs/gui/App.cpp') diff --git a/src/libs/gui/App.cpp b/src/libs/gui/App.cpp index 408b7503..64a89f8a 100644 --- a/src/libs/gui/App.cpp +++ b/src/libs/gui/App.cpp @@ -142,7 +142,8 @@ App::run(int argc, char** argv, Ingen::Shared::World* world) void -App::attach(SharedPtr client) +App::attach(SharedPtr client, + SharedPtr handle) { assert( ! _client); assert( ! _store); @@ -151,6 +152,7 @@ App::attach(SharedPtr client) _world->engine->register_client(client.get()); _client = client; + _handle = handle; _store = SharedPtr(new ClientStore(_world->engine, client)); _loader = SharedPtr(new ThreadedLoader(_world->engine)); @@ -171,6 +173,7 @@ App::detach() _loader.reset(); _store.reset(); _client.reset(); + _handle.reset(); _world->engine.reset(); } } -- cgit v1.2.1