]> sigrok.org Git - pulseview.git/blobdiff - pv/widgets/sweeptimingwidget.cpp
Update property widgets before showing device config popup
[pulseview.git] / pv / widgets / sweeptimingwidget.cpp
index 9e78cae9fbc0f7fb5aca83f430c96ad7a696363a..b4943225dd8d44ddae54fad59b7231e70a8c6e3f 100644 (file)
 
 #include "sweeptimingwidget.hpp"
 
+#include <cassert>
 #include <cstdlib>
-
 #include <vector>
 
-#include <assert.h>
-
 #include <extdef.h>
 
 using std::abs;
@@ -89,8 +87,7 @@ void SweepTimingWidget::show_list(const uint64_t *vals, size_t count)
        list_.clear();
        for (size_t i = 0; i < count; i++) {
                char *const s = sr_si_string_u64(vals[i], suffix_);
-               list_.addItem(QString::fromUtf8(s),
-                       qVariantFromValue(vals[i]));
+               list_.addItem(QString::fromUtf8(s), qVariantFromValue(vals[i]));
                g_free(s);
        }
 
@@ -140,23 +137,20 @@ void SweepTimingWidget::show_125_list(uint64_t min, uint64_t max)
 
 uint64_t SweepTimingWidget::value() const
 {
-       switch(value_type_) {
+       switch (value_type_) {
        case None:
                return 0;
-
        case MinMaxStep:
                return (uint64_t)value_.value();
-
        case List:
        {
                const int index = list_.currentIndex();
                return (index >= 0) ? list_.itemData(
                        index).value<uint64_t>() : 0;
        }
-
        default:
                // Unexpected value type
-               assert(0);
+               assert(false);
                return 0;
        }
 }
@@ -180,5 +174,5 @@ void SweepTimingWidget::set_value(uint64_t value)
        list_.setCurrentIndex(best_match);
 }
 
-} // widgets
-} // pv
+}  // namespace widgets
+}  // namespace pv