1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
|
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 46;
objects = {
/* Begin PBXBuildFile section */
681D78BA180C12D300D52D5E /* fundamentalrc in Resources */ = {isa = PBXBuildFile; fileRef = 681D78AF180C12D300D52D5E /* fundamentalrc */; };
681D78BB180C12D300D52D5E /* offapi.rdb in Resources */ = {isa = PBXBuildFile; fileRef = 681D78B0180C12D300D52D5E /* offapi.rdb */; };
681D78BC180C12D300D52D5E /* oovbaapi.rdb in Resources */ = {isa = PBXBuildFile; fileRef = 681D78B1180C12D300D52D5E /* oovbaapi.rdb */; };
681D78BD180C12D300D52D5E /* program in Resources */ = {isa = PBXBuildFile; fileRef = 681D78B2180C12D300D52D5E /* program */; };
681D78BE180C12D300D52D5E /* rc in Resources */ = {isa = PBXBuildFile; fileRef = 681D78B3180C12D300D52D5E /* rc */; };
681D78C0180C12D300D52D5E /* services.rdb in Resources */ = {isa = PBXBuildFile; fileRef = 681D78B5180C12D300D52D5E /* services.rdb */; };
681D78C1180C12D300D52D5E /* share in Resources */ = {isa = PBXBuildFile; fileRef = 681D78B6180C12D300D52D5E /* share */; };
681D78C3180C12D300D52D5E /* unorc in Resources */ = {isa = PBXBuildFile; fileRef = 681D78B8180C12D300D52D5E /* unorc */; };
681D78C6180C136400D52D5E /* ure in Resources */ = {isa = PBXBuildFile; fileRef = 681D78C5180C136400D52D5E /* ure */; };
688EAB01180D67E9003741B3 /* libios_sharedlo.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 688EAAFE180D679F003741B3 /* libios_sharedlo.a */; };
689A7ECC181EA0DD0020710C /* mlo-icon-57.png in Resources */ = {isa = PBXBuildFile; fileRef = 68B99ED6180BBF7100FFEA35 /* mlo-icon-57.png */; };
689EBAEB18069FB7002F1CD7 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 689EBAEA18069FB7002F1CD7 /* UIKit.framework */; };
689EBAED18069FB7002F1CD7 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 689EBAEC18069FB7002F1CD7 /* Foundation.framework */; };
689EBAEF18069FB7002F1CD7 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 689EBAEE18069FB7002F1CD7 /* CoreGraphics.framework */; };
689EBAF718069FB7002F1CD7 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 689EBAF618069FB7002F1CD7 /* main.m */; };
689EBAFD18069FB8002F1CD7 /* Default.png in Resources */ = {isa = PBXBuildFile; fileRef = 689EBAFC18069FB8002F1CD7 /* Default.png */; };
689EBAFF18069FB8002F1CD7 /* Default@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 689EBAFE18069FB8002F1CD7 /* Default@2x.png */; };
689EBB0118069FB8002F1CD7 /* Default-568h@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 689EBB0018069FB8002F1CD7 /* Default-568h@2x.png */; };
689EBB2E1806CC3A002F1CD7 /* MLOAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 689EBB2B1806CC39002F1CD7 /* MLOAppDelegate.m */; };
689EBB2F1806CC3A002F1CD7 /* MLOAppViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 689EBB2D1806CC39002F1CD7 /* MLOAppViewController.m */; };
689EBBAE1806D370002F1CD7 /* MLOCachedFile.m in Sources */ = {isa = PBXBuildFile; fileRef = 689EBBA61806D370002F1CD7 /* MLOCachedFile.m */; };
689EBBAF1806D370002F1CD7 /* MLOFileCacheManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 689EBBA81806D370002F1CD7 /* MLOFileCacheManager.m */; };
689EBBB01806D370002F1CD7 /* MLOFileListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 689EBBAA1806D370002F1CD7 /* MLOFileListViewController.m */; };
689EBBB11806D370002F1CD7 /* MLOFileManagerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 689EBBAC1806D370002F1CD7 /* MLOFileManagerViewController.m */; };
68B98C35180B38CD00FFEA35 /* MLOButtonBack.png in Resources */ = {isa = PBXBuildFile; fileRef = 68B98C26180B38CD00FFEA35 /* MLOButtonBack.png */; };
68B98C36180B38CD00FFEA35 /* MLOButtonBack@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 68B98C27180B38CD00FFEA35 /* MLOButtonBack@2x.png */; };
68B98C37180B38CD00FFEA35 /* MLOButtonEdit.png in Resources */ = {isa = PBXBuildFile; fileRef = 68B98C28180B38CD00FFEA35 /* MLOButtonEdit.png */; };
68B98C38180B38CD00FFEA35 /* MLOButtonExpand.png in Resources */ = {isa = PBXBuildFile; fileRef = 68B98C29180B38CD00FFEA35 /* MLOButtonExpand.png */; };
68B98C39180B38CD00FFEA35 /* MLOButtonFind.png in Resources */ = {isa = PBXBuildFile; fileRef = 68B98C2A180B38CD00FFEA35 /* MLOButtonFind.png */; };
68B98C3A180B38CD00FFEA35 /* MLOButtonLeft.png in Resources */ = {isa = PBXBuildFile; fileRef = 68B98C2B180B38CD00FFEA35 /* MLOButtonLeft.png */; };
68B98C3B180B38CD00FFEA35 /* MLOButtonPrint.png in Resources */ = {isa = PBXBuildFile; fileRef = 68B98C2C180B38CD00FFEA35 /* MLOButtonPrint.png */; };
68B98C3C180B38CD00FFEA35 /* MLOButtonRight.png in Resources */ = {isa = PBXBuildFile; fileRef = 68B98C2D180B38CD00FFEA35 /* MLOButtonRight.png */; };
68B98C3D180B38CD00FFEA35 /* MLOButtonSave.png in Resources */ = {isa = PBXBuildFile; fileRef = 68B98C2E180B38CD00FFEA35 /* MLOButtonSave.png */; };
68B98C3E180B38CD00FFEA35 /* MLOButtonSelectionHandle.png in Resources */ = {isa = PBXBuildFile; fileRef = 68B98C2F180B38CD00FFEA35 /* MLOButtonSelectionHandle.png */; };
68B98C3F180B38CD00FFEA35 /* MLOButtonShrink.png in Resources */ = {isa = PBXBuildFile; fileRef = 68B98C30180B38CD00FFEA35 /* MLOButtonShrink.png */; };
68B98C40180B38CD00FFEA35 /* MLOContextualMenuEdge.png in Resources */ = {isa = PBXBuildFile; fileRef = 68B98C31180B38CD00FFEA35 /* MLOContextualMenuEdge.png */; };
68B98C41180B38CD00FFEA35 /* MLOLibreOfficeLogo.png in Resources */ = {isa = PBXBuildFile; fileRef = 68B98C32180B38CD00FFEA35 /* MLOLibreOfficeLogo.png */; };
68B98C42180B38CD00FFEA35 /* MLOMagnifier@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 68B98C33180B38CD00FFEA35 /* MLOMagnifier@2x.png */; };
68B98C43180B38CD00FFEA35 /* MLOMagnifierMask@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 68B98C34180B38CD00FFEA35 /* MLOMagnifierMask@2x.png */; };
68B99ED3180BBEE900FFEA35 /* test1.odt in Resources */ = {isa = PBXBuildFile; fileRef = 68B99ED2180BBEE900FFEA35 /* test1.odt */; };
68B99ED9180BBF7100FFEA35 /* mlo-icon-114.png in Resources */ = {isa = PBXBuildFile; fileRef = 68B99ED7180BBF7100FFEA35 /* mlo-icon-114.png */; };
68C6FC51180AD0CA005ACB02 /* libz.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 68C6FC4F180AD0CA005ACB02 /* libz.dylib */; };
68C6FC52180AD0CA005ACB02 /* libiconv.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 68C6FC50180AD0CA005ACB02 /* libiconv.dylib */; };
68C6FC54180AD1B9005ACB02 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 68C6FC53180AD1B9005ACB02 /* QuartzCore.framework */; };
68C6FC56180AD1FB005ACB02 /* CoreText.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 68C6FC55180AD1FB005ACB02 /* CoreText.framework */; };
68C6FC58180AD28C005ACB02 /* MessageUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 68C6FC57180AD28C005ACB02 /* MessageUI.framework */; };
691D78BB180C12D300D52D5E /* types.rdb in Resources */ = {isa = PBXBuildFile; fileRef = 691D78B0180C12D300D52D5E /* types.rdb */; };
88E9476B180DB9B600771808 /* NSObject+MLOFileUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 88E9476A180DB9B600771808 /* NSObject+MLOFileUtils.m */; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
688EAAFD180D679F003741B3 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 688EAAF9180D679F003741B3 /* ios_sharedlo.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 68FDBE2A18053A140064DD74;
remoteInfo = ios_sharedlo;
};
/* End PBXContainerItemProxy section */
/* Begin PBXFileReference section */
681D78AF180C12D300D52D5E /* fundamentalrc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = fundamentalrc; path = resource_link/fundamentalrc; sourceTree = SOURCE_ROOT; };
681D78B0180C12D300D52D5E /* offapi.rdb */ = {isa = PBXFileReference; lastKnownFileType = file; name = offapi.rdb; path = resource_link/offapi.rdb; sourceTree = SOURCE_ROOT; };
681D78B1180C12D300D52D5E /* oovbaapi.rdb */ = {isa = PBXFileReference; lastKnownFileType = file; name = oovbaapi.rdb; path = resource_link/oovbaapi.rdb; sourceTree = SOURCE_ROOT; };
681D78B2180C12D300D52D5E /* program */ = {isa = PBXFileReference; lastKnownFileType = folder; name = program; path = resource_link/program; sourceTree = SOURCE_ROOT; };
681D78B3180C12D300D52D5E /* rc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = rc; path = resource_link/rc; sourceTree = SOURCE_ROOT; };
681D78B5180C12D300D52D5E /* services.rdb */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; name = services.rdb; path = resource_link/services.rdb; sourceTree = SOURCE_ROOT; };
681D78B6180C12D300D52D5E /* share */ = {isa = PBXFileReference; lastKnownFileType = folder; name = share; path = resource_link/share; sourceTree = SOURCE_ROOT; };
681D78B8180C12D300D52D5E /* unorc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = unorc; path = resource_link/unorc; sourceTree = SOURCE_ROOT; };
681D78C5180C136400D52D5E /* ure */ = {isa = PBXFileReference; lastKnownFileType = folder; name = ure; path = resource_link/ure; sourceTree = SOURCE_ROOT; };
688EAAE8180D3130003741B3 /* lo.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = lo.xcconfig; path = ../lo.xcconfig; sourceTree = "<group>"; };
688EAAF9180D679F003741B3 /* ios_sharedlo.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = ios_sharedlo.xcodeproj; path = ../shared/ios_sharedlo.xcodeproj; sourceTree = "<group>"; };
689EBAE718069FB7002F1CD7 /* MobileLibreOffice.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = MobileLibreOffice.app; sourceTree = BUILT_PRODUCTS_DIR; };
689EBAEA18069FB7002F1CD7 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
689EBAEC18069FB7002F1CD7 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
689EBAEE18069FB7002F1CD7 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
689EBAF218069FB7002F1CD7 /* MobileLibreOffice-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "MobileLibreOffice-Info.plist"; sourceTree = "<group>"; };
689EBAF418069FB7002F1CD7 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
689EBAF618069FB7002F1CD7 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
689EBAF818069FB7002F1CD7 /* MobileLibreOffice-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "MobileLibreOffice-Prefix.pch"; sourceTree = "<group>"; };
689EBAFC18069FB8002F1CD7 /* Default.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Default.png; sourceTree = "<group>"; };
689EBAFE18069FB8002F1CD7 /* Default@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Default@2x.png"; sourceTree = "<group>"; };
689EBB0018069FB8002F1CD7 /* Default-568h@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Default-568h@2x.png"; sourceTree = "<group>"; };
689EBB2A1806CC39002F1CD7 /* MLOAppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MLOAppDelegate.h; sourceTree = "<group>"; };
689EBB2B1806CC39002F1CD7 /* MLOAppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MLOAppDelegate.m; sourceTree = "<group>"; };
689EBB2C1806CC39002F1CD7 /* MLOAppViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MLOAppViewController.h; sourceTree = "<group>"; };
689EBB2D1806CC39002F1CD7 /* MLOAppViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MLOAppViewController.m; sourceTree = "<group>"; };
689EBBA51806D370002F1CD7 /* MLOCachedFile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MLOCachedFile.h; sourceTree = "<group>"; };
689EBBA61806D370002F1CD7 /* MLOCachedFile.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MLOCachedFile.m; sourceTree = "<group>"; };
689EBBA71806D370002F1CD7 /* MLOFileCacheManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MLOFileCacheManager.h; sourceTree = "<group>"; };
689EBBA81806D370002F1CD7 /* MLOFileCacheManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MLOFileCacheManager.m; sourceTree = "<group>"; };
689EBBA91806D370002F1CD7 /* MLOFileListViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MLOFileListViewController.h; sourceTree = "<group>"; };
689EBBAA1806D370002F1CD7 /* MLOFileListViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MLOFileListViewController.m; sourceTree = "<group>"; };
689EBBAB1806D370002F1CD7 /* MLOFileManagerViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MLOFileManagerViewController.h; sourceTree = "<group>"; };
689EBBAC1806D370002F1CD7 /* MLOFileManagerViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MLOFileManagerViewController.m; sourceTree = "<group>"; };
689EBBAD1806D370002F1CD7 /* MLOFileManagerViewController_Impl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MLOFileManagerViewController_Impl.h; sourceTree = "<group>"; };
68B98C26180B38CD00FFEA35 /* MLOButtonBack.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = MLOButtonBack.png; path = Resources/Images/MLOButtonBack.png; sourceTree = "<group>"; };
68B98C27180B38CD00FFEA35 /* MLOButtonBack@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "MLOButtonBack@2x.png"; path = "Resources/Images/MLOButtonBack@2x.png"; sourceTree = "<group>"; };
68B98C28180B38CD00FFEA35 /* MLOButtonEdit.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = MLOButtonEdit.png; path = Resources/Images/MLOButtonEdit.png; sourceTree = "<group>"; };
68B98C29180B38CD00FFEA35 /* MLOButtonExpand.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = MLOButtonExpand.png; path = Resources/Images/MLOButtonExpand.png; sourceTree = "<group>"; };
68B98C2A180B38CD00FFEA35 /* MLOButtonFind.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = MLOButtonFind.png; path = Resources/Images/MLOButtonFind.png; sourceTree = "<group>"; };
68B98C2B180B38CD00FFEA35 /* MLOButtonLeft.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = MLOButtonLeft.png; path = Resources/Images/MLOButtonLeft.png; sourceTree = "<group>"; };
68B98C2C180B38CD00FFEA35 /* MLOButtonPrint.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = MLOButtonPrint.png; path = Resources/Images/MLOButtonPrint.png; sourceTree = "<group>"; };
68B98C2D180B38CD00FFEA35 /* MLOButtonRight.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = MLOButtonRight.png; path = Resources/Images/MLOButtonRight.png; sourceTree = "<group>"; };
68B98C2E180B38CD00FFEA35 /* MLOButtonSave.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = MLOButtonSave.png; path = Resources/Images/MLOButtonSave.png; sourceTree = "<group>"; };
68B98C2F180B38CD00FFEA35 /* MLOButtonSelectionHandle.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = MLOButtonSelectionHandle.png; path = Resources/Images/MLOButtonSelectionHandle.png; sourceTree = "<group>"; };
68B98C30180B38CD00FFEA35 /* MLOButtonShrink.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = MLOButtonShrink.png; path = Resources/Images/MLOButtonShrink.png; sourceTree = "<group>"; };
68B98C31180B38CD00FFEA35 /* MLOContextualMenuEdge.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = MLOContextualMenuEdge.png; path = Resources/Images/MLOContextualMenuEdge.png; sourceTree = "<group>"; };
68B98C32180B38CD00FFEA35 /* MLOLibreOfficeLogo.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = MLOLibreOfficeLogo.png; sourceTree = "<group>"; };
68B98C33180B38CD00FFEA35 /* MLOMagnifier@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "MLOMagnifier@2x.png"; path = "Resources/Images/MLOMagnifier@2x.png"; sourceTree = "<group>"; };
68B98C34180B38CD00FFEA35 /* MLOMagnifierMask@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "MLOMagnifierMask@2x.png"; path = "Resources/Images/MLOMagnifierMask@2x.png"; sourceTree = "<group>"; };
68B99ED2180BBEE900FFEA35 /* test1.odt */ = {isa = PBXFileReference; lastKnownFileType = file; name = test1.odt; path = Resources/test1.odt; sourceTree = "<group>"; };
68B99ED6180BBF7100FFEA35 /* mlo-icon-57.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "mlo-icon-57.png"; sourceTree = "<group>"; };
68B99ED7180BBF7100FFEA35 /* mlo-icon-114.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "mlo-icon-114.png"; sourceTree = "<group>"; };
68C6FC4F180AD0CA005ACB02 /* libz.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libz.dylib; path = usr/lib/libz.dylib; sourceTree = SDKROOT; };
68C6FC50180AD0CA005ACB02 /* libiconv.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libiconv.dylib; path = usr/lib/libiconv.dylib; sourceTree = SDKROOT; };
68C6FC53180AD1B9005ACB02 /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; };
68C6FC55180AD1FB005ACB02 /* CoreText.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreText.framework; path = System/Library/Frameworks/CoreText.framework; sourceTree = SDKROOT; };
68C6FC57180AD28C005ACB02 /* MessageUI.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MessageUI.framework; path = System/Library/Frameworks/MessageUI.framework; sourceTree = SDKROOT; };
691D78B0180C12D300D52D5E /* types.rdb */ = {isa = PBXFileReference; lastKnownFileType = file; name = types.rdb; path = resource_link/types.rdb; sourceTree = SOURCE_ROOT; };
88E94769180DB9B600771808 /* NSObject+MLOFileUtils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+MLOFileUtils.h"; sourceTree = "<group>"; };
88E9476A180DB9B600771808 /* NSObject+MLOFileUtils.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+MLOFileUtils.m"; sourceTree = "<group>"; };
BE82BDB8182261AD00A447B5 /* pagechg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pagechg.cxx; path = ../../sw/source/core/layout/pagechg.cxx; sourceTree = "<group>"; };
BE82BDBA182261E900A447B5 /* pagepreviewlayout.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pagepreviewlayout.cxx; path = ../../sw/source/core/view/pagepreviewlayout.cxx; sourceTree = "<group>"; };
BE82BDBB182261E900A447B5 /* printdata.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = printdata.cxx; path = ../../sw/source/core/view/printdata.cxx; sourceTree = "<group>"; };
BE82BDBC182261E900A447B5 /* vdraw.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vdraw.cxx; path = ../../sw/source/core/view/vdraw.cxx; sourceTree = "<group>"; };
BE82BDBD182261E900A447B5 /* viewimp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewimp.cxx; path = ../../sw/source/core/view/viewimp.cxx; sourceTree = "<group>"; };
BE82BDBE182261E900A447B5 /* viewpg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewpg.cxx; path = ../../sw/source/core/view/viewpg.cxx; sourceTree = "<group>"; };
BE82BDBF182261E900A447B5 /* viewsh.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewsh.cxx; path = ../../sw/source/core/view/viewsh.cxx; sourceTree = "<group>"; };
BE82BDC0182261E900A447B5 /* vnew.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vnew.cxx; path = ../../sw/source/core/view/vnew.cxx; sourceTree = "<group>"; };
BE82BDC1182261E900A447B5 /* vprint.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vprint.cxx; path = ../../sw/source/core/view/vprint.cxx; sourceTree = "<group>"; };
BE82BDC21822622000A447B5 /* anchoreddrawobject.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = anchoreddrawobject.cxx; path = ../../sw/source/core/layout/anchoreddrawobject.cxx; sourceTree = "<group>"; };
BE82BDC31822622000A447B5 /* anchoredobject.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = anchoredobject.cxx; path = ../../sw/source/core/layout/anchoredobject.cxx; sourceTree = "<group>"; };
BE82BDC41822622000A447B5 /* atrfrm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = atrfrm.cxx; path = ../../sw/source/core/layout/atrfrm.cxx; sourceTree = "<group>"; };
BE82BDC51822622000A447B5 /* calcmove.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = calcmove.cxx; path = ../../sw/source/core/layout/calcmove.cxx; sourceTree = "<group>"; };
BE82BDC61822622000A447B5 /* colfrm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = colfrm.cxx; path = ../../sw/source/core/layout/colfrm.cxx; sourceTree = "<group>"; };
BE82BDC71822622000A447B5 /* dbg_lay.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dbg_lay.cxx; path = ../../sw/source/core/layout/dbg_lay.cxx; sourceTree = "<group>"; };
BE82BDC81822622000A447B5 /* dumpfilter.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dumpfilter.cxx; path = ../../sw/source/core/layout/dumpfilter.cxx; sourceTree = "<group>"; };
BE82BDC91822622000A447B5 /* findfrm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = findfrm.cxx; path = ../../sw/source/core/layout/findfrm.cxx; sourceTree = "<group>"; };
BE82BDCA1822622000A447B5 /* flowfrm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = flowfrm.cxx; path = ../../sw/source/core/layout/flowfrm.cxx; sourceTree = "<group>"; };
BE82BDCB1822622000A447B5 /* fly.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fly.cxx; path = ../../sw/source/core/layout/fly.cxx; sourceTree = "<group>"; };
BE82BDCC1822622000A447B5 /* flycnt.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = flycnt.cxx; path = ../../sw/source/core/layout/flycnt.cxx; sourceTree = "<group>"; };
BE82BDCD1822622000A447B5 /* flyincnt.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = flyincnt.cxx; path = ../../sw/source/core/layout/flyincnt.cxx; sourceTree = "<group>"; };
BE82BDCE1822622000A447B5 /* flylay.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = flylay.cxx; path = ../../sw/source/core/layout/flylay.cxx; sourceTree = "<group>"; };
BE82BDCF1822622000A447B5 /* flypos.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = flypos.cxx; path = ../../sw/source/core/layout/flypos.cxx; sourceTree = "<group>"; };
BE82BDD01822622000A447B5 /* frmtool.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = frmtool.cxx; path = ../../sw/source/core/layout/frmtool.cxx; sourceTree = "<group>"; };
BE82BDD11822622000A447B5 /* ftnfrm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ftnfrm.cxx; path = ../../sw/source/core/layout/ftnfrm.cxx; sourceTree = "<group>"; };
BE82BDD21822622000A447B5 /* hffrm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = hffrm.cxx; path = ../../sw/source/core/layout/hffrm.cxx; sourceTree = "<group>"; };
BE82BDD31822622000A447B5 /* layact.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = layact.cxx; path = ../../sw/source/core/layout/layact.cxx; sourceTree = "<group>"; };
BE82BDD41822622000A447B5 /* laycache.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = laycache.cxx; path = ../../sw/source/core/layout/laycache.cxx; sourceTree = "<group>"; };
BE82BDD51822622000A447B5 /* layhelp.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = layhelp.hxx; path = ../../sw/source/core/layout/layhelp.hxx; sourceTree = "<group>"; };
BE82BDD61822622000A447B5 /* layouter.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = layouter.cxx; path = ../../sw/source/core/layout/layouter.cxx; sourceTree = "<group>"; };
BE82BDD71822622000A447B5 /* movedfwdfrmsbyobjpos.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = movedfwdfrmsbyobjpos.cxx; path = ../../sw/source/core/layout/movedfwdfrmsbyobjpos.cxx; sourceTree = "<group>"; };
BE82BDD81822622100A447B5 /* newfrm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = newfrm.cxx; path = ../../sw/source/core/layout/newfrm.cxx; sourceTree = "<group>"; };
BE82BDD91822622100A447B5 /* objectformatter.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = objectformatter.cxx; path = ../../sw/source/core/layout/objectformatter.cxx; sourceTree = "<group>"; };
BE82BDDA1822622100A447B5 /* objectformatterlayfrm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = objectformatterlayfrm.cxx; path = ../../sw/source/core/layout/objectformatterlayfrm.cxx; sourceTree = "<group>"; };
BE82BDDB1822622100A447B5 /* objectformatterlayfrm.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = objectformatterlayfrm.hxx; path = ../../sw/source/core/layout/objectformatterlayfrm.hxx; sourceTree = "<group>"; };
BE82BDDC1822622100A447B5 /* objectformattertxtfrm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = objectformattertxtfrm.cxx; path = ../../sw/source/core/layout/objectformattertxtfrm.cxx; sourceTree = "<group>"; };
BE82BDDD1822622100A447B5 /* objectformattertxtfrm.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = objectformattertxtfrm.hxx; path = ../../sw/source/core/layout/objectformattertxtfrm.hxx; sourceTree = "<group>"; };
BE82BDDE1822622100A447B5 /* objstmpconsiderwrapinfl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = objstmpconsiderwrapinfl.cxx; path = ../../sw/source/core/layout/objstmpconsiderwrapinfl.cxx; sourceTree = "<group>"; };
BE82BDDF1822622100A447B5 /* objstmpconsiderwrapinfl.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = objstmpconsiderwrapinfl.hxx; path = ../../sw/source/core/layout/objstmpconsiderwrapinfl.hxx; sourceTree = "<group>"; };
BE82BDE01822622100A447B5 /* pagedesc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pagedesc.cxx; path = ../../sw/source/core/layout/pagedesc.cxx; sourceTree = "<group>"; };
BE82BDE11822622100A447B5 /* paintfrm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = paintfrm.cxx; path = ../../sw/source/core/layout/paintfrm.cxx; sourceTree = "<group>"; };
BE82BDE21822622100A447B5 /* sectfrm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sectfrm.cxx; path = ../../sw/source/core/layout/sectfrm.cxx; sourceTree = "<group>"; };
BE82BDE31822622100A447B5 /* softpagebreak.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = softpagebreak.cxx; path = ../../sw/source/core/layout/softpagebreak.cxx; sourceTree = "<group>"; };
BE82BDE41822622100A447B5 /* sortedobjs.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sortedobjs.cxx; path = ../../sw/source/core/layout/sortedobjs.cxx; sourceTree = "<group>"; };
BE82BDE51822622100A447B5 /* ssfrm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ssfrm.cxx; path = ../../sw/source/core/layout/ssfrm.cxx; sourceTree = "<group>"; };
BE82BDE61822622100A447B5 /* swselectionlist.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = swselectionlist.cxx; path = ../../sw/source/core/layout/swselectionlist.cxx; sourceTree = "<group>"; };
BE82BDE71822622100A447B5 /* tabfrm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tabfrm.cxx; path = ../../sw/source/core/layout/tabfrm.cxx; sourceTree = "<group>"; };
BE82BDE81822622100A447B5 /* trvlfrm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = trvlfrm.cxx; path = ../../sw/source/core/layout/trvlfrm.cxx; sourceTree = "<group>"; };
BE82BDE91822622100A447B5 /* unusedf.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = unusedf.cxx; path = ../../sw/source/core/layout/unusedf.cxx; sourceTree = "<group>"; };
BE82BDEA1822622100A447B5 /* virtoutp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = virtoutp.cxx; path = ../../sw/source/core/layout/virtoutp.cxx; sourceTree = "<group>"; };
BE82BDEB1822622100A447B5 /* virtoutp.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = virtoutp.hxx; path = ../../sw/source/core/layout/virtoutp.hxx; sourceTree = "<group>"; };
BE82BDEC1822622100A447B5 /* wsfrm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = wsfrm.cxx; path = ../../sw/source/core/layout/wsfrm.cxx; sourceTree = "<group>"; };
BE82BDEE1822625000A447B5 /* dummies.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dummies.cxx; path = ../../vcl/ios/dummies.cxx; sourceTree = "<group>"; };
BE82BDEF1822625000A447B5 /* iosinst.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = iosinst.cxx; path = ../../vcl/ios/iosinst.cxx; sourceTree = "<group>"; };
BE82BDF31822628500A447B5 /* svpbmp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svpbmp.cxx; path = ../../vcl/headless/svpbmp.cxx; sourceTree = "<group>"; };
BE82BDF41822628500A447B5 /* svpdata.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svpdata.cxx; path = ../../vcl/headless/svpdata.cxx; sourceTree = "<group>"; };
BE82BDF51822628500A447B5 /* svpdummies.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svpdummies.cxx; path = ../../vcl/headless/svpdummies.cxx; sourceTree = "<group>"; };
BE82BDF61822628500A447B5 /* svpframe.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svpframe.cxx; path = ../../vcl/headless/svpframe.cxx; sourceTree = "<group>"; };
BE82BDF71822628500A447B5 /* svpgdi.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svpgdi.cxx; path = ../../vcl/headless/svpgdi.cxx; sourceTree = "<group>"; };
BE82BDF81822628500A447B5 /* svpinst.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svpinst.cxx; path = ../../vcl/headless/svpinst.cxx; sourceTree = "<group>"; };
BE82BDFB1822628500A447B5 /* svpvd.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svpvd.cxx; path = ../../vcl/headless/svpvd.cxx; sourceTree = "<group>"; };
BE82BDFC18228BD200A447B5 /* alpha.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = alpha.cxx; path = ../../vcl/source/gdi/alpha.cxx; sourceTree = "<group>"; };
BE82BDFD18228BD200A447B5 /* animate.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = animate.cxx; path = ../../vcl/source/gdi/animate.cxx; sourceTree = "<group>"; };
BE82BDFE18228BD200A447B5 /* base14.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = base14.cxx; path = ../../vcl/source/gdi/base14.cxx; sourceTree = "<group>"; };
BE82BDFF18228BD200A447B5 /* bitmap.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bitmap.cxx; path = ../../vcl/source/gdi/bitmap.cxx; sourceTree = "<group>"; };
BE82BE0018228BD200A447B5 /* bitmap3.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bitmap3.cxx; path = ../../vcl/source/gdi/bitmap3.cxx; sourceTree = "<group>"; };
BE82BE0118228BD200A447B5 /* bitmap4.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bitmap4.cxx; path = ../../vcl/source/gdi/bitmap4.cxx; sourceTree = "<group>"; };
BE82BE0218228BD200A447B5 /* bitmapex.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bitmapex.cxx; path = ../../vcl/source/gdi/bitmapex.cxx; sourceTree = "<group>"; };
BE82BE0318228BD200A447B5 /* bmpacc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bmpacc.cxx; path = ../../vcl/source/gdi/bmpacc.cxx; sourceTree = "<group>"; };
BE82BE0418228BD200A447B5 /* bmpacc2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bmpacc2.cxx; path = ../../vcl/source/gdi/bmpacc2.cxx; sourceTree = "<group>"; };
BE82BE0518228BD200A447B5 /* bmpacc3.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bmpacc3.cxx; path = ../../vcl/source/gdi/bmpacc3.cxx; sourceTree = "<group>"; };
BE82BE0618228BD200A447B5 /* bmpfast.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bmpfast.cxx; path = ../../vcl/source/gdi/bmpfast.cxx; sourceTree = "<group>"; };
BE82BE0718228BD200A447B5 /* configsettings.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = configsettings.cxx; path = ../../vcl/source/gdi/configsettings.cxx; sourceTree = "<group>"; };
BE82BE0818228BD200A447B5 /* cvtgrf.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cvtgrf.cxx; path = ../../vcl/source/gdi/cvtgrf.cxx; sourceTree = "<group>"; };
BE82BE0918228BD200A447B5 /* cvtsvm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cvtsvm.cxx; path = ../../vcl/source/gdi/cvtsvm.cxx; sourceTree = "<group>"; };
BE82BE0A18228BD200A447B5 /* dibtools.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dibtools.cxx; path = ../../vcl/source/gdi/dibtools.cxx; sourceTree = "<group>"; };
BE82BE0B18228BD200A447B5 /* embeddedfontshelper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = embeddedfontshelper.cxx; path = ../../vcl/source/gdi/embeddedfontshelper.cxx; sourceTree = "<group>"; };
BE82BE0C18228BD200A447B5 /* extoutdevdata.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = extoutdevdata.cxx; path = ../../vcl/source/gdi/extoutdevdata.cxx; sourceTree = "<group>"; };
BE82BE0D18228BD200A447B5 /* font.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = font.cxx; path = ../../vcl/source/gdi/font.cxx; sourceTree = "<group>"; };
BE82BE0E18228BD200A447B5 /* gdimetafiletools.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gdimetafiletools.cxx; path = ../../vcl/source/gdi/gdimetafiletools.cxx; sourceTree = "<group>"; };
BE82BE0F18228BD200A447B5 /* gdimtf.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gdimtf.cxx; path = ../../vcl/source/gdi/gdimtf.cxx; sourceTree = "<group>"; };
BE82BE1018228BD200A447B5 /* gfxlink.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gfxlink.cxx; path = ../../vcl/source/gdi/gfxlink.cxx; sourceTree = "<group>"; };
BE82BE1118228BD200A447B5 /* gradient.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gradient.cxx; path = ../../vcl/source/gdi/gradient.cxx; sourceTree = "<group>"; };
BE82BE1218228BD200A447B5 /* graph.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = graph.cxx; path = ../../vcl/source/gdi/graph.cxx; sourceTree = "<group>"; };
BE82BE1318228BD200A447B5 /* graphictools.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = graphictools.cxx; path = ../../vcl/source/gdi/graphictools.cxx; sourceTree = "<group>"; };
BE82BE1418228BD200A447B5 /* hatch.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = hatch.cxx; path = ../../vcl/source/gdi/hatch.cxx; sourceTree = "<group>"; };
BE82BE1518228BD200A447B5 /* image.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = image.cxx; path = ../../vcl/source/gdi/image.cxx; sourceTree = "<group>"; };
BE82BE1618228BD200A447B5 /* imagerepository.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = imagerepository.cxx; path = ../../vcl/source/gdi/imagerepository.cxx; sourceTree = "<group>"; };
BE82BE1718228BD200A447B5 /* impanmvw.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = impanmvw.cxx; path = ../../vcl/source/gdi/impanmvw.cxx; sourceTree = "<group>"; };
BE82BE1818228BD200A447B5 /* impanmvw.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = impanmvw.hxx; path = ../../vcl/source/gdi/impanmvw.hxx; sourceTree = "<group>"; };
BE82BE1918228BD200A447B5 /* impbmp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = impbmp.cxx; path = ../../vcl/source/gdi/impbmp.cxx; sourceTree = "<group>"; };
BE82BE1A18228BD200A447B5 /* impgraph.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = impgraph.cxx; path = ../../vcl/source/gdi/impgraph.cxx; sourceTree = "<group>"; };
BE82BE1B18228BD200A447B5 /* impimage.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = impimage.cxx; path = ../../vcl/source/gdi/impimage.cxx; sourceTree = "<group>"; };
BE82BE1C18228BD200A447B5 /* impimagetree.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = impimagetree.cxx; path = ../../vcl/source/gdi/impimagetree.cxx; sourceTree = "<group>"; };
BE82BE1D18228BD200A447B5 /* impvect.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = impvect.cxx; path = ../../vcl/source/gdi/impvect.cxx; sourceTree = "<group>"; };
BE82BE1E18228BD200A447B5 /* impvect.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = impvect.hxx; path = ../../vcl/source/gdi/impvect.hxx; sourceTree = "<group>"; };
BE82BE1F18228BD200A447B5 /* jobset.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = jobset.cxx; path = ../../vcl/source/gdi/jobset.cxx; sourceTree = "<group>"; };
BE82BE2018228BD200A447B5 /* lineinfo.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = lineinfo.cxx; path = ../../vcl/source/gdi/lineinfo.cxx; sourceTree = "<group>"; };
BE82BE2118228BD200A447B5 /* mapmod.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = mapmod.cxx; path = ../../vcl/source/gdi/mapmod.cxx; sourceTree = "<group>"; };
BE82BE2218228BD200A447B5 /* metaact.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = metaact.cxx; path = ../../vcl/source/gdi/metaact.cxx; sourceTree = "<group>"; };
BE82BE2318228BD200A447B5 /* metric.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = metric.cxx; path = ../../vcl/source/gdi/metric.cxx; sourceTree = "<group>"; };
BE82BE2418228BD200A447B5 /* octree.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = octree.cxx; path = ../../vcl/source/gdi/octree.cxx; sourceTree = "<group>"; };
BE82BE2518228BD200A447B5 /* oldprintadaptor.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = oldprintadaptor.cxx; path = ../../vcl/source/gdi/oldprintadaptor.cxx; sourceTree = "<group>"; };
BE82BE2618228BD200A447B5 /* outdev.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = outdev.cxx; path = ../../vcl/source/gdi/outdev.cxx; sourceTree = "<group>"; };
BE82BE2718228BD200A447B5 /* outdev2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = outdev2.cxx; path = ../../vcl/source/gdi/outdev2.cxx; sourceTree = "<group>"; };
BE82BE2818228BD200A447B5 /* outdev3.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = outdev3.cxx; path = ../../vcl/source/gdi/outdev3.cxx; sourceTree = "<group>"; };
BE82BE2918228BD200A447B5 /* outdev4.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = outdev4.cxx; path = ../../vcl/source/gdi/outdev4.cxx; sourceTree = "<group>"; };
BE82BE2A18228BD200A447B5 /* outdev5.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = outdev5.cxx; path = ../../vcl/source/gdi/outdev5.cxx; sourceTree = "<group>"; };
BE82BE2B18228BD200A447B5 /* outdev6.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = outdev6.cxx; path = ../../vcl/source/gdi/outdev6.cxx; sourceTree = "<group>"; };
BE82BE2C18228BD200A447B5 /* outdevnative.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = outdevnative.cxx; path = ../../vcl/source/gdi/outdevnative.cxx; sourceTree = "<group>"; };
BE82BE2D18228BD200A447B5 /* outmap.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = outmap.cxx; path = ../../vcl/source/gdi/outmap.cxx; sourceTree = "<group>"; };
BE82BE2E18228BD200A447B5 /* pdfextoutdevdata.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pdfextoutdevdata.cxx; path = ../../vcl/source/gdi/pdfextoutdevdata.cxx; sourceTree = "<group>"; };
BE82BE2F18228BD200A447B5 /* pdffontcache.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pdffontcache.cxx; path = ../../vcl/source/gdi/pdffontcache.cxx; sourceTree = "<group>"; };
BE82BE3018228BD200A447B5 /* pdffontcache.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = pdffontcache.hxx; path = ../../vcl/source/gdi/pdffontcache.hxx; sourceTree = "<group>"; };
BE82BE3118228BD200A447B5 /* pdfwriter_impl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pdfwriter_impl.cxx; path = ../../vcl/source/gdi/pdfwriter_impl.cxx; sourceTree = "<group>"; };
BE82BE3218228BD200A447B5 /* pdfwriter_impl.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = pdfwriter_impl.hxx; path = ../../vcl/source/gdi/pdfwriter_impl.hxx; sourceTree = "<group>"; };
BE82BE3318228BD200A447B5 /* pdfwriter_impl2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pdfwriter_impl2.cxx; path = ../../vcl/source/gdi/pdfwriter_impl2.cxx; sourceTree = "<group>"; };
BE82BE3418228BD200A447B5 /* pdfwriter.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pdfwriter.cxx; path = ../../vcl/source/gdi/pdfwriter.cxx; sourceTree = "<group>"; };
BE82BE3518228BD200A447B5 /* pngread.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pngread.cxx; path = ../../vcl/source/gdi/pngread.cxx; sourceTree = "<group>"; };
BE82BE3618228BD200A447B5 /* pngwrite.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pngwrite.cxx; path = ../../vcl/source/gdi/pngwrite.cxx; sourceTree = "<group>"; };
BE82BE3718228BD200A447B5 /* print.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = print.cxx; path = ../../vcl/source/gdi/print.cxx; sourceTree = "<group>"; };
BE82BE3818228BD200A447B5 /* print2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = print2.cxx; path = ../../vcl/source/gdi/print2.cxx; sourceTree = "<group>"; };
BE82BE3918228BD200A447B5 /* print3.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = print3.cxx; path = ../../vcl/source/gdi/print3.cxx; sourceTree = "<group>"; };
BE82BE3A18228BD200A447B5 /* regband.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = regband.cxx; path = ../../vcl/source/gdi/regband.cxx; sourceTree = "<group>"; };
BE82BE3B18228BD200A447B5 /* region.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = region.cxx; path = ../../vcl/source/gdi/region.cxx; sourceTree = "<group>"; };
BE82BE3C18228BD200A447B5 /* regionband.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = regionband.cxx; path = ../../vcl/source/gdi/regionband.cxx; sourceTree = "<group>"; };
BE82BE3D18228BD200A447B5 /* salgdilayout.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = salgdilayout.cxx; path = ../../vcl/source/gdi/salgdilayout.cxx; sourceTree = "<group>"; };
BE82BE3E18228BD200A447B5 /* sallayout.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sallayout.cxx; path = ../../vcl/source/gdi/sallayout.cxx; sourceTree = "<group>"; };
BE82BE3F18228BD200A447B5 /* salmisc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = salmisc.cxx; path = ../../vcl/source/gdi/salmisc.cxx; sourceTree = "<group>"; };
BE82BE4018228BD200A447B5 /* salnativewidgets-none.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "salnativewidgets-none.cxx"; path = "../../vcl/source/gdi/salnativewidgets-none.cxx"; sourceTree = "<group>"; };
BE82BE4118228BD200A447B5 /* svgdata.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svgdata.cxx; path = ../../vcl/source/gdi/svgdata.cxx; sourceTree = "<group>"; };
BE82BE4218228BD200A447B5 /* textlayout.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textlayout.cxx; path = ../../vcl/source/gdi/textlayout.cxx; sourceTree = "<group>"; };
BE82BE4318228BD200A447B5 /* virdev.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = virdev.cxx; path = ../../vcl/source/gdi/virdev.cxx; sourceTree = "<group>"; };
BE82BE4418228BD200A447B5 /* wall.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = wall.cxx; path = ../../vcl/source/gdi/wall.cxx; sourceTree = "<group>"; };
BE82BE4718228CA600A447B5 /* impbmp.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = impbmp.hxx; path = ../../vcl/inc/impbmp.hxx; sourceTree = "<group>"; };
BE82BE4B1822D10F00A447B5 /* ctfonts.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ctfonts.cxx; path = ../../vcl/quartz/ctfonts.cxx; sourceTree = "<group>"; };
BE82BE4D1822D10F00A447B5 /* ctlayout.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ctlayout.cxx; path = ../../vcl/quartz/ctlayout.cxx; sourceTree = "<group>"; };
BE82BE4E1822D10F00A447B5 /* salgdi.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = salgdi.cxx; path = ../../vcl/quartz/salgdi.cxx; sourceTree = "<group>"; };
BEC9DABC1858BA39009CCCB3 /* svdpagv.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdpagv.cxx; path = ../../svx/source/svdraw/svdpagv.cxx; sourceTree = "<group>"; };
BEDB0EFB185A05BE009A6F26 /* salvd.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = salvd.cxx; path = ../../vcl/quartz/salvd.cxx; sourceTree = "<group>"; };
BEE68B5D185715EE0049ECE0 /* salbmp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = salbmp.cxx; path = ../../vcl/quartz/salbmp.cxx; sourceTree = "<group>"; };
BEE68B5E185715EE0049ECE0 /* salgdicommon.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = salgdicommon.cxx; path = ../../vcl/quartz/salgdicommon.cxx; sourceTree = "<group>"; };
BEE68B5F185715EE0049ECE0 /* salgdiutils.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = salgdiutils.cxx; path = ../../vcl/quartz/salgdiutils.cxx; sourceTree = "<group>"; };
BEE68B60185715EE0049ECE0 /* salmathutils.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = salmathutils.cxx; path = ../../vcl/quartz/salmathutils.cxx; sourceTree = "<group>"; };
BEE68B61185715EE0049ECE0 /* utils.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = utils.cxx; path = ../../vcl/quartz/utils.cxx; sourceTree = "<group>"; };
BEE68B63185746E80049ECE0 /* bitmapdevice.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bitmapdevice.cxx; path = ../../basebmp/source/bitmapdevice.cxx; sourceTree = "<group>"; };
BEE68B64185746E80049ECE0 /* debug.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = debug.cxx; path = ../../basebmp/source/debug.cxx; sourceTree = "<group>"; };
BEE68B65185746E80049ECE0 /* polypolygonrenderer.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = polypolygonrenderer.cxx; path = ../../basebmp/source/polypolygonrenderer.cxx; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
689EBAE418069FB7002F1CD7 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
688EAB01180D67E9003741B3 /* libios_sharedlo.a in Frameworks */,
68C6FC51180AD0CA005ACB02 /* libz.dylib in Frameworks */,
68C6FC52180AD0CA005ACB02 /* libiconv.dylib in Frameworks */,
689EBAEB18069FB7002F1CD7 /* UIKit.framework in Frameworks */,
689EBAED18069FB7002F1CD7 /* Foundation.framework in Frameworks */,
689EBAEF18069FB7002F1CD7 /* CoreGraphics.framework in Frameworks */,
68C6FC54180AD1B9005ACB02 /* QuartzCore.framework in Frameworks */,
68C6FC56180AD1FB005ACB02 /* CoreText.framework in Frameworks */,
68C6FC58180AD28C005ACB02 /* MessageUI.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
688EAAEE180D561A003741B3 /* Config */ = {
isa = PBXGroup;
children = (
689EBAF118069FB7002F1CD7 /* Supporting Files */,
688EAAE8180D3130003741B3 /* lo.xcconfig */,
);
name = Config;
sourceTree = "<group>";
};
688EAAFA180D679F003741B3 /* Products */ = {
isa = PBXGroup;
children = (
688EAAFE180D679F003741B3 /* libios_sharedlo.a */,
);
name = Products;
sourceTree = "<group>";
};
689EBADE18069FB7002F1CD7 = {
isa = PBXGroup;
children = (
BE82BDB41822616200A447B5 /* LibreOffice source files */,
688EAAF9180D679F003741B3 /* ios_sharedlo.xcodeproj */,
689EBAF018069FB7002F1CD7 /* MobileLibreOffice */,
688EAAEE180D561A003741B3 /* Config */,
689EBAE918069FB7002F1CD7 /* Frameworks */,
88A2ED1B180D4796009F39C0 /* Resources */,
689EBAE818069FB7002F1CD7 /* Products */,
);
sourceTree = "<group>";
};
689EBAE818069FB7002F1CD7 /* Products */ = {
isa = PBXGroup;
children = (
689EBAE718069FB7002F1CD7 /* MobileLibreOffice.app */,
);
name = Products;
sourceTree = "<group>";
};
689EBAE918069FB7002F1CD7 /* Frameworks */ = {
isa = PBXGroup;
children = (
68C6FC4F180AD0CA005ACB02 /* libz.dylib */,
68C6FC50180AD0CA005ACB02 /* libiconv.dylib */,
68C6FC57180AD28C005ACB02 /* MessageUI.framework */,
68C6FC53180AD1B9005ACB02 /* QuartzCore.framework */,
68C6FC55180AD1FB005ACB02 /* CoreText.framework */,
689EBAEA18069FB7002F1CD7 /* UIKit.framework */,
689EBAEC18069FB7002F1CD7 /* Foundation.framework */,
689EBAEE18069FB7002F1CD7 /* CoreGraphics.framework */,
);
name = Frameworks;
sourceTree = "<group>";
};
689EBAF018069FB7002F1CD7 /* MobileLibreOffice */ = {
isa = PBXGroup;
children = (
689EBBA41806D370002F1CD7 /* file_manager */,
689EBB2A1806CC39002F1CD7 /* MLOAppDelegate.h */,
689EBB2B1806CC39002F1CD7 /* MLOAppDelegate.m */,
689EBB2C1806CC39002F1CD7 /* MLOAppViewController.h */,
689EBB2D1806CC39002F1CD7 /* MLOAppViewController.m */,
);
path = MobileLibreOffice;
sourceTree = "<group>";
};
689EBAF118069FB7002F1CD7 /* Supporting Files */ = {
isa = PBXGroup;
children = (
689EBAF218069FB7002F1CD7 /* MobileLibreOffice-Info.plist */,
689EBAF318069FB7002F1CD7 /* InfoPlist.strings */,
689EBAF618069FB7002F1CD7 /* main.m */,
689EBAF818069FB7002F1CD7 /* MobileLibreOffice-Prefix.pch */,
689EBAFC18069FB8002F1CD7 /* Default.png */,
689EBAFE18069FB8002F1CD7 /* Default@2x.png */,
689EBB0018069FB8002F1CD7 /* Default-568h@2x.png */,
);
name = "Supporting Files";
path = MobileLibreOffice;
sourceTree = "<group>";
};
689EBBA41806D370002F1CD7 /* file_manager */ = {
isa = PBXGroup;
children = (
689EBBA51806D370002F1CD7 /* MLOCachedFile.h */,
689EBBA61806D370002F1CD7 /* MLOCachedFile.m */,
689EBBA71806D370002F1CD7 /* MLOFileCacheManager.h */,
689EBBA81806D370002F1CD7 /* MLOFileCacheManager.m */,
689EBBA91806D370002F1CD7 /* MLOFileListViewController.h */,
689EBBAA1806D370002F1CD7 /* MLOFileListViewController.m */,
689EBBAB1806D370002F1CD7 /* MLOFileManagerViewController.h */,
689EBBAC1806D370002F1CD7 /* MLOFileManagerViewController.m */,
689EBBAD1806D370002F1CD7 /* MLOFileManagerViewController_Impl.h */,
88E94769180DB9B600771808 /* NSObject+MLOFileUtils.h */,
88E9476A180DB9B600771808 /* NSObject+MLOFileUtils.m */,
);
path = file_manager;
sourceTree = "<group>";
};
68B98C25180B38CD00FFEA35 /* Images */ = {
isa = PBXGroup;
children = (
68B99ED6180BBF7100FFEA35 /* mlo-icon-57.png */,
68B99ED7180BBF7100FFEA35 /* mlo-icon-114.png */,
68B98C32180B38CD00FFEA35 /* MLOLibreOfficeLogo.png */,
);
name = Images;
path = Resources/Images;
sourceTree = "<group>";
};
88A2ED1B180D4796009F39C0 /* Resources */ = {
isa = PBXGroup;
children = (
88A2ED1C180D47E3009F39C0 /* app */,
88A2ED1D180D47EA009F39C0 /* shared */,
);
name = Resources;
path = MobileLibreOffice;
sourceTree = "<group>";
};
88A2ED1C180D47E3009F39C0 /* app */ = {
isa = PBXGroup;
children = (
68B99ED2180BBEE900FFEA35 /* test1.odt */,
68B98C25180B38CD00FFEA35 /* Images */,
);
name = app;
sourceTree = "<group>";
};
88A2ED1D180D47EA009F39C0 /* shared */ = {
isa = PBXGroup;
children = (
88A2ED1F180D481F009F39C0 /* static */,
88A2ED1E180D481A009F39C0 /* linked */,
);
name = shared;
sourceTree = "<group>";
};
88A2ED1E180D481A009F39C0 /* linked */ = {
isa = PBXGroup;
children = (
681D78C5180C136400D52D5E /* ure */,
681D78B2180C12D300D52D5E /* program */,
681D78B6180C12D300D52D5E /* share */,
681D78AF180C12D300D52D5E /* fundamentalrc */,
681D78B0180C12D300D52D5E /* offapi.rdb */,
691D78B0180C12D300D52D5E /* types.rdb */,
681D78B1180C12D300D52D5E /* oovbaapi.rdb */,
681D78B3180C12D300D52D5E /* rc */,
681D78B5180C12D300D52D5E /* services.rdb */,
681D78B8180C12D300D52D5E /* unorc */,
);
name = linked;
sourceTree = "<group>";
};
88A2ED1F180D481F009F39C0 /* static */ = {
isa = PBXGroup;
children = (
88A2ED20180D4840009F39C0 /* Images */,
);
name = static;
sourceTree = "<group>";
};
88A2ED20180D4840009F39C0 /* Images */ = {
isa = PBXGroup;
children = (
68B98C26180B38CD00FFEA35 /* MLOButtonBack.png */,
68B98C27180B38CD00FFEA35 /* MLOButtonBack@2x.png */,
68B98C28180B38CD00FFEA35 /* MLOButtonEdit.png */,
68B98C29180B38CD00FFEA35 /* MLOButtonExpand.png */,
68B98C2A180B38CD00FFEA35 /* MLOButtonFind.png */,
68B98C2B180B38CD00FFEA35 /* MLOButtonLeft.png */,
68B98C2C180B38CD00FFEA35 /* MLOButtonPrint.png */,
68B98C2D180B38CD00FFEA35 /* MLOButtonRight.png */,
68B98C2E180B38CD00FFEA35 /* MLOButtonSave.png */,
68B98C2F180B38CD00FFEA35 /* MLOButtonSelectionHandle.png */,
68B98C30180B38CD00FFEA35 /* MLOButtonShrink.png */,
68B98C31180B38CD00FFEA35 /* MLOContextualMenuEdge.png */,
68B98C33180B38CD00FFEA35 /* MLOMagnifier@2x.png */,
68B98C34180B38CD00FFEA35 /* MLOMagnifierMask@2x.png */,
);
name = Images;
sourceTree = "<group>";
};
BE82BDB41822616200A447B5 /* LibreOffice source files */ = {
isa = PBXGroup;
children = (
BEE68B62185746D20049ECE0 /* basebmp */,
BEC9DABA1858B9DB009CCCB3 /* svx */,
BE82BDB61822617C00A447B5 /* sw */,
BE82BDB51822617500A447B5 /* vcl */,
);
name = "LibreOffice source files";
sourceTree = "<group>";
};
BE82BDB51822617500A447B5 /* vcl */ = {
isa = PBXGroup;
children = (
BE82BE4A1822D0E900A447B5 /* quartz */,
BE82BDF11822626C00A447B5 /* gdi */,
BE82BDF01822625C00A447B5 /* headless */,
BE82BE4618228C6A00A447B5 /* inc */,
BE82BDED1822623D00A447B5 /* ios */,
);
name = vcl;
sourceTree = "<group>";
};
BE82BDB61822617C00A447B5 /* sw */ = {
isa = PBXGroup;
children = (
BE82BDB71822618D00A447B5 /* layout */,
BE82BDB9182261C100A447B5 /* view */,
);
name = sw;
sourceTree = "<group>";
};
BE82BDB71822618D00A447B5 /* layout */ = {
isa = PBXGroup;
children = (
BE82BDC21822622000A447B5 /* anchoreddrawobject.cxx */,
BE82BDC31822622000A447B5 /* anchoredobject.cxx */,
BE82BDC41822622000A447B5 /* atrfrm.cxx */,
BE82BDC51822622000A447B5 /* calcmove.cxx */,
BE82BDC61822622000A447B5 /* colfrm.cxx */,
BE82BDC71822622000A447B5 /* dbg_lay.cxx */,
BE82BDC81822622000A447B5 /* dumpfilter.cxx */,
BE82BDC91822622000A447B5 /* findfrm.cxx */,
BE82BDCA1822622000A447B5 /* flowfrm.cxx */,
BE82BDCB1822622000A447B5 /* fly.cxx */,
BE82BDCC1822622000A447B5 /* flycnt.cxx */,
BE82BDCD1822622000A447B5 /* flyincnt.cxx */,
BE82BDCE1822622000A447B5 /* flylay.cxx */,
BE82BDCF1822622000A447B5 /* flypos.cxx */,
BE82BDD01822622000A447B5 /* frmtool.cxx */,
BE82BDD11822622000A447B5 /* ftnfrm.cxx */,
BE82BDD21822622000A447B5 /* hffrm.cxx */,
BE82BDD31822622000A447B5 /* layact.cxx */,
BE82BDD41822622000A447B5 /* laycache.cxx */,
BE82BDD51822622000A447B5 /* layhelp.hxx */,
BE82BDD61822622000A447B5 /* layouter.cxx */,
BE82BDD71822622000A447B5 /* movedfwdfrmsbyobjpos.cxx */,
BE82BDD81822622100A447B5 /* newfrm.cxx */,
BE82BDD91822622100A447B5 /* objectformatter.cxx */,
BE82BDDA1822622100A447B5 /* objectformatterlayfrm.cxx */,
BE82BDDB1822622100A447B5 /* objectformatterlayfrm.hxx */,
BE82BDDC1822622100A447B5 /* objectformattertxtfrm.cxx */,
BE82BDDD1822622100A447B5 /* objectformattertxtfrm.hxx */,
BE82BDDE1822622100A447B5 /* objstmpconsiderwrapinfl.cxx */,
BE82BDDF1822622100A447B5 /* objstmpconsiderwrapinfl.hxx */,
BE82BDE01822622100A447B5 /* pagedesc.cxx */,
BE82BDE11822622100A447B5 /* paintfrm.cxx */,
BE82BDE21822622100A447B5 /* sectfrm.cxx */,
BE82BDE31822622100A447B5 /* softpagebreak.cxx */,
BE82BDE41822622100A447B5 /* sortedobjs.cxx */,
BE82BDE51822622100A447B5 /* ssfrm.cxx */,
BE82BDE61822622100A447B5 /* swselectionlist.cxx */,
BE82BDE71822622100A447B5 /* tabfrm.cxx */,
BE82BDE81822622100A447B5 /* trvlfrm.cxx */,
BE82BDE91822622100A447B5 /* unusedf.cxx */,
BE82BDEA1822622100A447B5 /* virtoutp.cxx */,
BE82BDEB1822622100A447B5 /* virtoutp.hxx */,
BE82BDEC1822622100A447B5 /* wsfrm.cxx */,
BE82BDB8182261AD00A447B5 /* pagechg.cxx */,
);
name = layout;
sourceTree = "<group>";
};
BE82BDB9182261C100A447B5 /* view */ = {
isa = PBXGroup;
children = (
BE82BDBA182261E900A447B5 /* pagepreviewlayout.cxx */,
BE82BDBB182261E900A447B5 /* printdata.cxx */,
BE82BDBC182261E900A447B5 /* vdraw.cxx */,
BE82BDBD182261E900A447B5 /* viewimp.cxx */,
BE82BDBE182261E900A447B5 /* viewpg.cxx */,
BE82BDBF182261E900A447B5 /* viewsh.cxx */,
BE82BDC0182261E900A447B5 /* vnew.cxx */,
BE82BDC1182261E900A447B5 /* vprint.cxx */,
);
name = view;
sourceTree = "<group>";
};
BE82BDED1822623D00A447B5 /* ios */ = {
isa = PBXGroup;
children = (
BE82BDEE1822625000A447B5 /* dummies.cxx */,
BE82BDEF1822625000A447B5 /* iosinst.cxx */,
);
name = ios;
sourceTree = "<group>";
};
BE82BDF01822625C00A447B5 /* headless */ = {
isa = PBXGroup;
children = (
BE82BDF31822628500A447B5 /* svpbmp.cxx */,
BE82BDF41822628500A447B5 /* svpdata.cxx */,
BE82BDF51822628500A447B5 /* svpdummies.cxx */,
BE82BDF61822628500A447B5 /* svpframe.cxx */,
BE82BDF71822628500A447B5 /* svpgdi.cxx */,
BE82BDF81822628500A447B5 /* svpinst.cxx */,
BE82BDFB1822628500A447B5 /* svpvd.cxx */,
);
name = headless;
sourceTree = "<group>";
};
BE82BDF11822626C00A447B5 /* gdi */ = {
isa = PBXGroup;
children = (
BE82BDFC18228BD200A447B5 /* alpha.cxx */,
BE82BDFD18228BD200A447B5 /* animate.cxx */,
BE82BDFE18228BD200A447B5 /* base14.cxx */,
BE82BDFF18228BD200A447B5 /* bitmap.cxx */,
BE82BE0018228BD200A447B5 /* bitmap3.cxx */,
BE82BE0118228BD200A447B5 /* bitmap4.cxx */,
BE82BE0218228BD200A447B5 /* bitmapex.cxx */,
BE82BE0318228BD200A447B5 /* bmpacc.cxx */,
BE82BE0418228BD200A447B5 /* bmpacc2.cxx */,
BE82BE0518228BD200A447B5 /* bmpacc3.cxx */,
BE82BE0618228BD200A447B5 /* bmpfast.cxx */,
BE82BE0718228BD200A447B5 /* configsettings.cxx */,
BE82BE0818228BD200A447B5 /* cvtgrf.cxx */,
BE82BE0918228BD200A447B5 /* cvtsvm.cxx */,
BE82BE0A18228BD200A447B5 /* dibtools.cxx */,
BE82BE0B18228BD200A447B5 /* embeddedfontshelper.cxx */,
BE82BE0C18228BD200A447B5 /* extoutdevdata.cxx */,
BE82BE0D18228BD200A447B5 /* font.cxx */,
BE82BE0E18228BD200A447B5 /* gdimetafiletools.cxx */,
BE82BE0F18228BD200A447B5 /* gdimtf.cxx */,
BE82BE1018228BD200A447B5 /* gfxlink.cxx */,
BE82BE1118228BD200A447B5 /* gradient.cxx */,
BE82BE1218228BD200A447B5 /* graph.cxx */,
BE82BE1318228BD200A447B5 /* graphictools.cxx */,
BE82BE1418228BD200A447B5 /* hatch.cxx */,
BE82BE1518228BD200A447B5 /* image.cxx */,
BE82BE1618228BD200A447B5 /* imagerepository.cxx */,
BE82BE1718228BD200A447B5 /* impanmvw.cxx */,
BE82BE1818228BD200A447B5 /* impanmvw.hxx */,
BE82BE1918228BD200A447B5 /* impbmp.cxx */,
BE82BE1A18228BD200A447B5 /* impgraph.cxx */,
BE82BE1B18228BD200A447B5 /* impimage.cxx */,
BE82BE1C18228BD200A447B5 /* impimagetree.cxx */,
BE82BE1D18228BD200A447B5 /* impvect.cxx */,
BE82BE1E18228BD200A447B5 /* impvect.hxx */,
BE82BE1F18228BD200A447B5 /* jobset.cxx */,
BE82BE2018228BD200A447B5 /* lineinfo.cxx */,
BE82BE2118228BD200A447B5 /* mapmod.cxx */,
BE82BE2218228BD200A447B5 /* metaact.cxx */,
BE82BE2318228BD200A447B5 /* metric.cxx */,
BE82BE2418228BD200A447B5 /* octree.cxx */,
BE82BE2518228BD200A447B5 /* oldprintadaptor.cxx */,
BE82BE2618228BD200A447B5 /* outdev.cxx */,
BE82BE2718228BD200A447B5 /* outdev2.cxx */,
BE82BE2818228BD200A447B5 /* outdev3.cxx */,
BE82BE2918228BD200A447B5 /* outdev4.cxx */,
BE82BE2A18228BD200A447B5 /* outdev5.cxx */,
BE82BE2B18228BD200A447B5 /* outdev6.cxx */,
BE82BE2C18228BD200A447B5 /* outdevnative.cxx */,
BE82BE2D18228BD200A447B5 /* outmap.cxx */,
BE82BE2E18228BD200A447B5 /* pdfextoutdevdata.cxx */,
BE82BE2F18228BD200A447B5 /* pdffontcache.cxx */,
BE82BE3018228BD200A447B5 /* pdffontcache.hxx */,
BE82BE3118228BD200A447B5 /* pdfwriter_impl.cxx */,
BE82BE3218228BD200A447B5 /* pdfwriter_impl.hxx */,
BE82BE3318228BD200A447B5 /* pdfwriter_impl2.cxx */,
BE82BE3418228BD200A447B5 /* pdfwriter.cxx */,
BE82BE3518228BD200A447B5 /* pngread.cxx */,
BE82BE3618228BD200A447B5 /* pngwrite.cxx */,
BE82BE3718228BD200A447B5 /* print.cxx */,
BE82BE3818228BD200A447B5 /* print2.cxx */,
BE82BE3918228BD200A447B5 /* print3.cxx */,
BE82BE3A18228BD200A447B5 /* regband.cxx */,
BE82BE3B18228BD200A447B5 /* region.cxx */,
BE82BE3C18228BD200A447B5 /* regionband.cxx */,
BE82BE3D18228BD200A447B5 /* salgdilayout.cxx */,
BE82BE3E18228BD200A447B5 /* sallayout.cxx */,
BE82BE3F18228BD200A447B5 /* salmisc.cxx */,
BE82BE4018228BD200A447B5 /* salnativewidgets-none.cxx */,
BE82BE4118228BD200A447B5 /* svgdata.cxx */,
BE82BE4218228BD200A447B5 /* textlayout.cxx */,
BE82BE4318228BD200A447B5 /* virdev.cxx */,
BE82BE4418228BD200A447B5 /* wall.cxx */,
);
name = gdi;
sourceTree = "<group>";
};
BE82BE4618228C6A00A447B5 /* inc */ = {
isa = PBXGroup;
children = (
BE82BE4718228CA600A447B5 /* impbmp.hxx */,
);
name = inc;
sourceTree = "<group>";
};
BE82BE4A1822D0E900A447B5 /* quartz */ = {
isa = PBXGroup;
children = (
BE82BE4B1822D10F00A447B5 /* ctfonts.cxx */,
BE82BE4D1822D10F00A447B5 /* ctlayout.cxx */,
BE82BE4E1822D10F00A447B5 /* salgdi.cxx */,
BEE68B5D185715EE0049ECE0 /* salbmp.cxx */,
BEE68B5E185715EE0049ECE0 /* salgdicommon.cxx */,
BEE68B5F185715EE0049ECE0 /* salgdiutils.cxx */,
BEE68B60185715EE0049ECE0 /* salmathutils.cxx */,
BEDB0EFB185A05BE009A6F26 /* salvd.cxx */,
BEE68B61185715EE0049ECE0 /* utils.cxx */,
);
name = quartz;
sourceTree = "<group>";
};
BEC9DABA1858B9DB009CCCB3 /* svx */ = {
isa = PBXGroup;
children = (
BEC9DABC1858BA39009CCCB3 /* svdpagv.cxx */,
);
name = svx;
sourceTree = "<group>";
};
BEE68B62185746D20049ECE0 /* basebmp */ = {
isa = PBXGroup;
children = (
BEE68B63185746E80049ECE0 /* bitmapdevice.cxx */,
BEE68B64185746E80049ECE0 /* debug.cxx */,
BEE68B65185746E80049ECE0 /* polypolygonrenderer.cxx */,
);
name = basebmp;
sourceTree = "<group>";
};
/* End PBXGroup section */
/* Begin PBXNativeTarget section */
689EBAE618069FB7002F1CD7 /* MobileLibreOffice */ = {
isa = PBXNativeTarget;
buildConfigurationList = 689EBB0D18069FB8002F1CD7 /* Build configuration list for PBXNativeTarget "MobileLibreOffice" */;
buildPhases = (
689EBAE318069FB7002F1CD7 /* Sources */,
689EBAE418069FB7002F1CD7 /* Frameworks */,
689EBAE518069FB7002F1CD7 /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = MobileLibreOffice;
productName = MobileLibreOffice;
productReference = 689EBAE718069FB7002F1CD7 /* MobileLibreOffice.app */;
productType = "com.apple.product-type.application";
};
/* End PBXNativeTarget section */
/* Begin PBXProject section */
689EBADF18069FB7002F1CD7 /* Project object */ = {
isa = PBXProject;
attributes = {
LastUpgradeCheck = 0500;
ORGANIZATIONNAME = LibreOffice.org;
};
buildConfigurationList = 689EBAE218069FB7002F1CD7 /* Build configuration list for PBXProject "MobileLibreOffice" */;
compatibilityVersion = "Xcode 3.2";
developmentRegion = English;
hasScannedForEncodings = 0;
knownRegions = (
en,
);
mainGroup = 689EBADE18069FB7002F1CD7;
productRefGroup = 689EBAE818069FB7002F1CD7 /* Products */;
projectDirPath = "";
projectReferences = (
{
ProductGroup = 688EAAFA180D679F003741B3 /* Products */;
ProjectRef = 688EAAF9180D679F003741B3 /* ios_sharedlo.xcodeproj */;
},
);
projectRoot = "";
targets = (
689EBAE618069FB7002F1CD7 /* MobileLibreOffice */,
);
};
/* End PBXProject section */
/* Begin PBXReferenceProxy section */
688EAAFE180D679F003741B3 /* libios_sharedlo.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = libios_sharedlo.a;
remoteRef = 688EAAFD180D679F003741B3 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
/* End PBXReferenceProxy section */
/* Begin PBXResourcesBuildPhase section */
689EBAE518069FB7002F1CD7 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
689EBAFD18069FB8002F1CD7 /* Default.png in Resources */,
689EBAFF18069FB8002F1CD7 /* Default@2x.png in Resources */,
689EBB0118069FB8002F1CD7 /* Default-568h@2x.png in Resources */,
689A7ECC181EA0DD0020710C /* mlo-icon-57.png in Resources */,
68B99ED9180BBF7100FFEA35 /* mlo-icon-114.png in Resources */,
68B98C35180B38CD00FFEA35 /* MLOButtonBack.png in Resources */,
68B98C36180B38CD00FFEA35 /* MLOButtonBack@2x.png in Resources */,
68B98C37180B38CD00FFEA35 /* MLOButtonEdit.png in Resources */,
68B98C38180B38CD00FFEA35 /* MLOButtonExpand.png in Resources */,
68B98C39180B38CD00FFEA35 /* MLOButtonFind.png in Resources */,
68B98C3A180B38CD00FFEA35 /* MLOButtonLeft.png in Resources */,
68B98C3B180B38CD00FFEA35 /* MLOButtonPrint.png in Resources */,
68B98C3C180B38CD00FFEA35 /* MLOButtonRight.png in Resources */,
68B98C3D180B38CD00FFEA35 /* MLOButtonSave.png in Resources */,
68B98C3E180B38CD00FFEA35 /* MLOButtonSelectionHandle.png in Resources */,
68B98C3F180B38CD00FFEA35 /* MLOButtonShrink.png in Resources */,
68B98C40180B38CD00FFEA35 /* MLOContextualMenuEdge.png in Resources */,
68B98C41180B38CD00FFEA35 /* MLOLibreOfficeLogo.png in Resources */,
68B98C42180B38CD00FFEA35 /* MLOMagnifier@2x.png in Resources */,
68B98C43180B38CD00FFEA35 /* MLOMagnifierMask@2x.png in Resources */,
68B99ED3180BBEE900FFEA35 /* test1.odt in Resources */,
681D78BA180C12D300D52D5E /* fundamentalrc in Resources */,
681D78BB180C12D300D52D5E /* offapi.rdb in Resources */,
691D78BB180C12D300D52D5E /* types.rdb in Resources */,
681D78BC180C12D300D52D5E /* oovbaapi.rdb in Resources */,
681D78BD180C12D300D52D5E /* program in Resources */,
681D78BE180C12D300D52D5E /* rc in Resources */,
681D78C0180C12D300D52D5E /* services.rdb in Resources */,
681D78C1180C12D300D52D5E /* share in Resources */,
681D78C3180C12D300D52D5E /* unorc in Resources */,
681D78C6180C136400D52D5E /* ure in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
689EBAE318069FB7002F1CD7 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
689EBAF718069FB7002F1CD7 /* main.m in Sources */,
689EBB2E1806CC3A002F1CD7 /* MLOAppDelegate.m in Sources */,
689EBB2F1806CC3A002F1CD7 /* MLOAppViewController.m in Sources */,
689EBBAE1806D370002F1CD7 /* MLOCachedFile.m in Sources */,
689EBBAF1806D370002F1CD7 /* MLOFileCacheManager.m in Sources */,
689EBBB01806D370002F1CD7 /* MLOFileListViewController.m in Sources */,
689EBBB11806D370002F1CD7 /* MLOFileManagerViewController.m in Sources */,
88E9476B180DB9B600771808 /* NSObject+MLOFileUtils.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXVariantGroup section */
689EBAF318069FB7002F1CD7 /* InfoPlist.strings */ = {
isa = PBXVariantGroup;
children = (
689EBAF418069FB7002F1CD7 /* en */,
);
name = InfoPlist.strings;
sourceTree = "<group>";
};
/* End PBXVariantGroup section */
/* Begin XCBuildConfiguration section */
689EBB0B18069FB8002F1CD7 /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 688EAAE8180D3130003741B3 /* lo.xcconfig */;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
ARCHS = armv7;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
CLANG_X86_VECTOR_INSTRUCTIONS = default;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
COPY_PHASE_STRIP = NO;
DEBUG_INFORMATION_FORMAT = dwarf;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_DYNAMIC_NO_PIC = NO;
GCC_INPUT_FILETYPE = automatic;
GCC_OPTIMIZATION_LEVEL = 0;
GCC_PREPROCESSOR_DEFINITIONS = (
"DEBUG=1",
"MLO_APP_ROLE=LO_APP",
);
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
HEADER_SEARCH_PATHS = (
../shared/ios_sharedlo/objective_c,
../shared/ios_sharedlo/objective_c/utils,
);
IPHONEOS_DEPLOYMENT_TARGET = 6.1;
LIBRARY_SEARCH_PATHS = "";
LLVM_LTO = NO;
ONLY_ACTIVE_ARCH = YES;
OTHER_LDFLAGS = (
"-ObjC",
"$(LINK_LDFLAGS)",
);
SDKROOT = iphoneos;
STRIP_INSTALLED_PRODUCT = NO;
TARGETED_DEVICE_FAMILY = "1,2";
VALID_ARCHS = armv7;
};
name = Debug;
};
689EBB0C18069FB8002F1CD7 /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 688EAAE8180D3130003741B3 /* lo.xcconfig */;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
ARCHS = armv7;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
CLANG_X86_VECTOR_INSTRUCTIONS = default;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
COPY_PHASE_STRIP = YES;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_DYNAMIC_NO_PIC = NO;
GCC_INPUT_FILETYPE = automatic;
GCC_PREPROCESSOR_DEFINITIONS = "MLO_APP_ROLE=LO_APP";
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
HEADER_SEARCH_PATHS = (
../shared/ios_sharedlo/objective_c,
../shared/ios_sharedlo/objective_c/utils,
);
IPHONEOS_DEPLOYMENT_TARGET = 6.1;
LIBRARY_SEARCH_PATHS = "";
LLVM_LTO = NO;
OTHER_CFLAGS = "-DNS_BLOCK_ASSERTIONS=1";
OTHER_LDFLAGS = (
"-ObjC",
"$(LINK_LDFLAGS)",
);
SDKROOT = iphoneos;
STRIP_INSTALLED_PRODUCT = NO;
TARGETED_DEVICE_FAMILY = "1,2";
VALIDATE_PRODUCT = YES;
VALID_ARCHS = armv7;
};
name = Release;
};
689EBB0E18069FB8002F1CD7 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
DEBUG_INFORMATION_FORMAT = dwarf;
GCC_DYNAMIC_NO_PIC = NO;
GCC_INPUT_FILETYPE = sourcecode.cpp.objcpp;
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = "MobileLibreOffice/MobileLibreOffice-Prefix.pch";
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
HEADER_SEARCH_PATHS = "$(inherited)";
INFOPLIST_FILE = "MobileLibreOffice/MobileLibreOffice-Info.plist";
LLVM_LTO = NO;
PRODUCT_NAME = "$(TARGET_NAME)";
WRAPPER_EXTENSION = app;
};
name = Debug;
};
689EBB0F18069FB8002F1CD7 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
GCC_DYNAMIC_NO_PIC = NO;
GCC_INPUT_FILETYPE = sourcecode.cpp.objcpp;
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = "MobileLibreOffice/MobileLibreOffice-Prefix.pch";
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
HEADER_SEARCH_PATHS = "$(inherited)";
INFOPLIST_FILE = "MobileLibreOffice/MobileLibreOffice-Info.plist";
LLVM_LTO = YES;
PRODUCT_NAME = "$(TARGET_NAME)";
WRAPPER_EXTENSION = app;
};
name = Release;
};
88A1330F181023A40091F25E /* Debug_tile_tester */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 688EAAE8180D3130003741B3 /* lo.xcconfig */;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
ARCHS = armv7;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
CLANG_X86_VECTOR_INSTRUCTIONS = default;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
COPY_PHASE_STRIP = NO;
DEBUG_INFORMATION_FORMAT = dwarf;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_DYNAMIC_NO_PIC = NO;
GCC_INPUT_FILETYPE = automatic;
GCC_OPTIMIZATION_LEVEL = 0;
GCC_PREPROCESSOR_DEFINITIONS = (
"MLO_APP_ROLE=TILE_TESTER",
"DEBUG=1",
);
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
HEADER_SEARCH_PATHS = (
../shared/ios_sharedlo/objective_c,
../shared/ios_sharedlo/objective_c/utils,
);
IPHONEOS_DEPLOYMENT_TARGET = 6.1;
LIBRARY_SEARCH_PATHS = "";
LLVM_LTO = NO;
ONLY_ACTIVE_ARCH = NO;
OTHER_LDFLAGS = (
"-ObjC",
"$(LINK_LDFLAGS)",
);
SDKROOT = iphoneos;
STRIP_INSTALLED_PRODUCT = NO;
TARGETED_DEVICE_FAMILY = "1,2";
VALID_ARCHS = armv7;
};
name = Debug_tile_tester;
};
88A13310181023A40091F25E /* Debug_tile_tester */ = {
isa = XCBuildConfiguration;
buildSettings = {
DEBUG_INFORMATION_FORMAT = dwarf;
GCC_DYNAMIC_NO_PIC = NO;
GCC_INPUT_FILETYPE = sourcecode.cpp.objcpp;
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = "MobileLibreOffice/MobileLibreOffice-Prefix.pch";
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
HEADER_SEARCH_PATHS = "$(inherited)";
INFOPLIST_FILE = "MobileLibreOffice/MobileLibreOffice-Info.plist";
LLVM_LTO = NO;
PRODUCT_NAME = "$(TARGET_NAME)";
WRAPPER_EXTENSION = app;
};
name = Debug_tile_tester;
};
/* End XCBuildConfiguration section */
/* Begin XCConfigurationList section */
689EBAE218069FB7002F1CD7 /* Build configuration list for PBXProject "MobileLibreOffice" */ = {
isa = XCConfigurationList;
buildConfigurations = (
689EBB0B18069FB8002F1CD7 /* Debug */,
88A1330F181023A40091F25E /* Debug_tile_tester */,
689EBB0C18069FB8002F1CD7 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
689EBB0D18069FB8002F1CD7 /* Build configuration list for PBXNativeTarget "MobileLibreOffice" */ = {
isa = XCConfigurationList;
buildConfigurations = (
689EBB0E18069FB8002F1CD7 /* Debug */,
88A13310181023A40091F25E /* Debug_tile_tester */,
689EBB0F18069FB8002F1CD7 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
/* End XCConfigurationList section */
};
rootObject = 689EBADF18069FB7002F1CD7 /* Project object */;
}
|