aboutsummaryrefslogtreecommitdiff
path: root/AppKit/GTMNSBezierPath+Shading.h
diff options
context:
space:
mode:
Diffstat (limited to 'AppKit/GTMNSBezierPath+Shading.h')
-rw-r--r--AppKit/GTMNSBezierPath+Shading.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/AppKit/GTMNSBezierPath+Shading.h b/AppKit/GTMNSBezierPath+Shading.h
index b67043c..5d68728 100644
--- a/AppKit/GTMNSBezierPath+Shading.h
+++ b/AppKit/GTMNSBezierPath+Shading.h
@@ -19,6 +19,7 @@
//
#import <Cocoa/Cocoa.h>
+#import "GTMDefines.h"
@protocol GTMShading;
@@ -66,8 +67,8 @@
// last color in our shading?
// shading: the shading to use to take our colors from.
//
-- (void)gtm_strokeRadiallyFrom:(NSPoint)fromPoint fromRadius:(float)fromRadius
- to:(NSPoint)toPoint toRadius:(float)toRadius
+- (void)gtm_strokeRadiallyFrom:(NSPoint)fromPoint fromRadius:(CGFloat)fromRadius
+ to:(NSPoint)toPoint toRadius:(CGFloat)toRadius
extendingStart:(BOOL)extendingStart extendingEnd:(BOOL)extendingEnd
shading:(id<GTMShading>)shading;
@@ -113,8 +114,8 @@
// last color in our shading?
// shading: the shading to use to take our colors from.
//
-- (void)gtm_fillRadiallyFrom:(NSPoint)fromPoint fromRadius:(float)fromRadius
- to:(NSPoint)toPoint toRadius:(float)toRadius
+- (void)gtm_fillRadiallyFrom:(NSPoint)fromPoint fromRadius:(CGFloat)fromRadius
+ to:(NSPoint)toPoint toRadius:(CGFloat)toRadius
extendingStart:(BOOL)extendingStart extendingEnd:(BOOL)extendingEnd
shading:(id<GTMShading>)shading;
@end