]> sigrok.org Git - pulseview.git/blobdiff - pv/widgets/sweeptimingwidget.cpp
Use bool literals for boolean values.
[pulseview.git] / pv / widgets / sweeptimingwidget.cpp
index b2c0e6370d44587ce88a2063704bc14bb3a7b54d..6e24d94839429ec961e19c99dbe65d1e9047930b 100644 (file)
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
+ * along with this program; if not, see <http://www.gnu.org/licenses/>.
  */
 
 #include "sweeptimingwidget.hpp"
 
 #include <cstdlib>
-
 #include <vector>
-
-#include <assert.h>
+#include <cassert>
 
 #include <extdef.h>
 
@@ -88,8 +85,7 @@ void SweepTimingWidget::show_list(const uint64_t *vals, size_t count)
        value_type_ = List;
 
        list_.clear();
-       for (size_t i = 0; i < count; i++)
-       {
+       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]));
@@ -142,8 +138,7 @@ 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;
 
@@ -159,7 +154,7 @@ uint64_t SweepTimingWidget::value() const
 
        default:
                // Unexpected value type
-               assert(0);
+               assert(false);
                return 0;
        }
 }