X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/cb349f69fae69fa1a8139fdb7e294737e753a74e..7749035c4edc84ff7ad722c0de8ff1679b68976f:/src/aui/dockart.cpp diff --git a/src/aui/dockart.cpp b/src/aui/dockart.cpp index a7013068c7..f2bfb08188 100644 --- a/src/aui/dockart.cpp +++ b/src/aui/dockart.cpp @@ -103,7 +103,7 @@ wxColor wxAuiStepColour(const wxColor& c, int ialpha) g = wxAuiBlendColour(g, bg, alpha); b = wxAuiBlendColour(b, bg, alpha); - return wxColour((int)r, (int)g, (int)b); + return wxColour((unsigned char)r, (unsigned char)g, (unsigned char)b); } @@ -153,9 +153,9 @@ static void DrawGradientRectangle(wxDC& dc, int r,g,b; - r = start_color.Red() + (high == 0 ? 0 : (((i*rd*100)/high)/100)); - g = start_color.Green() + (high == 0 ? 0 : (((i*gd*100)/high)/100)); - b = start_color.Blue() + (high == 0 ? 0 : (((i*bd*100)/high)/100)); + r = start_color.Red() + (high <= 0 ? 0 : (((i*rd*100)/high)/100)); + g = start_color.Green() + (high <= 0 ? 0 : (((i*gd*100)/high)/100)); + b = start_color.Blue() + (high <= 0 ? 0 : (((i*bd*100)/high)/100)); wxPen p(wxColor((unsigned char)r, (unsigned char)g,