diff options
author | Joseph Heenan <joseph@emobix.co.uk> | 2014-10-02 19:51:34 +0200 |
---|---|---|
committer | Joseph Heenan <joseph@emobix.co.uk> | 2014-10-04 08:11:35 -0500 |
commit | a58af9fc29f9d8f86f932d0bdd72ead9217637b7 (patch) | |
tree | 03213e5170dd9ee8a3c9c1ca4db2b8fe8df6b2e6 /platform/ios/Classes/MuHitView.h | |
parent | 39ee719d76c9c3522a0e51d2507f826bf9692a80 (diff) | |
download | mupdf-a58af9fc29f9d8f86f932d0bdd72ead9217637b7.tar.xz |
iOS: Move instance variables from .h to .m
These are private details that, since changes in Xcode, no longer need to
be exposed in the headers.
Diffstat (limited to 'platform/ios/Classes/MuHitView.h')
-rw-r--r-- | platform/ios/Classes/MuHitView.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/platform/ios/Classes/MuHitView.h b/platform/ios/Classes/MuHitView.h index b29caa61..d0823c8b 100644 --- a/platform/ios/Classes/MuHitView.h +++ b/platform/ios/Classes/MuHitView.h @@ -8,14 +8,6 @@ #include "mupdf/fitz.h" @interface MuHitView : UIView -{ - CGSize pageSize; - int hitCount; - CGRect hitRects[500]; - int linkPage[500]; - char *linkUrl[500]; - UIColor *color; -} - (id) initWithSearchResults: (int)n forDocument: (fz_document *)doc; - (id) initWithLinks: (fz_link*)links forDocument: (fz_document *)doc; - (void) setPageSize: (CGSize)s; |