summaryrefslogtreecommitdiff
path: root/plugingui/painter.cc
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2013-05-08 14:56:19 +0200
committerBent Bisballe Nyeng <deva@aasimon.org>2013-05-08 14:56:19 +0200
commit895c942289c81ca24346d3bb18d2b922ae469554 (patch)
tree58a5ad2ae9ad311bfa59daaa8114a83b5277c3c5 /plugingui/painter.cc
parent8cacd4e097bb969fe6de20d88e98763deef658e6 (diff)
Remove GlobalContext class. Move all native code from EventHandler class to NativeWindowX11 and NativeWindowWin32 classes.
Diffstat (limited to 'plugingui/painter.cc')
-rw-r--r--plugingui/painter.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugingui/painter.cc b/plugingui/painter.cc
index 9e5b052..842ff11 100644
--- a/plugingui/painter.cc
+++ b/plugingui/painter.cc
@@ -176,7 +176,7 @@ void GUI::Painter::clear()
void GUI::Painter::drawText(int x0, int y0, GUI::Font &font, std::string text,
bool nocolour)
{
- PixelBufferAlpha *textbuf = font.render(widget->window()->gctx, text);
+ PixelBufferAlpha *textbuf = font.render(text);
if(nocolour) {
for(size_t x = 0; x < textbuf->width; x++) {
for(size_t y = 0; y < textbuf->height; y++) {