X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=pv%2Fprop%2Fproperty.h;h=dd6d25bad37460d4e1fe9bac6992366a42933907;hb=8dbbc7f0b9ea59d0f0d62225772f8a56eee125f5;hp=b3aa1a690b00c3e29e74140317169bc5b2ac195e;hpb=f896568baff2904ef2a26ee082321f4f689a86b2;p=pulseview.git diff --git a/pv/prop/property.h b/pv/prop/property.h index b3aa1a6..dd6d25b 100644 --- a/pv/prop/property.h +++ b/pv/prop/property.h @@ -21,7 +21,7 @@ #ifndef PULSEVIEW_PV_PROP_PROPERTY_H #define PULSEVIEW_PV_PROP_PROPERTY_H -#include +#include #include #include @@ -37,8 +37,8 @@ class Property : public QObject Q_OBJECT; public: - typedef std::function Getter; - typedef std::function Setter; + typedef std::function Getter; + typedef std::function Setter; protected: Property(QString name, Getter getter, Setter setter); @@ -53,11 +53,11 @@ public: virtual void commit() = 0; protected: - const Getter _getter; - const Setter _setter; + const Getter getter_; + const Setter setter_; private: - QString _name; + QString name_; }; } // prop