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/MuDocumentController.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/MuDocumentController.h')
-rw-r--r-- | platform/ios/Classes/MuDocumentController.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/ios/Classes/MuDocumentController.h b/platform/ios/Classes/MuDocumentController.h index 8a905536..887c248e 100644 --- a/platform/ios/Classes/MuDocumentController.h +++ b/platform/ios/Classes/MuDocumentController.h @@ -25,7 +25,7 @@ enum }; @interface MuDocumentController : UIViewController <UIScrollViewDelegate, UIGestureRecognizerDelegate, UISearchBarDelegate, MuDialogCreator, MuUpdater> -- (id) initWithFilename: (NSString*)nsfilename path:(char *)cstr document:(MuDocRef *)aDoc; +- (id) initWithFilename: (NSString*)nsfilename path:(NSString *)path document:(MuDocRef *)aDoc; - (void) createPageView: (int)number; - (void) gotoPage: (int)number animated: (BOOL)animated; - (void) onShowOutline: (id)sender; |