diff options
Diffstat (limited to 'plugingui/verticalline.cc')
-rw-r--r-- | plugingui/verticalline.cc | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/plugingui/verticalline.cc b/plugingui/verticalline.cc index bbf0d28..31c14d4 100644 --- a/plugingui/verticalline.cc +++ b/plugingui/verticalline.cc @@ -28,14 +28,18 @@ #include "painter.h" -GUI::VerticalLine::VerticalLine(GUI::Widget *parent) - : Widget(parent), vline(":vertline.png") +namespace GUI { + +VerticalLine::VerticalLine(Widget *parent) + : Widget(parent) + , vline(":vertline.png") { } -void GUI::VerticalLine::repaintEvent(RepaintEvent *e) +void VerticalLine::repaintEvent(RepaintEvent* repaintEvent) { - (void)e; - GUI::Painter p(*this); - p.drawImageStretched(0, 0, vline, width(), height()); + Painter p(*this); + p.drawImageStretched(0, 0, vline, width(), height()); } + +} // GUI:: |