objectiveflickr icon indicating copy to clipboard operation
objectiveflickr copied to clipboard

Compiler warnings

Open postmechanical opened this issue 13 years ago • 0 comments

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;

postmechanical avatar Nov 01 '11 04:11 postmechanical