From 8c02ae87cb936e37fbc677b74eee269599c62e87 Mon Sep 17 00:00:00 2001 From: Manolo Gouy Date: Thu, 17 Jun 2010 21:08:16 +0000 Subject: Correct way to test for device-specificity under Mac OS X git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@7646 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- src/fl_draw_pixmap.cxx | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'src') diff --git a/src/fl_draw_pixmap.cxx b/src/fl_draw_pixmap.cxx index c674a6791..edbcc8f4c 100644 --- a/src/fl_draw_pixmap.cxx +++ b/src/fl_draw_pixmap.cxx @@ -40,9 +40,6 @@ #include #include #include "flstring.h" -#ifdef __APPLE_QUARTZ__ -#include -#endif static int ncolors, chars_per_pixel; @@ -344,7 +341,7 @@ int fl_draw_pixmap(const char*const* cdata, int x, int y, Fl_Color bg) { #endif #ifdef __APPLE_QUARTZ__ - if (fl_surface->type() == Fl_Printer::device_type) { + if (fl_surface->driver()->type() == Fl_Quartz_Graphics_Driver::device_type ) { bool transparent = (transparent_index>=0); transparent = true; U32 *array = new U32[d.w * d.h], *q = array; -- cgit v1.2.3