fix X11 build after wxDC changes
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@50721 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
b733a0174a
commit
f95b06a67c
@ -2208,7 +2208,7 @@ void wxWindowDCImpl::DoSetClippingRegion( wxCoord x, wxCoord y, wxCoord width, w
|
||||
|
||||
wxCoord xx, yy, ww, hh;
|
||||
m_currentClippingRegion.GetBox( xx, yy, ww, hh );
|
||||
wxDCImpl::DoSetClippingRegion( xx, yy, ww, hh );
|
||||
wxX11DCImpl::DoSetClippingRegion( xx, yy, ww, hh );
|
||||
|
||||
XSetRegion( (Display*) m_display, (GC) m_penGC, (Region) m_currentClippingRegion.GetX11Region() );
|
||||
XSetRegion( (Display*) m_display, (GC) m_brushGC, (Region) m_currentClippingRegion.GetX11Region() );
|
||||
@ -2240,7 +2240,7 @@ void wxWindowDCImpl::DoSetClippingRegionAsRegion( const wxRegion& region )
|
||||
|
||||
wxCoord xx, yy, ww, hh;
|
||||
m_currentClippingRegion.GetBox( xx, yy, ww, hh );
|
||||
wxDCImpl::DoSetClippingRegion( xx, yy, ww, hh );
|
||||
wxX11DCImpl::DoSetClippingRegion( xx, yy, ww, hh );
|
||||
|
||||
XSetRegion( (Display*) m_display, (GC) m_penGC, (Region) m_currentClippingRegion.GetX11Region() );
|
||||
XSetRegion( (Display*) m_display, (GC) m_brushGC, (Region) m_currentClippingRegion.GetX11Region() );
|
||||
|
@ -32,8 +32,8 @@
|
||||
|
||||
IMPLEMENT_ABSTRACT_CLASS(wxScreenDCImpl,wxPaintDCImpl)
|
||||
|
||||
wxScreenDCImpl::wxScreenDCImpl( wxDC* owner ) :
|
||||
wxPaintDCImpl( owner )
|
||||
wxScreenDCImpl::wxScreenDCImpl( wxDC* owner )
|
||||
: wxPaintDCImpl( owner )
|
||||
{
|
||||
m_ok = false;
|
||||
|
||||
@ -67,3 +67,7 @@ wxScreenDCImpl::~wxScreenDCImpl()
|
||||
XSetSubwindowMode( (Display*) m_display, (GC) m_bgGC, ClipByChildren );
|
||||
}
|
||||
|
||||
void wxScreenDCImpl::DoGetSize(int *width, int *height) const
|
||||
{
|
||||
wxDisplaySize(width, height);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user