summaryrefslogtreecommitdiff
path: root/dggui/tabbutton.cc
diff options
context:
space:
mode:
Diffstat (limited to 'dggui/tabbutton.cc')
-rw-r--r--dggui/tabbutton.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/dggui/tabbutton.cc b/dggui/tabbutton.cc
index a2b0549..c681131 100644
--- a/dggui/tabbutton.cc
+++ b/dggui/tabbutton.cc
@@ -90,7 +90,7 @@ TabID TabButton::getID() const
return tab_id;
}
-void TabButton::repaintEvent(RepaintEvent* e)
+void TabButton::repaintEvent(const RepaintEvent& e)
{
Painter p(*this);
@@ -119,9 +119,9 @@ void TabButton::repaintEvent(RepaintEvent* e)
p.drawText(x, y, font, text, true);
}
-void TabButton::scrollEvent(ScrollEvent* scroll_event)
+void TabButton::scrollEvent(const ScrollEvent& scroll_event)
{
- scrollNotifier(scroll_event->delta);
+ scrollNotifier(scroll_event.delta);
}
void TabButton::clickHandler()