Fix implementation details being used as base class for RTTI in wxQT

This commit is contained in:
Graham Dawes
2019-01-07 09:18:50 +00:00
parent 538cdc0841
commit 00030b56cb
9 changed files with 11 additions and 11 deletions

View File

@@ -61,7 +61,7 @@ wxWindowDCImpl::~wxWindowDCImpl()
//##############################################################################
wxIMPLEMENT_CLASS(wxClientDCImpl,wxQtDCImpl);
wxIMPLEMENT_CLASS(wxClientDCImpl,wxWindowDCImpl);
wxClientDCImpl::wxClientDCImpl( wxDC *owner )
: wxWindowDCImpl( owner )
@@ -121,7 +121,7 @@ wxClientDCImpl::~wxClientDCImpl()
//##############################################################################
wxIMPLEMENT_CLASS(wxPaintDCImpl,wxQtDCImpl);
wxIMPLEMENT_CLASS(wxPaintDCImpl,wxClientDCImpl);
wxPaintDCImpl::wxPaintDCImpl( wxDC *owner )
: wxWindowDCImpl( owner )