From 2cb36f0265a391388b6edf988d919911b79aca4d Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 7 Oct 2007 19:00:30 +0000 Subject: Begin using shared virtual Node interface client side. git-svn-id: http://svn.drobilla.net/lad/ingen@836 a436a847-0d15-0410-975c-d299462d15a1 --- src/libs/gui/LoadPatchWindow.hpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'src/libs/gui/LoadPatchWindow.hpp') diff --git a/src/libs/gui/LoadPatchWindow.hpp b/src/libs/gui/LoadPatchWindow.hpp index 3524ce16..9a4cf210 100644 --- a/src/libs/gui/LoadPatchWindow.hpp +++ b/src/libs/gui/LoadPatchWindow.hpp @@ -21,10 +21,11 @@ #include #include #include +#include "interface/GraphObject.hpp" #include "client/PluginModel.hpp" #include "client/PatchModel.hpp" using Ingen::Client::PatchModel; -using Ingen::Client::MetadataMap; +using namespace Ingen::Shared; namespace Ingen { namespace GUI { @@ -50,7 +51,7 @@ public: void set_replace() { _replace = true; } void set_merge() { _replace = false; } - void present(SharedPtr patch, MetadataMap data); + void present(SharedPtr patch, GraphObject::MetadataMap data); protected: void on_show(); @@ -61,7 +62,7 @@ private: void ok_clicked(); void cancel_clicked(); - MetadataMap _initial_data; + GraphObject::MetadataMap _initial_data; SharedPtr _patch; bool _replace; -- cgit v1.2.1