Warning fix.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37954 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Włodzimierz Skiba
2006-03-10 10:00:35 +00:00
parent 9f322c6d8f
commit 2e98a222ba

View File

@@ -2656,13 +2656,13 @@ void wxDC::DoGradientFillLinear (const wxRect& rect,
vertices[1].x = rect.GetRight();
vertices[1].y = rect.GetBottom();
vertices[firstVertex].Red = initialColour.Red() << 8;
vertices[firstVertex].Green = initialColour.Green() << 8;
vertices[firstVertex].Blue = initialColour.Blue() << 8;
vertices[firstVertex].Red = (COLOR16)(initialColour.Red() << 8);
vertices[firstVertex].Green = (COLOR16)(initialColour.Green() << 8);
vertices[firstVertex].Blue = (COLOR16)(initialColour.Blue() << 8);
vertices[firstVertex].Alpha = 0;
vertices[1 - firstVertex].Red = destColour.Red() << 8;
vertices[1 - firstVertex].Green = destColour.Green() << 8;
vertices[1 - firstVertex].Blue = destColour.Blue() << 8;
vertices[1 - firstVertex].Red = (COLOR16)(destColour.Red() << 8);
vertices[1 - firstVertex].Green = (COLOR16)(destColour.Green() << 8);
vertices[1 - firstVertex].Blue = (COLOR16)(destColour.Blue() << 8);
vertices[1 - firstVertex].Alpha = 0;
if (nDirection == wxWEST ||