git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@50391
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
IMPLEMENT_DYNAMIC_CLASS(wxGCDC, wxDC)
IMPLEMENT_DYNAMIC_CLASS(wxGCDC, wxDC)
-wxGCDC::wxGCDC(const wxWindowDC& dc)
+wxGCDC::wxGCDC(const wxWindowDC& dc) :
+ wxDC( new wxGCDCImpl( this, dc ) )
- m_pimpl = new wxGCDCImpl( this, dc );
-wxGCDC::wxGCDC( const wxMemoryDC& dc)
+wxGCDC::wxGCDC( const wxMemoryDC& dc) :
+ wxDC( new wxGCDCImpl( this, dc ) )
- m_pimpl = new wxGCDCImpl( this, dc );
+wxGCDC::wxGCDC() :
+ wxDC( new wxGCDCImpl( this ) )
- m_pimpl = new wxGCDCImpl( this );
}
wxGraphicsContext* wxGCDC::GetGraphicsContext()
}
wxGraphicsContext* wxGCDC::GetGraphicsContext()