]> sigrok.org Git - pulseview.git/blobdiff - pv/view/cursorheader.cpp
Signal: Save and load signal names as UTF-8 strings.
[pulseview.git] / pv / view / cursorheader.cpp
index 3f25e2123b5aa87043d53285ebcffde4353a130d..3e2944e09269304a823db91b49fe6ecaef06f2da 100644 (file)
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
  */
 
-#include "cursorheader.h"
+#include "cursorheader.hpp"
 
-#include "ruler.h"
-#include "view.h"
+#include "ruler.hpp"
+#include "view.hpp"
 
 #include <QApplication>
 #include <QFontMetrics>
 #include <QMouseEvent>
 
-#include <pv/widgets/popup.h>
+#include <pv/widgets/popup.hpp>
 
 using std::shared_ptr;
 
@@ -70,16 +70,13 @@ void CursorHeader::paintEvent(QPaintEvent*)
        QPainter p(this);
        p.setRenderHint(QPainter::Antialiasing);
 
-       unsigned int prefix = pv::view::Ruler::calculate_tick_spacing(
-               p, view_.scale(), view_.offset()).second;
-
        // Draw the cursors
        if (view_.cursors_shown()) {
                // The cursor labels are not drawn with the arrows exactly on the
                // bottom line of the widget, because then the selection shadow
                // would be clipped away.
                const QRect r = rect().adjusted(0, 0, 0, -BaselineOffset);
-               view_.cursors().draw_markers(p, r, prefix);
+               view_.cursors().draw_markers(p, r);
        }
 }