]> sigrok.org Git - pulseview.git/blobdiff - pv/prop/int.cpp
AnalogSignal: Make threshold neutral area darker
[pulseview.git] / pv / prop / int.cpp
index 415ee866f6f764df6b02761d6c337a05cdd13a85..2930a3ea1e8c96b5d0091e6c2b640050ecb5d09f 100644 (file)
@@ -17,8 +17,8 @@
  * along with this program; if not, see <http://www.gnu.org/licenses/>.
  */
 
-#include <cstdint>
 #include <cassert>
+#include <cstdint>
 
 #include <QSpinBox>
 
@@ -33,11 +33,12 @@ namespace pv {
 namespace prop {
 
 Int::Int(QString name,
+       QString desc,
        QString suffix,
        optional< pair<int64_t, int64_t> > range,
        Getter getter,
        Setter setter) :
-       Property(name, getter, setter),
+       Property(name, desc, getter, setter),
        suffix_(suffix),
        range_(range),
        spin_box_(nullptr)
@@ -93,7 +94,7 @@ QWidget* Int::get_widget(QWidget *parent, bool auto_commit)
                assert(false);
        }
 
-       // @todo Sigrok supports 64-bit quantities, but Qt does not have a
+       // @todo sigrok supports 64-bit quantities, but Qt does not have a
        // standard widget to allow the values to be modified over the full
        // 64-bit range on 32-bit machines. To solve the issue we need a
        // custom widget.