Skip to content

Commit

Permalink
Proper annotations for implemented methods (#1719)
Browse files Browse the repository at this point in the history
  • Loading branch information
msft-Jeyaram authored Jan 18, 2017
1 parent d1db60d commit 003dd5f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions include/CoreGraphics/CGContext.h
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand All @@ -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);
Expand Down
2 changes: 1 addition & 1 deletion include/UIKit/UIActionSheet.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion include/UIKit/UIScrollView.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 003dd5f

Please sign in to comment.