]> git.saurik.com Git - wxWidgets.git/blobdiff - src/dfb/dcmemory.cpp
Upport scrolling changes and mouse wheel changes.
[wxWidgets.git] / src / dfb / dcmemory.cpp
index 435667e3cd9794bf7ea4ef89b4cffd5a6254351e..5ab26cb37f844ac3105b34effb26e99566f35217 100644 (file)
@@ -39,7 +39,7 @@
 
 IMPLEMENT_DYNAMIC_CLASS(wxMemoryDC, wxDC)
 
-wxMemoryDC::wxMemoryDC()
+void wxMemoryDC::Init()
 {
 }
 
@@ -47,8 +47,10 @@ wxMemoryDC::wxMemoryDC(wxDC *WXUNUSED(dc))
 {
 }
 
-void wxMemoryDC::SelectObject(const wxBitmap& bitmap)
+void wxMemoryDC::DoSelect(const wxBitmap& bitmap)
 {
+    m_bmp = bitmap;
+
     if ( !bitmap.Ok() )
     {
         // select the bitmap out of the DC
@@ -57,5 +59,5 @@ void wxMemoryDC::SelectObject(const wxBitmap& bitmap)
     }
 
     // init the DC for drawing to this bitmap
-    Init(bitmap.GetDirectFBSurface());
+    DFBInit(bitmap.GetDirectFBSurface());
 }