From fa6bb9afe8fcf2b0b8348495b9c4e1d6425136f0 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 15 Feb 2017 23:18:59 +0100 Subject: Move Properties out of Resource --- src/server/DuplexPort.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/server/DuplexPort.cpp') diff --git a/src/server/DuplexPort.cpp b/src/server/DuplexPort.cpp index 0fa11a72..e1ef6b26 100644 --- a/src/server/DuplexPort.cpp +++ b/src/server/DuplexPort.cpp @@ -93,9 +93,9 @@ DuplexPort::duplicate(Engine& engine, } void -DuplexPort::inherit_neighbour(const PortImpl* port, - Resource::Properties& remove, - Resource::Properties& add) +DuplexPort::inherit_neighbour(const PortImpl* port, + Properties& remove, + Properties& add) { const URIs& uris = _bufs.uris(); @@ -113,7 +113,7 @@ DuplexPort::inherit_neighbour(const PortImpl* port, add.insert(std::make_pair(uris.lv2_maximum, port->maximum())); } } else if (_type == PortType::ATOM) { - for (Resource::Properties::const_iterator i = port->properties().find( + for (Properties::const_iterator i = port->properties().find( uris.atom_supports); i != port->properties().end() && i->first == uris.atom_supports; ++i) { -- cgit v1.2.1