]> git.saurik.com Git - wxWidgets.git/blobdiff - src/x11/dcmemory.cpp
allow the user to press Esc to close preview frame wherever the focus is, not only...
[wxWidgets.git] / src / x11 / dcmemory.cpp
index 0b2f67aad78f1a0aa43a897b8173ecad276f7e9e..f2019230e0a27500246a3cff8b1b84a13e745753 100644 (file)
@@ -23,7 +23,7 @@
 
 IMPLEMENT_DYNAMIC_CLASS(wxMemoryDC,wxWindowDC)
 
-wxMemoryDC::wxMemoryDC() : wxWindowDC()
+void wxMemoryDC::Init()
 {
     m_ok = false;
 
@@ -36,19 +36,14 @@ wxMemoryDC::wxMemoryDC() : wxWindowDC()
 wxMemoryDC::wxMemoryDC( wxDC *WXUNUSED(dc) )
   : wxWindowDC()
 {
-    m_ok = false;
-
-    m_display = (WXDisplay *) wxGlobalDisplay();
-
-    int screen = DefaultScreen( wxGlobalDisplay() );
-    m_cmap = (WXColormap) DefaultColormap( wxGlobalDisplay(), screen );
+    Init();
 }
 
 wxMemoryDC::~wxMemoryDC()
 {
 }
 
-void wxMemoryDC::SelectObject( const wxBitmap& bitmap )
+void wxMemoryDC::DoSelect( const wxBitmap& bitmap )
 {
     Destroy();