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/gui/PortMenu.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/gui/PortMenu.cpp') diff --git a/src/gui/PortMenu.cpp b/src/gui/PortMenu.cpp index 60ce612d..63bd046c 100644 --- a/src/gui/PortMenu.cpp +++ b/src/gui/PortMenu.cpp @@ -130,10 +130,10 @@ PortMenu::on_menu_reset_range() SPtr model = dynamic_ptr_cast(_object); // Remove lv2:minimum and lv2:maximum properties - Resource::Properties remove; - remove.insert({uris.lv2_minimum, Resource::Property(uris.patch_wildcard)}); - remove.insert({uris.lv2_maximum, Resource::Property(uris.patch_wildcard)}); - _app->interface()->delta(_object->uri(), remove, Resource::Properties()); + Properties remove; + remove.insert({uris.lv2_minimum, Property(uris.patch_wildcard)}); + remove.insert({uris.lv2_maximum, Property(uris.patch_wildcard)}); + _app->interface()->delta(_object->uri(), remove, Properties()); } void -- cgit v1.2.1