summaryrefslogtreecommitdiffstats
path: root/src/Store.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Store.cpp')
-rw-r--r--src/Store.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Store.cpp b/src/Store.cpp
index ae40bcc5..87a0315e 100644
--- a/src/Store.cpp
+++ b/src/Store.cpp
@@ -23,7 +23,7 @@ using namespace std;
namespace Ingen {
void
-Store::add(GraphObject* o)
+Store::add(Node* o)
{
if (find(o->path()) != end()) {
return;
@@ -72,7 +72,7 @@ Store::find_descendants_end(const const_iterator parent) const
}
Store::const_range
-Store::children_range(SharedPtr<const GraphObject> o) const
+Store::children_range(SharedPtr<const Node> o) const
{
const const_iterator parent = find(o->path());
if (parent != end()) {