diff options
Diffstat (limited to 'src/server/GraphObjectImpl.cpp')
-rw-r--r-- | src/server/GraphObjectImpl.cpp | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/src/server/GraphObjectImpl.cpp b/src/server/GraphObjectImpl.cpp index 0b66d05e..cdb299ee 100644 --- a/src/server/GraphObjectImpl.cpp +++ b/src/server/GraphObjectImpl.cpp @@ -30,9 +30,9 @@ namespace Server { GraphObjectImpl::GraphObjectImpl(Ingen::URIs& uris, GraphObjectImpl* parent, const Raul::Symbol& symbol) - : GraphObject(uris, parent ? parent->path().child(symbol) : "/") + : GraphObject(uris, parent ? parent->path().child(symbol) : Raul::Path("/")) , _parent(parent) - , _path(parent ? parent->path().child(symbol) : "/") + , _path(parent ? parent->path().child(symbol) : Raul::Path("/")) , _symbol(symbol) { } @@ -52,12 +52,5 @@ GraphObjectImpl::parent_patch() const return dynamic_cast<PatchImpl*>((NodeImpl*)_parent); } -SharedPtr<GraphObject> -GraphObjectImpl::find_child(const std::string& name) const -{ - Raul::error("GraphObjectImpl::find_child called\n"); - return SharedPtr<GraphObject>(); -} - } // namespace Server } // namespace Ingen |