diff --git a/include/wx/dcgraph.h b/include/wx/dcgraph.h index 9a11a19ce4..b75d715c7b 100644 --- a/include/wx/dcgraph.h +++ b/include/wx/dcgraph.h @@ -60,6 +60,10 @@ public: #if defined(__WXMSW__) && wxUSE_ENH_METAFILE wxGCDCImpl( wxDC *owner, const wxEnhMetaFileDC& dc ); #endif + + // Ctor using an existing graphics context given to wxGCDC ctor. + wxGCDCImpl(wxDC *owner, wxGraphicsContext* context); + wxGCDCImpl( wxDC *owner ); virtual ~wxGCDCImpl(); diff --git a/src/common/dcgraph.cpp b/src/common/dcgraph.cpp index 832eb2bdc6..802ba8bf6a 100644 --- a/src/common/dcgraph.cpp +++ b/src/common/dcgraph.cpp @@ -106,9 +106,8 @@ wxGCDC::wxGCDC(const wxEnhMetaFileDC& dc) #endif wxGCDC::wxGCDC(wxGraphicsContext* context) : - wxDC( new wxGCDCImpl( this ) ) + wxDC(new wxGCDCImpl(this, context)) { - SetGraphicsContext(context); } wxGCDC::wxGCDC() : @@ -122,6 +121,12 @@ wxGCDC::~wxGCDC() wxIMPLEMENT_ABSTRACT_CLASS(wxGCDCImpl, wxDCImpl); +wxGCDCImpl::wxGCDCImpl(wxDC *owner, wxGraphicsContext* context) : + wxDCImpl(owner) +{ + Init(context); +} + wxGCDCImpl::wxGCDCImpl( wxDC *owner ) : wxDCImpl( owner ) {