X-Git-Url: http://git.code-monkey.de/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fprop%2Fbinding%2Fbinding.cpp;h=0bc9854c4c032a34cb8f444b80af68aa4093b6de;hp=86318139673a72bb71d6f89010361519c7284a5c;hb=8dbbc7f0b9ea59d0f0d62225772f8a56eee125f5;hpb=2a21747e9daac2a45cd9a5ceb9a351f9775c5704 diff --git a/pv/prop/binding/binding.cpp b/pv/prop/binding/binding.cpp index 8631813..0bc9854 100644 --- a/pv/prop/binding/binding.cpp +++ b/pv/prop/binding/binding.cpp @@ -34,12 +34,12 @@ namespace binding { const std::vector< std::shared_ptr >& Binding::properties() { - return _properties; + return properties_; } void Binding::commit() { - for (shared_ptr p : _properties) { + for (shared_ptr p : properties_) { assert(p); p->commit(); } @@ -50,7 +50,7 @@ void Binding::add_properties_to_form(QFormLayout *layout, { assert(layout); - for (shared_ptr p : _properties) + for (shared_ptr p : properties_) { assert(p);