]> sigrok.org Git - pulseview.git/blobdiff - pv/view/rowitem.cpp
RowItemOwner: Renamed appearance_changed to row_item_appearance_changed
[pulseview.git] / pv / view / rowitem.cpp
index 293460233a8fd96ff81888664d447cd8feb4418f..be694a970503e98b7d4fa718ecb27944235a1bd2 100644 (file)
@@ -20,9 +20,9 @@
 
 #include <assert.h>
 
-#include "view.h"
+#include "view.hpp"
 
-#include "rowitem.h"
+#include "rowitem.hpp"
 
 namespace pv {
 namespace view {
@@ -61,7 +61,7 @@ void RowItem::set_visual_v_offset(int v_offset)
        visual_v_offset_ = v_offset;
 
        if (owner_)
-               owner_->appearance_changed(true, true);
+               owner_->row_item_appearance_changed(true, true);
 }
 
 void RowItem::force_to_v_offset(int v_offset)
@@ -120,27 +120,6 @@ QPoint RowItem::point() const
        return QPoint(0, visual_v_offset());
 }
 
-void RowItem::paint_back(QPainter &p, int left, int right)
-{
-       (void)p;
-       (void)left;
-       (void)right;
-}
-
-void RowItem::paint_mid(QPainter &p, int left, int right)
-{
-       (void)p;
-       (void)left;
-       (void)right;
-}
-
-void RowItem::paint_fore(QPainter &p, int left, int right)
-{
-       (void)p;
-       (void)left;
-       (void)right;
-}
-
 void RowItem::hover_point_changed()
 {
 }