]> git.saurik.com Git - wxWidgets.git/blobdiff - src/x11/dcmemory.cpp
Added style organiser dialog and list style editor page
[wxWidgets.git] / src / x11 / dcmemory.cpp
index 0b2f67aad78f1a0aa43a897b8173ecad276f7e9e..f5a4bddb6455fe576db0706f6c38d0f6ad1677ce 100644 (file)
@@ -23,7 +23,8 @@
 
 IMPLEMENT_DYNAMIC_CLASS(wxMemoryDC,wxWindowDC)
 
-wxMemoryDC::wxMemoryDC() : wxWindowDC()
+wxMemoryDC::wxMemoryDC( const wxBitmap& bitmap )
+    : wxWindowDC()
 {
     m_ok = false;
 
@@ -31,6 +32,9 @@ wxMemoryDC::wxMemoryDC() : wxWindowDC()
 
     int screen = DefaultScreen( wxGlobalDisplay() );
     m_cmap = (WXColormap) DefaultColormap( wxGlobalDisplay(), screen );
+
+    if ( bitmap.IsOk() )
+        SelectObject(bitmap);
 }
 
 wxMemoryDC::wxMemoryDC( wxDC *WXUNUSED(dc) )