diff options
Diffstat (limited to 'src/gui/ObjectMenu.cpp')
-rw-r--r-- | src/gui/ObjectMenu.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/ObjectMenu.cpp b/src/gui/ObjectMenu.cpp index 5f287d15..9b1d095b 100644 --- a/src/gui/ObjectMenu.cpp +++ b/src/gui/ObjectMenu.cpp @@ -100,11 +100,11 @@ ObjectMenu::on_menu_learn() void ObjectMenu::on_menu_unlearn() { - Resource::Properties remove; + Properties remove; remove.insert(std::make_pair( _app->uris().midi_binding, - Resource::Property(_app->uris().patch_wildcard))); - _app->interface()->delta(_object->uri(), remove, Resource::Properties()); + Property(_app->uris().patch_wildcard))); + _app->interface()->delta(_object->uri(), remove, Properties()); } void |