X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/d8fdd58fa32f2dba817c9608c9e61b93606897f2..b8af111fa5d3916e6f42fee3af0ab1bec0ace7b6:/src/cocoa/colour.mm diff --git a/src/cocoa/colour.mm b/src/cocoa/colour.mm index b1aa432a3c..9a8e057b07 100644 --- a/src/cocoa/colour.mm +++ b/src/cocoa/colour.mm @@ -1,12 +1,12 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: colour.mm +// Name: src/cococa/colour.mm // Purpose: wxColour class // Author: David Elliott // Modified by: // Created: 2003/06/17 // RCS-ID: $Id$ // Copyright: (c) 2003 David Elliott -// Licence: wxWidgets licence +// Licence: wxWidgets licence ///////////////////////////////////////////////////////////////////////////// #include "wx/wxprec.h" @@ -96,8 +96,7 @@ void wxColour::Set( WX_NSColor aColor ) unless the color was actually RGB to begin with it's likely that these will be fairly bogus. Particulary if the color is a pattern. */ NSColor *rgbColor = [m_cocoaNSColor colorUsingColorSpaceName:NSCalibratedRGBColorSpace]; - m_red = [rgbColor redComponent]*255.0; - m_green = [rgbColor greenComponent]*255.0; - m_blue = [rgbColor blueComponent]*255.0; + m_red = (wxUint8) ([rgbColor redComponent] * 255.0); + m_green = (wxUint8) ([rgbColor greenComponent] * 255.0); + m_blue = (wxUint8) ([rgbColor blueComponent] * 255.0); } -