]> git.saurik.com Git - wxWidgets.git/blobdiff - src/motif/dc.cpp
Made all bitmaps 16x16
[wxWidgets.git] / src / motif / dc.cpp
index c6bd10e42507e314a96d920912236ca32dd9a3e0..939442bd32b4d5650b470603cb968415c05da26d 100644 (file)
 #include "wx/wxprec.h"
 
 #include "wx/dc.h"
-#include "wx/dcmemory.h"
+
+#ifndef WX_PRECOMP
+    #include "wx/dcmemory.h"
+#endif
 
 IMPLEMENT_ABSTRACT_CLASS(wxDC, wxObject)
 
@@ -46,7 +49,7 @@ void wxDC::DoDrawBitmap( const wxBitmap& bitmap, wxCoord x, wxCoord y, bool useM
     wxCHECK_RET( bitmap.Ok(), "invalid bitmap" );
 
     wxMemoryDC memDC;
-    memDC.SelectObject(bitmap);
+    memDC.SelectObjectAsSource(bitmap);
 
 #if 0
     // Not sure if we need this. The mask should leave the masked areas as per