#include "wx/dcmemory.h"
+#ifdef USE_GDK_IMLIB
+#include "../gdk_imlib/gdk_imlib.h"
+#endif
+
//-----------------------------------------------------------------------------
// wxMemoryDC
//-----------------------------------------------------------------------------
wxMemoryDC::wxMemoryDC(void)
{
m_ok = FALSE;
+
+#ifdef USE_GDK_IMLIB
+ m_cmap = gdk_imlib_get_colormap();
+#else
m_cmap = gdk_colormap_get_system();
+#endif
}
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
}
wxMemoryDC::~wxMemoryDC(void)