Make member variable underscores a suffix instead of a prefix
[pulseview.git] / pv / widgets / sweeptimingwidget.h
index b66188fa31be5af876a5bdc114f5eaf8045205e3..5510865eb632f28680883c92f56e5f72682a1378 100644 (file)
@@ -55,18 +55,18 @@ public:
        uint64_t value() const;
        void set_value(uint64_t value);
 
-signals:
+Q_SIGNALS:
        void value_changed();
 
 private:
-       const char *const _suffix;
+       const char *const suffix_;
 
-       QHBoxLayout _layout;
+       QHBoxLayout layout_;
 
-       QDoubleSpinBox _value;
-       QComboBox _list;
+       QDoubleSpinBox value_;
+       QComboBox list_;
 
-       ValueType _value_type;
+       ValueType value_type_;
 };
 
 } // widgets