diff options
author | Joseph Heenan <joseph@emobix.co.uk> | 2016-06-07 16:40:49 +0100 |
---|---|---|
committer | Joseph Heenan <joseph@emobix.co.uk> | 2016-06-09 10:57:47 +0100 |
commit | 3b9629fbbe654c63e8f41cabc9994f26ad5e6ff3 (patch) | |
tree | 33842cbbea51d39ea89e80236a9a71b86aa63b38 /platform/ios/Classes/MuPageViewReflow.h | |
parent | 4129322d734c8a03ae49a173a12eeced79a6cc75 (diff) | |
download | mupdf-3b9629fbbe654c63e8f41cabc9994f26ad5e6ff3.tar.xz |
iOS: Use modern instancetype instead of id for init return type
Diffstat (limited to 'platform/ios/Classes/MuPageViewReflow.h')
-rw-r--r-- | platform/ios/Classes/MuPageViewReflow.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/ios/Classes/MuPageViewReflow.h b/platform/ios/Classes/MuPageViewReflow.h index da9d556a..f6140e81 100644 --- a/platform/ios/Classes/MuPageViewReflow.h +++ b/platform/ios/Classes/MuPageViewReflow.h @@ -4,6 +4,6 @@ @interface MuPageViewReflow : UIWebView <UIWebViewDelegate,MuPageView> --(id) initWithFrame:(CGRect)frame document:(MuDocRef *)aDoc page:(int)aNumber; +-(instancetype) initWithFrame:(CGRect)frame document:(MuDocRef *)aDoc page:(int)aNumber; @end |