]> sigrok.org Git - pulseview.git/blobdiff - pv/prop/int.hpp
Fix #1567 by showing a custom text for the minimum range's value
[pulseview.git] / pv / prop / int.hpp
index f6b7c2d1f1642d64a55a575fbcd7100618cd3c46..1f6a64ca503fddf069090f9c9e03e2eaa44b2bc6 100644 (file)
@@ -35,12 +35,12 @@ namespace prop {
 
 class Int : public Property
 {
-       Q_OBJECT;
+       Q_OBJECT
 
 public:
        Int(QString name, QString desc, QString suffix,
                boost::optional< pair<int64_t, int64_t> > range,
-               Getter getter, Setter setter);
+               Getter getter, Setter setter, QString special_value_text = "");
 
        virtual ~Int() = default;
 
@@ -53,7 +53,7 @@ private Q_SLOTS:
        void on_value_changed(int);
 
 private:
-       const QString suffix_;
+       const QString suffix_, special_value_text_;
        const boost::optional< pair<int64_t, int64_t> > range_;
 
        Glib::VariantBase value_;