Override SetLogicalOrigin and SetDeviceOrigin in GNOME

print DC as this will probably be needed to fix the
    printing bug reported recently.


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43625 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
2006-11-24 10:48:56 +00:00
parent 3de65dab90
commit 92120c6e89
2 changed files with 13 additions and 0 deletions

View File

@@ -1828,6 +1828,16 @@ void wxGnomePrintDC::SetAxisOrientation( bool xLeftRight, bool yBottomUp )
ComputeScaleAndOrigin();
}
void wxGnomePrintDC::SetLogicalOrigin( wxCoord x, wxCoord y )
{
wxDC::SetLogicalOrigin( x, y );
}
void wxGnomePrintDC::SetDeviceOrigin( wxCoord x, wxCoord y )
{
wxDC::SetDeviceOrigin( x, y );
}
void wxGnomePrintDC::SetResolution(int ppi)
{
}