summaryrefslogtreecommitdiffstats
path: root/src/libs/gui/NewSubpatchWindow.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs/gui/NewSubpatchWindow.hpp')
-rw-r--r--src/libs/gui/NewSubpatchWindow.hpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/libs/gui/NewSubpatchWindow.hpp b/src/libs/gui/NewSubpatchWindow.hpp
index d6ce65d7..d8fbde88 100644
--- a/src/libs/gui/NewSubpatchWindow.hpp
+++ b/src/libs/gui/NewSubpatchWindow.hpp
@@ -21,10 +21,11 @@
#include <libglademm/xml.h>
#include <gtkmm.h>
#include <raul/SharedPtr.hpp>
+#include "interface/GraphObject.hpp"
#include "client/PatchModel.hpp"
#include "client/PluginModel.hpp"
+using namespace Ingen::Shared;
using Ingen::Client::PatchModel;
-using Ingen::Client::MetadataMap;
namespace Ingen {
namespace GUI {
@@ -43,15 +44,15 @@ public:
void set_patch(SharedPtr<PatchModel> patch);
- void present(SharedPtr<PatchModel> patch, MetadataMap data);
+ void present(SharedPtr<PatchModel> patch, GraphObject::MetadataMap data);
private:
void name_changed();
void ok_clicked();
void cancel_clicked();
- MetadataMap _initial_data;
- SharedPtr<PatchModel> _patch;
+ GraphObject::MetadataMap _initial_data;
+ SharedPtr<PatchModel> _patch;
Gtk::Entry* _name_entry;
Gtk::Label* _message_label;