X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fview%2Fruler.cpp;h=f6ec4ac78d7d142a486d2347287bd4693816ca5c;hp=601e73b163a6ed84683ca8b3bcf9526ab3a8e048;hb=4cffac16f3fb0ced3450c7df9c02b2d35bcd01e1;hpb=3d79f521396c8e908fd237f5328153165099f5c3 diff --git a/pv/view/ruler.cpp b/pv/view/ruler.cpp index 601e73b1..f6ec4ac7 100644 --- a/pv/view/ruler.cpp +++ b/pv/view/ruler.cpp @@ -128,8 +128,7 @@ shared_ptr Ruler::get_mouse_over_item(const QPoint &pt) void Ruler::paintEvent(QPaintEvent*) { if (!tick_position_cache_) { - auto ffunc = [this](const pv::util::Timestamp& t) - { + auto ffunc = [this](const pv::util::Timestamp& t) { return format_time_with_distance( this->view_.tick_period(), t, @@ -226,9 +225,9 @@ Ruler::TickPositions Ruler::calculate_tick_positions( return tp; } -void Ruler::mouseDoubleClickEvent(QMouseEvent *e) +void Ruler::mouseDoubleClickEvent(QMouseEvent *event) { - view_.add_flag(view_.offset() + ((double)e->x() + 0.5) * view_.scale()); + view_.add_flag(view_.offset() + ((double)event->x() + 0.5) * view_.scale()); } void Ruler::draw_hover_mark(QPainter &p, int text_height)