X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=pv%2Fwidgets%2Fsweeptimingwidget.cpp;h=be2c8b895496eb0d2fa5994e1605533ad45c91d7;hb=f54fc97e8c4c20b7a37f10b8fd125407eba17226;hp=1c1581bb7c086ae649fd2e2f753877004eb66f37;hpb=8dbbc7f0b9ea59d0f0d62225772f8a56eee125f5;p=pulseview.git diff --git a/pv/widgets/sweeptimingwidget.cpp b/pv/widgets/sweeptimingwidget.cpp index 1c1581b..be2c8b8 100644 --- a/pv/widgets/sweeptimingwidget.cpp +++ b/pv/widgets/sweeptimingwidget.cpp @@ -14,17 +14,14 @@ * 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 "sweeptimingwidget.h" +#include "sweeptimingwidget.hpp" #include - #include - -#include +#include #include @@ -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;