diff options
author | Joseph Heenan <joseph@emobix.co.uk> | 2016-06-05 12:45:58 +0100 |
---|---|---|
committer | Joseph Heenan <joseph@emobix.co.uk> | 2016-06-09 10:57:47 +0100 |
commit | f53d79f0afd39d47f173530c59a00eb16b12bcba (patch) | |
tree | 208ec4e3cb2902e475cf5fd3338c523dd15c0efa /platform/ios/Classes/MuDocRef.h | |
parent | 917b8ef89a75fbbce80a6eba506829f45470645c (diff) | |
download | mupdf-f53d79f0afd39d47f173530c59a00eb16b12bcba.tar.xz |
iOS: Replace char * with NSString in ObjC APIs
What is effectively our external API on iOS would be expected to use
NSString rather than char *.
Diffstat (limited to 'platform/ios/Classes/MuDocRef.h')
-rw-r--r-- | platform/ios/Classes/MuDocRef.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/ios/Classes/MuDocRef.h b/platform/ios/Classes/MuDocRef.h index 3741c691..98800bf9 100644 --- a/platform/ios/Classes/MuDocRef.h +++ b/platform/ios/Classes/MuDocRef.h @@ -8,5 +8,5 @@ fz_document *doc; bool interactive; } --(id) initWithFilename:(char *)aFilename; +-(id) initWithFilename:(NSString *)aFilename; @end |