summaryrefslogtreecommitdiffstats
path: root/ingen
diff options
context:
space:
mode:
Diffstat (limited to 'ingen')
-rw-r--r--ingen/DataAccess.hpp2
-rw-r--r--ingen/InstanceAccess.hpp2
-rw-r--r--ingen/Node.hpp4
3 files changed, 2 insertions, 6 deletions
diff --git a/ingen/DataAccess.hpp b/ingen/DataAccess.hpp
index 730cf921..c3a6a625 100644
--- a/ingen/DataAccess.hpp
+++ b/ingen/DataAccess.hpp
@@ -40,7 +40,7 @@ struct DataAccess : public Ingen::LV2Features::Feature
return SPtr<LV2_Feature>();
}
- Node* store_node = world->store()->get(node->path());
+ Node* store_node = world->store()->get(node->uri());
if (!store_node) {
return SPtr<LV2_Feature>();
}
diff --git a/ingen/InstanceAccess.hpp b/ingen/InstanceAccess.hpp
index d30ebf1d..47409a05 100644
--- a/ingen/InstanceAccess.hpp
+++ b/ingen/InstanceAccess.hpp
@@ -32,7 +32,7 @@ struct InstanceAccess : public Ingen::LV2Features::Feature
return SPtr<LV2_Feature>();
}
- Node* store_node = world->store()->get(node->path());
+ Node* store_node = world->store()->get(node->uri());
if (!store_node) {
return SPtr<LV2_Feature>();
}
diff --git a/ingen/Node.hpp b/ingen/Node.hpp
index 5f8e0bc6..326f3e3c 100644
--- a/ingen/Node.hpp
+++ b/ingen/Node.hpp
@@ -62,10 +62,6 @@ public:
// Plugin blocks only
virtual bool save_state(const std::string& dir) const { return false; }
- // All objects
- virtual const Raul::Path& path() const = 0;
- virtual const Raul::Symbol& symbol() const = 0;
-
protected:
Node(const URIs& uris, const Raul::Path& path)
: Resource(uris, path_to_uri(path))