mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
0023064: MSVC compiler warnings when Freeimage is not used
Compiler warning on conversion of BOOL to bool (C4800, VC++ 8.0) generated by code active when HAVE_FREEIMAGE is not defined is avoided in OpenGl_Workspace.cxx
This commit is contained in:
parent
833e2f54e4
commit
6de552e6c4
@ -605,13 +605,13 @@ Standard_Boolean OpenGl_Workspace::Print
|
|||||||
if (width > aFrameWidth && height > aFrameHeight)
|
if (width > aFrameWidth && height > aFrameHeight)
|
||||||
{
|
{
|
||||||
SetStretchBltMode (hPrnDC, STRETCH_HALFTONE);
|
SetStretchBltMode (hPrnDC, STRETCH_HALFTONE);
|
||||||
isDone = StretchBlt (hPrnDC, aDevOffx, aDevOffy, width, height,
|
isDone = (StretchBlt (hPrnDC, aDevOffx, aDevOffy, width, height,
|
||||||
hMemDC, 0, 0, aFrameWidth, aFrameHeight, SRCCOPY);
|
hMemDC, 0, 0, aFrameWidth, aFrameHeight, SRCCOPY) != 0); // to avoid warning C4800
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
isDone = BitBlt (hPrnDC, aDevOffx, aDevOffy, width, height,
|
isDone = (BitBlt (hPrnDC, aDevOffx, aDevOffy, width, height,
|
||||||
hMemDC, 0, 0, SRCCOPY);
|
hMemDC, 0, 0, SRCCOPY) != 0); // to avoid warning C4800
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
@ -706,8 +706,8 @@ Standard_Boolean OpenGl_Workspace::Print
|
|||||||
isDone = imagePasteDC (hPrnDC, aViewImage, aSubLeft, aSubTop,
|
isDone = imagePasteDC (hPrnDC, aViewImage, aSubLeft, aSubTop,
|
||||||
aRight-aLeft, aBottom-aTop, aLeft, aTop);
|
aRight-aLeft, aBottom-aTop, aLeft, aTop);
|
||||||
#else
|
#else
|
||||||
isDone = BitBlt (hPrnDC, aSubLeft, aSubTop, aRight-aLeft, aBottom-aTop,
|
isDone = (BitBlt (hPrnDC, aSubLeft, aSubTop, aRight-aLeft, aBottom-aTop,
|
||||||
hMemDC, aLeft, aTop, SRCCOPY);
|
hMemDC, aLeft, aTop, SRCCOPY) != 0); // to avoid warning C4800
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// stop operation if errors
|
// stop operation if errors
|
||||||
|
Loading…
x
Reference in New Issue
Block a user