diff --git a/include/CoreGraphics/CGContext.h b/include/CoreGraphics/CGContext.h index 24766c23aa..4579683d59 100644 --- a/include/CoreGraphics/CGContext.h +++ b/include/CoreGraphics/CGContext.h @@ -154,7 +154,7 @@ COREGRAPHICS_EXPORT void CGContextEOFillPath(CGContextRef c); COREGRAPHICS_EXPORT void CGContextFillPath(CGContextRef c); COREGRAPHICS_EXPORT void CGContextFillRect(CGContextRef c, CGRect rect); -COREGRAPHICS_EXPORT void CGContextFillRects(CGContextRef c, const CGRect* rects, size_t count) STUB_METHOD; +COREGRAPHICS_EXPORT void CGContextFillRects(CGContextRef c, const CGRect* rects, size_t count); COREGRAPHICS_EXPORT void CGContextFillEllipseInRect(CGContextRef c, CGRect rect); COREGRAPHICS_EXPORT void CGContextStrokePath(CGContextRef c); @@ -180,11 +180,11 @@ COREGRAPHICS_EXPORT void CGContextClipToMask(CGContextRef c, CGRect rect, CGImag COREGRAPHICS_EXPORT void CGContextSetAlpha(CGContextRef c, CGFloat alpha); COREGRAPHICS_EXPORT void CGContextSetCMYKFillColor( - CGContextRef c, CGFloat cyan, CGFloat magenta, CGFloat yellow, CGFloat black, CGFloat alpha) STUB_METHOD; + CGContextRef c, CGFloat cyan, CGFloat magenta, CGFloat yellow, CGFloat black, CGFloat alpha); COREGRAPHICS_EXPORT void CGContextSetFillColor(CGContextRef c, const CGFloat* components); COREGRAPHICS_EXPORT void CGContextSetCMYKStrokeColor( - CGContextRef c, CGFloat cyan, CGFloat magenta, CGFloat yellow, CGFloat black, CGFloat alpha) STUB_METHOD; + CGContextRef c, CGFloat cyan, CGFloat magenta, CGFloat yellow, CGFloat black, CGFloat alpha); COREGRAPHICS_EXPORT void CGContextSetFillColorSpace(CGContextRef c, CGColorSpaceRef space); COREGRAPHICS_EXPORT void CGContextSetFillColorWithColor(CGContextRef c, CGColorRef color); diff --git a/include/UIKit/UIActionSheet.h b/include/UIKit/UIActionSheet.h index 636645646a..5fa4be245e 100644 --- a/include/UIKit/UIActionSheet.h +++ b/include/UIKit/UIActionSheet.h @@ -75,6 +75,6 @@ UIKIT_EXPORT_CLASS @property (nonatomic, readonly) NSInteger numberOfButtons; @property (nonatomic, assign) UIActionSheetStyle actionSheetStyle STUB_PROPERTY; -@property (nonatomic, readonly, getter=isVisible) BOOL visible STUB_PROPERTY; +@property (nonatomic, readonly, getter=isVisible) BOOL visible; @end diff --git a/include/UIKit/UIScrollView.h b/include/UIKit/UIScrollView.h index f7eefbf7a9..559ee7ad91 100644 --- a/include/UIKit/UIScrollView.h +++ b/include/UIKit/UIScrollView.h @@ -69,7 +69,7 @@ UIKIT_EXPORT_CLASS // Managing Scrolling @property (nonatomic, getter=isScrollEnabled) BOOL scrollEnabled; -@property (nonatomic, getter=isDirectionalLockEnabled) BOOL directionalLockEnabled STUB_PROPERTY; +@property (nonatomic, getter=isDirectionalLockEnabled) BOOL directionalLockEnabled; @property (nonatomic) BOOL scrollsToTop STUB_PROPERTY; - (void)scrollRectToVisible:(CGRect)rect animated:(BOOL)animated; @property (nonatomic, assign) BOOL pagingEnabled;