summaryrefslogtreecommitdiff
path: root/platform/ios/Classes/MuPageViewReflow.h
diff options
context:
space:
mode:
authorJoseph Heenan <joseph@emobix.co.uk>2016-06-07 16:40:49 +0100
committerJoseph Heenan <joseph@emobix.co.uk>2016-06-09 10:57:47 +0100
commit3b9629fbbe654c63e8f41cabc9994f26ad5e6ff3 (patch)
tree33842cbbea51d39ea89e80236a9a71b86aa63b38 /platform/ios/Classes/MuPageViewReflow.h
parent4129322d734c8a03ae49a173a12eeced79a6cc75 (diff)
downloadmupdf-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.h2
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