X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/cf7a7e133be36522ec3afd0417f1d2bd860b4f6c..0208334d5d57849d7e46b9997cd8ef39daf39d2d:/src/gtk/dcmemory.cpp diff --git a/src/gtk/dcmemory.cpp b/src/gtk/dcmemory.cpp index 4b19f89c29..f346200a81 100644 --- a/src/gtk/dcmemory.cpp +++ b/src/gtk/dcmemory.cpp @@ -2,9 +2,8 @@ // Name: dcmemory.cpp // Purpose: // Author: Robert Roebling -// Created: 01/02/97 // RCS-ID: $Id$ -// Copyright: (c) 1998 Robert Roebling, Julian Smart and Markus Holzem +// Copyright: (c) 1998 Robert Roebling // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// @@ -14,10 +13,6 @@ #include "wx/dcmemory.h" -#ifdef USE_GDK_IMLIB -#include "../gdk_imlib/gdk_imlib.h" -#endif - //----------------------------------------------------------------------------- // wxMemoryDC //----------------------------------------------------------------------------- @@ -28,22 +23,14 @@ wxMemoryDC::wxMemoryDC(void) { m_ok = FALSE; -#ifdef USE_GDK_IMLIB - m_cmap = gdk_imlib_get_colormap(); -#else - m_cmap = gdk_colormap_get_system(); -#endif + m_cmap = gtk_widget_get_default_colormap(); } wxMemoryDC::wxMemoryDC( wxDC *WXUNUSED(dc) ) { m_ok = FALSE; -#ifdef USE_GDK_IMLIB - m_cmap = gdk_imlib_get_colormap(); -#else - m_cmap = gdk_colormap_get_system(); -#endif + m_cmap = gtk_widget_get_default_colormap(); } wxMemoryDC::~wxMemoryDC(void) @@ -66,7 +53,7 @@ void wxMemoryDC::SelectObject( const wxBitmap& bitmap ) SetUpDC(); - m_isDrawable = FALSE; + m_isMemDC = TRUE; } else {