diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2015-11-07 10:39:46 +0100 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2015-11-07 10:39:46 +0100 |
commit | a65ca7af57feaf7a4ea73f7e071a72eb9b3a1e24 (patch) | |
tree | 6cf9fa3b8b57513b8eae030bdc6e1a18495d7e75 /plugingui/lineedit.cc | |
parent | 60109b8a737059058d2b0664c7ea88ec501490f7 (diff) |
Refactored Painter.
Diffstat (limited to 'plugingui/lineedit.cc')
-rw-r--r-- | plugingui/lineedit.cc | 4 |
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)); |