summaryrefslogtreecommitdiff
path: root/ios/shared
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2013-12-09 21:44:20 +0200
committerTor Lillqvist <tml@collabora.com>2013-12-09 21:49:42 +0200
commit9f53053edac882a466ee69734665a1d66d52f10b (patch)
tree70b96471ba73e8066a3bb17707e96294929fe176 /ios/shared
parenta01fabf7052df9b5d3921da4916bba6c05c4d6ac (diff)
Add types.rdb (formerly known as udkapi.rdb) to MobileLibreOffice
Keeping this stuff working is hard. How did I not notice this before? I need to make clean more often I guess. I edited the project.pbxproj file manually as I didn't fully get it how to set up the wanted handling of this file in the Xcode GUI. So I just copied the handling of offapi.rdb in project.pbxproj (with different ids, of course). I really much prefer doing this fully in Makefiles, as in CustomTarget_LibreOffice_app.mk. Change-Id: Ifc4f2481f7a9d1562be6f91714ed38c82cdd5eb0
Diffstat (limited to 'ios/shared')
-rw-r--r--ios/shared/ios_sharedlo/cxx/mlo.mm2
1 files changed, 1 insertions, 1 deletions
diff --git a/ios/shared/ios_sharedlo/cxx/mlo.mm b/ios/shared/ios_sharedlo/cxx/mlo.mm
index b17067b73af7..ca88b6ed3c4c 100644
--- a/ios/shared/ios_sharedlo/cxx/mlo.mm
+++ b/ios/shared/ios_sharedlo/cxx/mlo.mm
@@ -198,7 +198,7 @@ mlo_initialize(void)
NSString * app_root_escaped = [bundlePath stringByAddingPercentEscapesUsingEncoding: NSUTF8StringEncoding];
- NSString * uno_types = createPaths(@"-env:UNO_TYPES=", app_root_escaped, @[@"offapi.rdb", @"oovbaapi.rdb",@"udkapi.rdb"]);
+ NSString * uno_types = createPaths(@"-env:UNO_TYPES=", app_root_escaped, @[@"offapi.rdb", @"oovbaapi.rdb", @"types.rdb"]);
NSString * uno_services = createPaths(@"-env:UNO_SERVICES=", app_root_escaped, @[@"ure/services.rdb", @"services.rdb"]);