back to void for DoFloodFill

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15201 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
David Webster 2002-04-18 13:30:53 +00:00
parent 777dbdc75e
commit ba2abe8530
2 changed files with 6 additions and 4 deletions

View File

@ -202,7 +202,7 @@ public:
#endif
protected:
virtual bool DoFloodFill( wxCoord vX
virtual void DoFloodFill( wxCoord vX
,wxCoord vY
,const wxColour& rCol
,int nStyle = wxFLOOD_SURFACE

View File

@ -557,7 +557,7 @@ void wxDC::Clear()
::GpiErase(m_hPS);
} // end of wxDC::Clear
bool wxDC::DoFloodFill(
void wxDC::DoFloodFill(
wxCoord vX
, wxCoord vY
, const wxColour& rCol
@ -577,8 +577,7 @@ bool wxDC::DoFloodFill(
lOptions = FF_SURFACE;
::GpiFloodFill(m_hPS, lOptions, lColor);
return TRUE;
} // end of wxDC::DoFloodFill
bool wxDC::DoGetPixel(
@ -1226,6 +1225,9 @@ void wxDC::DoDrawBitmap(
vY = OS2Y(vY,rBmp.GetHeight());
//
// Flip the picture as OS/2 is upside-down
//
POINTL vPoint[4] = { vX, vY + rBmp.GetHeight()
,vX + rBmp.GetWidth(), vY
,0, 0