From 8ba6bb943889bfdd58cf4a971a152041c1199cfe Mon Sep 17 00:00:00 2001 From: David Robillard Date: Mon, 18 Apr 2011 12:47:15 +0000 Subject: Put engine code in new Ingen::Engine namespace. Put core interfaces in Ingen namespace (not Ingen::Shared). git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@3159 a436a847-0d15-0410-975c-d299462d15a1 --- src/gui/App.cpp | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'src/gui/App.cpp') diff --git a/src/gui/App.cpp b/src/gui/App.cpp index 5462116a..0ed8b10a 100644 --- a/src/gui/App.cpp +++ b/src/gui/App.cpp @@ -35,6 +35,7 @@ #include "client/ObjectModel.hpp" #include "client/PatchModel.hpp" #include "client/ClientStore.hpp" +#include "client/SigClientInterface.hpp" #include "NodeModule.hpp" #include "ControlPanel.hpp" #include "SubpatchModule.hpp" @@ -160,9 +161,9 @@ void App::attach(SharedPtr client, SharedPtr handle) { - assert( ! _client); - assert( ! _store); - assert( ! _loader); + assert(!_client); + assert(!_store); + assert(!_loader); _world->engine()->register_client(client.get()); @@ -372,7 +373,7 @@ App::icon_destroyed(void* data) } bool -App::can_control(const Shared::Port* port) const +App::can_control(const Ingen::Port* port) const { return port->is_a(PortType::CONTROL) || (port->is_a(PortType::VALUE) -- cgit v1.2.1