X-Git-Url: http://git.code-monkey.de/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fprop%2Fbinding%2Fbinding.cpp;h=062ce6676a34fbb2d6b218b9c358ba9e061f10af;hp=86318139673a72bb71d6f89010361519c7284a5c;hb=c1035a1452fa2aec5414975e83e531c10504b80c;hpb=e8d009288de28cb194bc7964f96677c2baf900c9 diff --git a/pv/prop/binding/binding.cpp b/pv/prop/binding/binding.cpp index 8631813..062ce66 100644 --- a/pv/prop/binding/binding.cpp +++ b/pv/prop/binding/binding.cpp @@ -22,9 +22,9 @@ #include -#include +#include -#include "binding.h" +#include "binding.hpp" using std::shared_ptr; @@ -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);