X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=pv%2Fprop%2Fint.cpp;h=f53d09666daf90f23e3d14e5a5f286946eb4ec2f;hb=aca9aa834c742ba70f49d1ac3eb2d1e02e759416;hp=fd3bfe4708e6a0cb95832e81643421945de5a5eb;hpb=c6246dc56ed01d7e99aa65ab88b8c191300b1ebd;p=pulseview.git diff --git a/pv/prop/int.cpp b/pv/prop/int.cpp index fd3bfe4..f53d096 100644 --- a/pv/prop/int.cpp +++ b/pv/prop/int.cpp @@ -14,12 +14,11 @@ * 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 . */ -#include -#include +#include +#include #include @@ -91,7 +90,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 @@ -141,10 +140,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); @@ -159,5 +157,5 @@ void Int::on_value_changed(int) commit(); } -} // prop -} // pv +} // namespace prop +} // namespace pv