Skip to content

Commit

Permalink
Fix compile error.
Browse files Browse the repository at this point in the history
  • Loading branch information
BlueRiverInteractive committed Aug 11, 2015
1 parent c98d8b3 commit 0ec5737
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cocoatouch/src/main/bro-gen/social.yaml
Expand Up @@ -27,7 +27,7 @@ classes:
SLComposeViewController: # DONE SLComposeViewController: # DONE
properties: properties:
'completionHandler': 'completionHandler':
type: '@Block VoidBlock3<SLComposeViewControllerResult>' type: '@Block VoidBlock1<SLComposeViewControllerResult>'
'serviceType': 'serviceType':
type: SLServiceType type: SLServiceType
methods: methods:
Expand Down
Expand Up @@ -54,9 +54,9 @@ public SLComposeViewController() {}
@Property(selector = "serviceType") @Property(selector = "serviceType")
public native SLServiceType getServiceType(); public native SLServiceType getServiceType();
@Property(selector = "completionHandler") @Property(selector = "completionHandler")
public native @Block VoidBlock3<SLComposeViewControllerResult> getCompletionHandler(); public native @Block VoidBlock1<SLComposeViewControllerResult> getCompletionHandler();
@Property(selector = "setCompletionHandler:") @Property(selector = "setCompletionHandler:")
public native void setCompletionHandler(@Block VoidBlock3<SLComposeViewControllerResult> v); public native void setCompletionHandler(@Block VoidBlock1<SLComposeViewControllerResult> v);
/*</properties>*/ /*</properties>*/
/*<members>*//*</members>*/ /*<members>*//*</members>*/
/*<methods>*/ /*<methods>*/
Expand Down

0 comments on commit 0ec5737

Please sign in to comment.