Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Proper annotations for implemented methods #1719

Merged
merged 1 commit into from
Jan 18, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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