summaryrefslogtreecommitdiff
path: root/ios/experimental/TiledLibreOffice/TiledLibreOffice/AppDelegate.m
diff options
context:
space:
mode:
Diffstat (limited to 'ios/experimental/TiledLibreOffice/TiledLibreOffice/AppDelegate.m')
-rw-r--r--ios/experimental/TiledLibreOffice/TiledLibreOffice/AppDelegate.m4
1 files changed, 4 insertions, 0 deletions
diff --git a/ios/experimental/TiledLibreOffice/TiledLibreOffice/AppDelegate.m b/ios/experimental/TiledLibreOffice/TiledLibreOffice/AppDelegate.m
index 10e5d70204d0..8bad26bd13ea 100644
--- a/ios/experimental/TiledLibreOffice/TiledLibreOffice/AppDelegate.m
+++ b/ios/experimental/TiledLibreOffice/TiledLibreOffice/AppDelegate.m
@@ -55,11 +55,15 @@
return YES;
}
+const char *ptyl_test_encryption_pathname;
+
- (void)startDisplaying:(NSString*)documentPath;
{
ViewController *vc = [[ViewController alloc] init];
self.window.rootViewController = vc;
+ ptyl_test_encryption_pathname = [documentPath UTF8String];
+
[[[NSThread alloc] initWithTarget:self selector:@selector(threadMainMethod:) object:documentPath] start];
vc.view = [[View alloc] initWithFrame:[self.window frame]];
}