diff options
author | Joseph Heenan <joseph@emobix.co.uk> | 2014-10-02 22:41:39 +0200 |
---|---|---|
committer | Joseph Heenan <joseph@emobix.co.uk> | 2014-10-05 09:38:12 -0500 |
commit | eb8184a334e3f9784e5b5dd108fefbcf2f57595a (patch) | |
tree | c446a78e077b9fbb202eb10dc2e3828ad9281dc0 /platform/ios/Classes/MuChoiceFieldController.m | |
parent | e481ca09f57c33b7010660c464282d25432a106b (diff) | |
download | mupdf-eb8184a334e3f9784e5b5dd108fefbcf2f57595a.tar.xz |
iOS: tweak types to avoid warnings in 64 bit builds
Still more warnings left.
Diffstat (limited to 'platform/ios/Classes/MuChoiceFieldController.m')
-rw-r--r-- | platform/ios/Classes/MuChoiceFieldController.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/ios/Classes/MuChoiceFieldController.m b/platform/ios/Classes/MuChoiceFieldController.m index dce17e03..7b165350 100644 --- a/platform/ios/Classes/MuChoiceFieldController.m +++ b/platform/ios/Classes/MuChoiceFieldController.m @@ -10,7 +10,7 @@ { void (^okayBlock)(NSArray *); NSArray *choices; - int selected; + NSInteger selected; } - (id)initWithChoices:(NSArray *)_choices okayAction:(void (^)(NSArray *))block |