Fix and errant commented out line of code in DoGetPixel.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@8757 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
David Webster
2000-11-20 14:09:24 +00:00
parent b7084589db
commit 6f95262744

View File

@@ -300,10 +300,10 @@ bool wxDC::DoGetPixel(
vPoint.x = vX;
vPoint.y = vY;
lColor = ::GpiSetPel(m_hPS, &vPoint);
// *pCol.Set(lColor);
*pCol = lColor;
if(lColor>= 0)
return(TRUE);
else
else
return(FALSE);
}