+#if wxUSE_NEW_DC
+wxGTKMemoryImplDC::wxGTKMemoryImplDC( wxMemoryDC *owner )
+ : wxGTKWindowImplDC( owner )
+{
+ Init();
+}
+
+wxGTKMemoryImplDC::wxGTKMemoryImplDC( wxMemoryDC *owner, wxBitmap& bitmap)
+ : wxGTKWindowImplDC( owner )
+{
+ Init();
+ owner->SelectObject(bitmap);
+}
+
+wxGTKMemoryImplDC::wxGTKMemoryImplDC( wxMemoryDC *owner, wxDC *WXUNUSED(dc) )
+ : wxGTKWindowImplDC( owner )