lcl: fix MonitorFromPoint after the change in IntersectRect in fpc (issue #0017774)

git-svn-id: trunk@28458 -
This commit is contained in:
paul 2010-11-24 14:42:03 +00:00
parent 89ae509848
commit cad7df0fbd

View File

@ -414,7 +414,7 @@ begin
if MonitorHandle = MONITOR_UNIMPL then
begin
R.TopLeft := Point;
R.BottomRight := Point;
R.BottomRight := Types.Point(Point.X + 1, Point.Y + 1);
Result := MonitorFromRect(R, MonitorDefault);
end
else