summaryrefslogtreecommitdiff
path: root/gtk/print.c
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2015-04-13 23:49:44 +0100
committerVincent Sanders <vince@kyllikki.org>2015-04-13 23:49:44 +0100
commitc02f552e8704f52e1a9ab92b21cb7d23211d98ab (patch)
tree6f4e576dbaeaa7026f5956adc754f853a8053e0f /gtk/print.c
parentf37e52c39475e6efd3740c5ae1ec4f290662928f (diff)
downloadnetsurf-c02f552e8704f52e1a9ab92b21cb7d23211d98ab.tar.gz
netsurf-c02f552e8704f52e1a9ab92b21cb7d23211d98ab.tar.bz2
chnage GTK frontend to using bitmap operation table
Diffstat (limited to 'gtk/print.c')
-rw-r--r--gtk/print.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/print.c b/gtk/print.c
index e5870267a..53fbed083 100644
--- a/gtk/print.c
+++ b/gtk/print.c
@@ -462,8 +462,8 @@ static bool nsgtk_print_plot_bitmap(int x, int y, int width, int height,
return nsgtk_print_plot_pixbuf(x, y, width, height, bitmap, bg);
}
- width = bitmap_get_width(bitmap);
- height = bitmap_get_height(bitmap);
+ width = nsgtk_bitmap_get_width(bitmap);
+ height = nsgtk_bitmap_get_height(bitmap);
/* Bail early if we can */
if (width == 0 || height == 0)