summaryrefslogtreecommitdiff
path: root/platform/ios/Classes/MuTapResult.m
diff options
context:
space:
mode:
authorJoseph Heenan <joseph@emobix.co.uk>2014-10-02 19:51:34 +0200
committerJoseph Heenan <joseph@emobix.co.uk>2014-10-04 08:11:35 -0500
commita58af9fc29f9d8f86f932d0bdd72ead9217637b7 (patch)
tree03213e5170dd9ee8a3c9c1ca4db2b8fe8df6b2e6 /platform/ios/Classes/MuTapResult.m
parent39ee719d76c9c3522a0e51d2507f826bf9692a80 (diff)
downloadmupdf-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/MuTapResult.m')
-rw-r--r--platform/ios/Classes/MuTapResult.m14
1 files changed, 14 insertions, 0 deletions
diff --git a/platform/ios/Classes/MuTapResult.m b/platform/ios/Classes/MuTapResult.m
index 6ec7d088..565332f9 100644
--- a/platform/ios/Classes/MuTapResult.m
+++ b/platform/ios/Classes/MuTapResult.m
@@ -6,6 +6,9 @@
@implementation MuTapResultInternalLink
+{
+ int pageNumber;
+}
@synthesize pageNumber;
@@ -28,6 +31,9 @@
@implementation MuTapResultExternalLink
+{
+ NSString *url;
+}
@synthesize url;
@@ -56,6 +62,11 @@
@implementation MuTapResultRemoteLink
+{
+ NSString *fileSpec;
+ int pageNumber;
+ BOOL newWindow;
+}
@synthesize fileSpec, pageNumber, newWindow;
@@ -96,6 +107,9 @@
@implementation MuTapResultAnnotation
+{
+ MuAnnotation *annot;
+}
@synthesize annot;