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

Compiler warnings #23

Open
postmechanical opened this issue Nov 1, 2011 · 0 comments
Open

Compiler warnings #23

postmechanical opened this issue Nov 1, 2011 · 0 comments

Comments

@postmechanical
Copy link

Xcode 4.2, LLVM 3.0:

Shared/Classes/../../../../../ShareKit/Classes/ShareKit/Sharers/Services/Flickr/LFHTTPRequest.h:124:32: warning: type of property 'requestHeader' does not match type of accessor 'setRequestHeader:' [3]
@Property (copy) NSDictionary *requestHeader;
^
Shared/Classes/../../../../../ShareKit/Classes/ShareKit/Sharers/Services/Flickr/LFHTTPRequest.h:103:1: note: declared here [3]

  • (void)setRequestHeader:(NSDictionary *)requestHeader;
    ^
    Shared/Classes/../../../../../ShareKit/Classes/ShareKit/Sharers/Services/Flickr/LFHTTPRequest.h:126:28: warning: type of property 'userAgent' does not match type of accessor 'setUserAgent:' [3]
    @Property (copy) NSString *userAgent;
    ^
    Shared/Classes/../../../../../ShareKit/Classes/ShareKit/Sharers/Services/Flickr/LFHTTPRequest.h:107:1: note: declared here [3]
  • (void)setUserAgent:(NSString *)userAgent;
    ^
    Shared/Classes/../../../../../ShareKit/Classes/ShareKit/Sharers/Services/Flickr/LFHTTPRequest.h:127:28: warning: type of property 'contentType' does not match type of accessor 'setContentType:' [3]
    @Property (copy) NSString *contentType;
    ^
    Shared/Classes/../../../../../ShareKit/Classes/ShareKit/Sharers/Services/Flickr/LFHTTPRequest.h:109:1: note: declared here [3]
  • (void)setContentType:(NSString *)contentType;
    ^
    Shared/Classes/../../../../../ShareKit/Classes/ShareKit/Sharers/Services/Flickr/LFHTTPRequest.h:130:23: warning: type of property 'delegate' does not match type of accessor 'setDelegate:' [3]
    @Property (assign) id delegate;
    ^
    Shared/Classes/../../../../../ShareKit/Classes/ShareKit/Sharers/Services/Flickr/LFHTTPRequest.h:118:1: note: declared here [3]
  • (void)setDelegate:(id)delegate;
    ^
    Shared/Classes/../../../../../ShareKit/Classes/ShareKit/Sharers/Services/Flickr/LFHTTPRequest.h:131:23: warning: type of property 'sessionInfo' does not match type of accessor 'setSessionInfo:' [3]
    @Property (retain) id sessionInfo;
    ^
    Shared/Classes/../../../../../ShareKit/Classes/ShareKit/Sharers/Services/Flickr/LFHTTPRequest.h:120:1: note: declared here [3]
  • (void)setSessionInfo:(id)aSessionInfo;
    ^
    In file included from Shared/Classes/../../../../../ShareKit/Classes/ShareKit/Sharers/Services/Flickr/SHKFlickr.h:31:
    In file included from Shared/Classes/Controllers/MainController.m:20:
    Shared/Classes/../../../../../ShareKit/Classes/ShareKit/Sharers/Services/Flickr/ObjectiveFlickr.h:80:41: warning: type of property 'authToken' does not match type of accessor 'setAuthToken:' [3]
    @Property (nonatomic, retain) NSString *authToken;
    ^
    Shared/Classes/../../../../../ShareKit/Classes/ShareKit/Sharers/Services/Flickr/ObjectiveFlickr.h:56:1: note: declared here [3]
  • (void)setAuthToken:(NSString *)inAuthToken;
    ^
    Shared/Classes/../../../../../ShareKit/Classes/ShareKit/Sharers/Services/Flickr/ObjectiveFlickr.h:82:41: warning: type of property 'RESTAPIEndpoint' does not match type of accessor 'setRESTAPIEndpoint:' [3]
    @Property (nonatomic, retain) NSString *RESTAPIEndpoint;
    ^
    Shared/Classes/../../../../../ShareKit/Classes/ShareKit/Sharers/Services/Flickr/ObjectiveFlickr.h:65:1: note: declared here [3]
  • (void)setRESTAPIEndpoint:(NSString *)inEndpoint;
    ^
    Shared/Classes/../../../../../ShareKit/Classes/ShareKit/Sharers/Services/Flickr/ObjectiveFlickr.h:83:41: warning: type of property 'photoSource' does not match type of accessor 'setPhotoSource:' [3]
    @Property (nonatomic, retain) NSString *photoSource;
    ^
    Shared/Classes/../../../../../ShareKit/Classes/ShareKit/Sharers/Services/Flickr/ObjectiveFlickr.h:68:1: note: declared here [3]
  • (void)setPhotoSource:(NSString *)inSource;
    ^
    Shared/Classes/../../../../../ShareKit/Classes/ShareKit/Sharers/Services/Flickr/ObjectiveFlickr.h:85:41: warning: type of property 'authEndpoint' does not match type of accessor 'setAuthEndpoint:' [3]
    @Property (nonatomic, retain) NSString *authEndpoint;
    ^
    Shared/Classes/../../../../../ShareKit/Classes/ShareKit/Sharers/Services/Flickr/ObjectiveFlickr.h:71:1: note: declared here [3]
  • (void)setAuthEndpoint:(NSString *)inEndpoint;
    ^
    Shared/Classes/../../../../../ShareKit/Classes/ShareKit/Sharers/Services/Flickr/ObjectiveFlickr.h:86:41: warning: type of property 'uploadEndpoint' does not match type of accessor 'setUploadEndpoint:' [3]
    @Property (nonatomic, retain) NSString *uploadEndpoint;
    ^
    Shared/Classes/../../../../../ShareKit/Classes/ShareKit/Sharers/Services/Flickr/ObjectiveFlickr.h:74:1: note: declared here [3]
  • (void)setUploadEndpoint:(NSString *)inEndpoint;
    ^
    Shared/Classes/../../../../../ShareKit/Classes/ShareKit/Sharers/Services/Flickr/ObjectiveFlickr.h:157:62: warning: type of property 'delegate' does not match type of accessor 'setDelegate:' [3]
    @Property (nonatomic, assign) OFFlickrAPIRequestDelegateType delegate;
    ^
    Shared/Classes/../../../../../ShareKit/Classes/ShareKit/Sharers/Services/Flickr/ObjectiveFlickr.h:138:1: note: declared here [3]
  • (void)setDelegate:(OFFlickrAPIRequestDelegateType)inDelegate;
    ^
    Shared/Classes/../../../../../ShareKit/Classes/ShareKit/Sharers/Services/Flickr/ObjectiveFlickr.h:158:34: warning: type of property 'sessionInfo' does not match type of accessor 'setSessionInfo:' [3]
    @Property (nonatomic, retain) id sessionInfo;
    ^
    Shared/Classes/../../../../../ShareKit/Classes/ShareKit/Sharers/Services/Flickr/ObjectiveFlickr.h:141:1: note: declared here [3]
  • (void)setSessionInfo:(id)inInfo;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant