]> sigrok.org Git - pulseview.git/blobdiff - pv/prop/int.cpp
Trace: Removed coloured_bg state
[pulseview.git] / pv / prop / int.cpp
index 7fd4aeeffa2af3ceeb536a29f1365e5427f4484a..98b23ba6386401adc172817e188178bb8d0d4f78 100644 (file)
@@ -17,8 +17,8 @@
  * along with this program; if not, see <http://www.gnu.org/licenses/>.
  */
 
-#include <stdint.h>
-#include <assert.h>
+#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)
@@ -90,7 +91,7 @@ QWidget* Int::get_widget(QWidget *parent, bool auto_commit)
                range_min = 0, range_max = UINT64_MAX;
        } else {
                // Unexpected value type.
-               assert(0);
+               assert(false);
        }
 
        // @todo Sigrok supports 64-bit quantities, but Qt does not have a
@@ -140,10 +141,9 @@ void Int::commit()
                new_value = g_variant_new_int64(spin_box_->value());
        else if (g_variant_type_equal(type, G_VARIANT_TYPE_UINT64))
                new_value = g_variant_new_uint64(spin_box_->value());
-       else
-       {
+       else {
                // Unexpected value type.
-               assert(0);
+               assert(false);
        }
 
        assert(new_value);
@@ -158,5 +158,5 @@ void Int::on_value_changed(int)
        commit();
 }
 
-} // prop
-} // pv
+}  // namespace prop
+}  // namespace pv