* Source/NSBitmapImageRep.m:

* Source/NSColor.m:
* Source/GSThemeTools.m:
* Source/NSGraphicsContext.m:
* Headers/AppKit/NSColor.h:
* Headers/AppKit/NSGraphicsContext.h:
* ColorPickers/GSGrayColorPicker.m:
* ColorPickers/GSCMYKColorPicker.m:
* ColorPickers/GSWheelColorPicker.m:
* ColorPickers/GSRGBColorPicker.m:
* ColorPickers/GSHSBColorPicker.m: Migrate float to CGFloat in
NSColor


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@34070 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
ericwa 2011-10-26 00:21:57 +00:00
parent bab8bb2d00
commit bc71005837
12 changed files with 447 additions and 400 deletions

View file

@ -881,7 +881,7 @@ NSGraphicsContext *GSCurrentContext(void)
should have n components, where n corresponds to the number of
color components required to specify the color in the current
colorspace (Quartz). */
- (void) GSSetFillColor: (const float *)values
- (void) GSSetFillColor: (const CGFloat *)values
{
[self subclassResponsibility: _cmd];
}
@ -890,7 +890,7 @@ NSGraphicsContext *GSCurrentContext(void)
should have n components, where n corresponds to the number of
color components required to specify the color in the current
colorspace (Quartz). */
- (void) GSSetStrokeColor: (const float *)values
- (void) GSSetStrokeColor: (const CGFloat *)values
{
[self subclassResponsibility: _cmd];
}