summaryrefslogtreecommitdiff
path: root/plugingui/lineedit.cc
diff options
context:
space:
mode:
Diffstat (limited to 'plugingui/lineedit.cc')
-rw-r--r--plugingui/lineedit.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugingui/lineedit.cc b/plugingui/lineedit.cc
index 12969ba..ff936f4 100644
--- a/plugingui/lineedit.cc
+++ b/plugingui/lineedit.cc
@@ -213,7 +213,7 @@ void LineEdit::keyEvent(KeyEvent *keyEvent)
void LineEdit::repaintEvent(RepaintEvent *repaintEvent)
{
- Painter p(this);
+ Painter p(*this);
p.clear();
@@ -224,7 +224,7 @@ void LineEdit::repaintEvent(RepaintEvent *repaintEvent)
return;
}
- p.drawBox(0, 0, &box, w, h);
+ p.drawBox(0, 0, box, w, h);
p.setColour(Colour(183.0/255.0, 219.0/255.0 , 255.0/255.0, 1));