summaryrefslogtreecommitdiffstats
path: root/src/libs/gui/LoadRemotePatchWindow.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs/gui/LoadRemotePatchWindow.hpp')
-rw-r--r--src/libs/gui/LoadRemotePatchWindow.hpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/libs/gui/LoadRemotePatchWindow.hpp b/src/libs/gui/LoadRemotePatchWindow.hpp
index 2afef975..59b037d2 100644
--- a/src/libs/gui/LoadRemotePatchWindow.hpp
+++ b/src/libs/gui/LoadRemotePatchWindow.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 {
@@ -62,7 +63,7 @@ public:
void set_replace() { _replace = true; }
void set_merge() { _replace = false; }
- void present(SharedPtr<PatchModel> patch, MetadataMap data);
+ void present(SharedPtr<PatchModel> patch, GraphObject::MetadataMap data);
private:
void patch_activated(const Gtk::TreeModel::Path& path, Gtk::TreeViewColumn* col);
@@ -71,7 +72,7 @@ private:
void open_clicked();
void cancel_clicked();
- MetadataMap _initial_data;
+ GraphObject::MetadataMap _initial_data;
SharedPtr<PatchModel> _patch;
bool _replace;