StoreSession: Support output formats other than srzip
[pulseview.git] / pv / prop / binding / binding.cpp
index 86318139673a72bb71d6f89010361519c7284a5c..062ce6676a34fbb2d6b218b9c358ba9e061f10af 100644 (file)
@@ -22,9 +22,9 @@
 
 #include <QFormLayout>
 
-#include <pv/prop/property.h>
+#include <pv/prop/property.hpp>
 
-#include "binding.h"
+#include "binding.hpp"
 
 using std::shared_ptr;
 
@@ -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);