]> sigrok.org Git - pulseview.git/blobdiff - pv/prop/binding/binding.cpp
Make member variable underscores a suffix instead of a prefix
[pulseview.git] / pv / prop / binding / binding.cpp
index 86318139673a72bb71d6f89010361519c7284a5c..0bc9854c4c032a34cb8f444b80af68aa4093b6de 100644 (file)
@@ -34,12 +34,12 @@ namespace binding {
 
 const std::vector< std::shared_ptr<Property> >& Binding::properties()
 {
-       return _properties;
+       return properties_;
 }
 
 void Binding::commit()
 {
-       for (shared_ptr<pv::prop::Property> p : _properties) {
+       for (shared_ptr<pv::prop::Property> p : properties_) {
                assert(p);
                p->commit();
        }
@@ -50,7 +50,7 @@ void Binding::add_properties_to_form(QFormLayout *layout,
 {
        assert(layout);
 
-       for (shared_ptr<pv::prop::Property> p : _properties)
+       for (shared_ptr<pv::prop::Property> p : properties_)
        {
                assert(p);