summaryrefslogtreecommitdiff
path: root/ios/experimental/TiledLibreOffice/TiledLibreOffice.xcodeproj/project.pbxproj
blob: e2153dd24d4b61f9aa4e4507017c24801eb814a1 (plain)
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
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
// !$*UTF8*$!
{
	archiveVersion = 1;
	classes = {
	};
	objectVersion = 46;
	objects = {

/* Begin PBXBuildFile section */
		BE55B06D18D87CC600950228 /* DocumentTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = BE55B06C18D87CC600950228 /* DocumentTableViewController.m */; };
		BE82BD7618218E2E00A447B5 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BE82BD7518218E2E00A447B5 /* Foundation.framework */; };
		BE82BD7818218E2E00A447B5 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BE82BD7718218E2E00A447B5 /* CoreGraphics.framework */; };
		BE82BD7A18218E2E00A447B5 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BE82BD7918218E2E00A447B5 /* UIKit.framework */; };
		BE82BD8018218E2E00A447B5 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = BE82BD7E18218E2E00A447B5 /* InfoPlist.strings */; };
		BE82BD8218218E2E00A447B5 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = BE82BD8118218E2E00A447B5 /* main.m */; };
		BE82BD8618218E2E00A447B5 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = BE82BD8518218E2E00A447B5 /* AppDelegate.m */; };
		BE82BD8C18218E2E00A447B5 /* ViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = BE82BD8B18218E2E00A447B5 /* ViewController.m */; };
		BE82BD8E18218E2E00A447B5 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = BE82BD8D18218E2E00A447B5 /* Images.xcassets */; };
		BE82BDAC182190E400A447B5 /* TiledView.m in Sources */ = {isa = PBXBuildFile; fileRef = BE82BDAB182190E400A447B5 /* TiledView.m */; };
		BE82BDAF1821A1D000A447B5 /* View.m in Sources */ = {isa = PBXBuildFile; fileRef = BE82BDAE1821A1D000A447B5 /* View.m */; };
		BECAB372186054DE00F814F9 /* lo.mm in Sources */ = {isa = PBXBuildFile; fileRef = BECAB371186054DE00F814F9 /* lo.mm */; };
		BEEE02D11860ABDB00FBDE67 /* program in Resources */ = {isa = PBXBuildFile; fileRef = BEEE02CE1860ABB700FBDE67 /* program */; };
		BEEE02D21860ABDB00FBDE67 /* share in Resources */ = {isa = PBXBuildFile; fileRef = BEEE02CF1860ABB700FBDE67 /* share */; };
		BEEE02D31860ABDB00FBDE67 /* ure in Resources */ = {isa = PBXBuildFile; fileRef = BEEE02D01860ABB700FBDE67 /* ure */; };
		BEEEF9641860740400FBDE67 /* libiconv.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = BEEEF9631860740400FBDE67 /* libiconv.dylib */; };
		BEEEF9661860741400FBDE67 /* libz.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = BEEEF9651860741400FBDE67 /* libz.dylib */; };
		BEEEF96A1860A25400FBDE67 /* test1.odt in Resources */ = {isa = PBXBuildFile; fileRef = BEEEF9691860A25400FBDE67 /* test1.odt */; };
		BEEEFE011860A89100FBDE67 /* fundamentalrc in Resources */ = {isa = PBXBuildFile; fileRef = BEEEF96D1860A82900FBDE67 /* fundamentalrc */; };
		BEEEFE021860A89100FBDE67 /* offapi.rdb in Resources */ = {isa = PBXBuildFile; fileRef = BEEEF96E1860A82900FBDE67 /* offapi.rdb */; };
		BEEEFE031860A89100FBDE67 /* oovbaapi.rdb in Resources */ = {isa = PBXBuildFile; fileRef = BEEEF96F1860A82900FBDE67 /* oovbaapi.rdb */; };
		BEEEFE041860A89100FBDE67 /* rc in Resources */ = {isa = PBXBuildFile; fileRef = BEEEF9AA1860A82900FBDE67 /* rc */; };
		BEEEFE051860A89100FBDE67 /* services.rdb in Resources */ = {isa = PBXBuildFile; fileRef = BEEEF9AB1860A82900FBDE67 /* services.rdb */; };
		BEEEFE061860A89100FBDE67 /* types.rdb in Resources */ = {isa = PBXBuildFile; fileRef = BEEEFDFD1860A82C00FBDE67 /* types.rdb */; };
		BEEEFE071860A89100FBDE67 /* unorc in Resources */ = {isa = PBXBuildFile; fileRef = BEEEFDFE1860A82C00FBDE67 /* unorc */; };
/* End PBXBuildFile section */

/* Begin PBXFileReference section */
		BE0898E81860D42B0021A679 /* brand.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = brand.cxx; path = ../../../vcl/source/app/brand.cxx; sourceTree = "<group>"; };
		BE0898E91860D42B0021A679 /* dbggui.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dbggui.cxx; path = ../../../vcl/source/app/dbggui.cxx; sourceTree = "<group>"; };
		BE0898EA1860D42B0021A679 /* dndhelp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dndhelp.cxx; path = ../../../vcl/source/app/dndhelp.cxx; sourceTree = "<group>"; };
		BE0898EB1860D42B0021A679 /* help.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = help.cxx; path = ../../../vcl/source/app/help.cxx; sourceTree = "<group>"; };
		BE0898EC1860D42B0021A679 /* i18nhelp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = i18nhelp.cxx; path = ../../../vcl/source/app/i18nhelp.cxx; sourceTree = "<group>"; };
		BE0898ED1860D42B0021A679 /* idlemgr.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = idlemgr.cxx; path = ../../../vcl/source/app/idlemgr.cxx; sourceTree = "<group>"; };
		BE0898EE1860D42B0021A679 /* salvtables.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = salvtables.cxx; path = ../../../vcl/source/app/salvtables.cxx; sourceTree = "<group>"; };
		BE0898EF1860D42B0021A679 /* session.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = session.cxx; path = ../../../vcl/source/app/session.cxx; sourceTree = "<group>"; };
		BE0898F01860D42B0021A679 /* settings.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = settings.cxx; path = ../../../vcl/source/app/settings.cxx; sourceTree = "<group>"; };
		BE0898F11860D42B0021A679 /* solarmutex.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = solarmutex.cxx; path = ../../../vcl/source/app/solarmutex.cxx; sourceTree = "<group>"; };
		BE0898F21860D42B0021A679 /* sound.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sound.cxx; path = ../../../vcl/source/app/sound.cxx; sourceTree = "<group>"; };
		BE0898F31860D42B0021A679 /* stdtext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = stdtext.cxx; path = ../../../vcl/source/app/stdtext.cxx; sourceTree = "<group>"; };
		BE0898F41860D42B0021A679 /* svapp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svapp.cxx; path = ../../../vcl/source/app/svapp.cxx; sourceTree = "<group>"; };
		BE0898F51860D42B0021A679 /* svdata.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdata.cxx; path = ../../../vcl/source/app/svdata.cxx; sourceTree = "<group>"; };
		BE0898F61860D42B0021A679 /* svmain.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svmain.cxx; path = ../../../vcl/source/app/svmain.cxx; sourceTree = "<group>"; };
		BE0898F71860D42B0021A679 /* svmainhook.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svmainhook.cxx; path = ../../../vcl/source/app/svmainhook.cxx; sourceTree = "<group>"; };
		BE0898F81860D42B0021A679 /* timer.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = timer.cxx; path = ../../../vcl/source/app/timer.cxx; sourceTree = "<group>"; };
		BE0898F91860D42B0021A679 /* unohelp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = unohelp.cxx; path = ../../../vcl/source/app/unohelp.cxx; sourceTree = "<group>"; };
		BE0898FA1860D42B0021A679 /* unohelp2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = unohelp2.cxx; path = ../../../vcl/source/app/unohelp2.cxx; sourceTree = "<group>"; };
		BE0898FB1860D42B0021A679 /* vclevent.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vclevent.cxx; path = ../../../vcl/source/app/vclevent.cxx; sourceTree = "<group>"; };
		BE0899141860F6450021A679 /* ctfonts.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ctfonts.cxx; path = ../../../vcl/quartz/ctfonts.cxx; sourceTree = "<group>"; };
		BE0899151860F6450021A679 /* ctlayout.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ctlayout.cxx; path = ../../../vcl/quartz/ctlayout.cxx; sourceTree = "<group>"; };
		BE0899161860F6450021A679 /* salbmp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = salbmp.cxx; path = ../../../vcl/quartz/salbmp.cxx; sourceTree = "<group>"; };
		BE0899171860F6450021A679 /* salgdi.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = salgdi.cxx; path = ../../../vcl/quartz/salgdi.cxx; sourceTree = "<group>"; };
		BE0899181860F6450021A679 /* salgdicommon.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = salgdicommon.cxx; path = ../../../vcl/quartz/salgdicommon.cxx; sourceTree = "<group>"; };
		BE08991B1860F6450021A679 /* salvd.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = salvd.cxx; path = ../../../vcl/quartz/salvd.cxx; sourceTree = "<group>"; };
		BE08991C1860F6450021A679 /* utils.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = utils.cxx; path = ../../../vcl/quartz/utils.cxx; sourceTree = "<group>"; };
		BE35B53918868EFD001B7439 /* dummies.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dummies.cxx; path = ../../../vcl/ios/dummies.cxx; sourceTree = "<group>"; };
		BE35B53A18868EFD001B7439 /* iosinst.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = iosinst.cxx; path = ../../../vcl/ios/iosinst.cxx; sourceTree = "<group>"; };
		BE35B53C18869D69001B7439 /* svpbmp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svpbmp.cxx; path = ../../../vcl/headless/svpbmp.cxx; sourceTree = "<group>"; };
		BE35B53D18869D69001B7439 /* svpdata.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svpdata.cxx; path = ../../../vcl/headless/svpdata.cxx; sourceTree = "<group>"; };
		BE35B53E18869D69001B7439 /* svpdummies.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svpdummies.cxx; path = ../../../vcl/headless/svpdummies.cxx; sourceTree = "<group>"; };
		BE35B53F18869D69001B7439 /* svpframe.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svpframe.cxx; path = ../../../vcl/headless/svpframe.cxx; sourceTree = "<group>"; };
		BE35B54018869D69001B7439 /* svpgdi.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svpgdi.cxx; path = ../../../vcl/headless/svpgdi.cxx; sourceTree = "<group>"; };
		BE35B54118869D69001B7439 /* svpinst.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svpinst.cxx; path = ../../../vcl/headless/svpinst.cxx; sourceTree = "<group>"; };
		BE35B54218869D69001B7439 /* svpvd.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svpvd.cxx; path = ../../../vcl/headless/svpvd.cxx; sourceTree = "<group>"; };
		BE35B5441886C50A001B7439 /* alpha.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = alpha.cxx; path = ../../../vcl/source/gdi/alpha.cxx; sourceTree = "<group>"; };
		BE35B5451886C50A001B7439 /* animate.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = animate.cxx; path = ../../../vcl/source/gdi/animate.cxx; sourceTree = "<group>"; };
		BE35B5461886C50A001B7439 /* base14.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = base14.cxx; path = ../../../vcl/source/gdi/base14.cxx; sourceTree = "<group>"; };
		BE35B5471886C50A001B7439 /* bitmap.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bitmap.cxx; path = ../../../vcl/source/gdi/bitmap.cxx; sourceTree = "<group>"; };
		BE35B5481886C50A001B7439 /* bitmap3.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bitmap3.cxx; path = ../../../vcl/source/gdi/bitmap3.cxx; sourceTree = "<group>"; };
		BE35B5491886C50A001B7439 /* bitmap4.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bitmap4.cxx; path = ../../../vcl/source/gdi/bitmap4.cxx; sourceTree = "<group>"; };
		BE35B54A1886C50A001B7439 /* bitmapex.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bitmapex.cxx; path = ../../../vcl/source/gdi/bitmapex.cxx; sourceTree = "<group>"; };
		BE35B54B1886C50A001B7439 /* bmpacc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bmpacc.cxx; path = ../../../vcl/source/gdi/bmpacc.cxx; sourceTree = "<group>"; };
		BE35B54C1886C50A001B7439 /* bmpacc2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bmpacc2.cxx; path = ../../../vcl/source/gdi/bmpacc2.cxx; sourceTree = "<group>"; };
		BE35B54D1886C50A001B7439 /* bmpacc3.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bmpacc3.cxx; path = ../../../vcl/source/gdi/bmpacc3.cxx; sourceTree = "<group>"; };
		BE35B54E1886C50A001B7439 /* bmpfast.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bmpfast.cxx; path = ../../../vcl/source/gdi/bmpfast.cxx; sourceTree = "<group>"; };
		BE35B54F1886C50A001B7439 /* configsettings.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = configsettings.cxx; path = ../../../vcl/source/gdi/configsettings.cxx; sourceTree = "<group>"; };
		BE35B5501886C50A001B7439 /* cvtgrf.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cvtgrf.cxx; path = ../../../vcl/source/gdi/cvtgrf.cxx; sourceTree = "<group>"; };
		BE35B5511886C50A001B7439 /* cvtsvm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cvtsvm.cxx; path = ../../../vcl/source/gdi/cvtsvm.cxx; sourceTree = "<group>"; };
		BE35B5521886C50A001B7439 /* dibtools.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dibtools.cxx; path = ../../../vcl/source/gdi/dibtools.cxx; sourceTree = "<group>"; };
		BE35B5531886C50A001B7439 /* embeddedfontshelper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = embeddedfontshelper.cxx; path = ../../../vcl/source/gdi/embeddedfontshelper.cxx; sourceTree = "<group>"; };
		BE35B5541886C50A001B7439 /* extoutdevdata.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = extoutdevdata.cxx; path = ../../../vcl/source/gdi/extoutdevdata.cxx; sourceTree = "<group>"; };
		BE35B5551886C50A001B7439 /* font.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = font.cxx; path = ../../../vcl/source/gdi/font.cxx; sourceTree = "<group>"; };
		BE35B5561886C50A001B7439 /* gdimetafiletools.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gdimetafiletools.cxx; path = ../../../vcl/source/gdi/gdimetafiletools.cxx; sourceTree = "<group>"; };
		BE35B5571886C50A001B7439 /* gdimtf.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gdimtf.cxx; path = ../../../vcl/source/gdi/gdimtf.cxx; sourceTree = "<group>"; };
		BE35B5581886C50A001B7439 /* gfxlink.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gfxlink.cxx; path = ../../../vcl/source/gdi/gfxlink.cxx; sourceTree = "<group>"; };
		BE35B5591886C50A001B7439 /* gradient.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gradient.cxx; path = ../../../vcl/source/gdi/gradient.cxx; sourceTree = "<group>"; };
		BE35B55A1886C50A001B7439 /* graph.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = graph.cxx; path = ../../../vcl/source/gdi/graph.cxx; sourceTree = "<group>"; };
		BE35B55B1886C50A001B7439 /* graphictools.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = graphictools.cxx; path = ../../../vcl/source/gdi/graphictools.cxx; sourceTree = "<group>"; };
		BE35B55C1886C50A001B7439 /* hatch.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = hatch.cxx; path = ../../../vcl/source/gdi/hatch.cxx; sourceTree = "<group>"; };
		BE35B55D1886C50A001B7439 /* image.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = image.cxx; path = ../../../vcl/source/gdi/image.cxx; sourceTree = "<group>"; };
		BE35B55E1886C50A001B7439 /* imagerepository.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = imagerepository.cxx; path = ../../../vcl/source/gdi/imagerepository.cxx; sourceTree = "<group>"; };
		BE35B55F1886C50A001B7439 /* impanmvw.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = impanmvw.cxx; path = ../../../vcl/source/gdi/impanmvw.cxx; sourceTree = "<group>"; };
		BE35B5601886C50A001B7439 /* impbmp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = impbmp.cxx; path = ../../../vcl/source/gdi/impbmp.cxx; sourceTree = "<group>"; };
		BE35B5611886C50A001B7439 /* impfont.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = impfont.cxx; path = ../../../vcl/source/gdi/impfont.cxx; sourceTree = "<group>"; };
		BE35B5621886C50A001B7439 /* impgraph.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = impgraph.cxx; path = ../../../vcl/source/gdi/impgraph.cxx; sourceTree = "<group>"; };
		BE35B5631886C50A001B7439 /* impimage.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = impimage.cxx; path = ../../../vcl/source/gdi/impimage.cxx; sourceTree = "<group>"; };
		BE35B5641886C50A001B7439 /* impimagetree.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = impimagetree.cxx; path = ../../../vcl/source/gdi/impimagetree.cxx; sourceTree = "<group>"; };
		BE35B5651886C50A001B7439 /* impvect.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = impvect.cxx; path = ../../../vcl/source/gdi/impvect.cxx; sourceTree = "<group>"; };
		BE35B5661886C50A001B7439 /* jobset.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = jobset.cxx; path = ../../../vcl/source/gdi/jobset.cxx; sourceTree = "<group>"; };
		BE35B5671886C50A001B7439 /* lineinfo.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = lineinfo.cxx; path = ../../../vcl/source/gdi/lineinfo.cxx; sourceTree = "<group>"; };
		BE35B5681886C50A001B7439 /* mapmod.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = mapmod.cxx; path = ../../../vcl/source/gdi/mapmod.cxx; sourceTree = "<group>"; };
		BE35B5691886C50A001B7439 /* metaact.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = metaact.cxx; path = ../../../vcl/source/gdi/metaact.cxx; sourceTree = "<group>"; };
		BE35B56A1886C50A001B7439 /* metric.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = metric.cxx; path = ../../../vcl/source/gdi/metric.cxx; sourceTree = "<group>"; };
		BE35B56B1886C50A001B7439 /* octree.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = octree.cxx; path = ../../../vcl/source/gdi/octree.cxx; sourceTree = "<group>"; };
		BE35B56C1886C50A001B7439 /* oldprintadaptor.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = oldprintadaptor.cxx; path = ../../../vcl/source/gdi/oldprintadaptor.cxx; sourceTree = "<group>"; };
		BE35B56D1886C50A001B7439 /* outdev.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = outdev.cxx; path = ../../../vcl/source/gdi/outdev.cxx; sourceTree = "<group>"; };
		BE35B56E1886C50A001B7439 /* outdev2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = outdev2.cxx; path = ../../../vcl/source/gdi/outdev2.cxx; sourceTree = "<group>"; };
		BE35B56F1886C50A001B7439 /* outdev3.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = outdev3.cxx; path = ../../../vcl/source/gdi/outdev3.cxx; sourceTree = "<group>"; };
		BE35B5701886C50A001B7439 /* outdev4.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = outdev4.cxx; path = ../../../vcl/source/gdi/outdev4.cxx; sourceTree = "<group>"; };
		BE35B5711886C50A001B7439 /* outdev5.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = outdev5.cxx; path = ../../../vcl/source/gdi/outdev5.cxx; sourceTree = "<group>"; };
		BE35B5721886C50A001B7439 /* outdev6.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = outdev6.cxx; path = ../../../vcl/source/gdi/outdev6.cxx; sourceTree = "<group>"; };
		BE35B5731886C50A001B7439 /* outdevnative.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = outdevnative.cxx; path = ../../../vcl/source/gdi/outdevnative.cxx; sourceTree = "<group>"; };
		BE35B5741886C50A001B7439 /* outmap.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = outmap.cxx; path = ../../../vcl/source/gdi/outmap.cxx; sourceTree = "<group>"; };
		BE35B5751886C50A001B7439 /* pdfextoutdevdata.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pdfextoutdevdata.cxx; path = ../../../vcl/source/gdi/pdfextoutdevdata.cxx; sourceTree = "<group>"; };
		BE35B5761886C50A001B7439 /* pdffontcache.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pdffontcache.cxx; path = ../../../vcl/source/gdi/pdffontcache.cxx; sourceTree = "<group>"; };
		BE35B5771886C50A001B7439 /* pdfwriter_impl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pdfwriter_impl.cxx; path = ../../../vcl/source/gdi/pdfwriter_impl.cxx; sourceTree = "<group>"; };
		BE35B5781886C50A001B7439 /* pdfwriter_impl2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pdfwriter_impl2.cxx; path = ../../../vcl/source/gdi/pdfwriter_impl2.cxx; sourceTree = "<group>"; };
		BE35B5791886C50A001B7439 /* pdfwriter.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pdfwriter.cxx; path = ../../../vcl/source/gdi/pdfwriter.cxx; sourceTree = "<group>"; };
		BE35B57A1886C50A001B7439 /* pngread.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pngread.cxx; path = ../../../vcl/source/gdi/pngread.cxx; sourceTree = "<group>"; };
		BE35B57B1886C50A001B7439 /* pngwrite.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pngwrite.cxx; path = ../../../vcl/source/gdi/pngwrite.cxx; sourceTree = "<group>"; };
		BE35B57C1886C50A001B7439 /* print.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = print.cxx; path = ../../../vcl/source/gdi/print.cxx; sourceTree = "<group>"; };
		BE35B57D1886C50A001B7439 /* print2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = print2.cxx; path = ../../../vcl/source/gdi/print2.cxx; sourceTree = "<group>"; };
		BE35B57E1886C50A001B7439 /* print3.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = print3.cxx; path = ../../../vcl/source/gdi/print3.cxx; sourceTree = "<group>"; };
		BE35B57F1886C50A001B7439 /* regband.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = regband.cxx; path = ../../../vcl/source/gdi/regband.cxx; sourceTree = "<group>"; };
		BE35B5801886C50A001B7439 /* region.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = region.cxx; path = ../../../vcl/source/gdi/region.cxx; sourceTree = "<group>"; };
		BE35B5811886C50A001B7439 /* regionband.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = regionband.cxx; path = ../../../vcl/source/gdi/regionband.cxx; sourceTree = "<group>"; };
		BE35B5821886C50A001B7439 /* salgdilayout.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = salgdilayout.cxx; path = ../../../vcl/source/gdi/salgdilayout.cxx; sourceTree = "<group>"; };
		BE35B5831886C50A001B7439 /* sallayout.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sallayout.cxx; path = ../../../vcl/source/gdi/sallayout.cxx; sourceTree = "<group>"; };
		BE35B5841886C50A001B7439 /* salmisc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = salmisc.cxx; path = ../../../vcl/source/gdi/salmisc.cxx; sourceTree = "<group>"; };
		BE35B5851886C50A001B7439 /* salnativewidgets-none.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "salnativewidgets-none.cxx"; path = "../../../vcl/source/gdi/salnativewidgets-none.cxx"; sourceTree = "<group>"; };
		BE35B5861886C50A001B7439 /* svgdata.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svgdata.cxx; path = ../../../vcl/source/gdi/svgdata.cxx; sourceTree = "<group>"; };
		BE35B5871886C50A001B7439 /* textlayout.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textlayout.cxx; path = ../../../vcl/source/gdi/textlayout.cxx; sourceTree = "<group>"; };
		BE35B5881886C50A001B7439 /* virdev.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = virdev.cxx; path = ../../../vcl/source/gdi/virdev.cxx; sourceTree = "<group>"; };
		BE35B5891886C50A001B7439 /* wall.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = wall.cxx; path = ../../../vcl/source/gdi/wall.cxx; sourceTree = "<group>"; };
		BE35B58B188FFA88001B7439 /* access_control.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = access_control.cxx; path = ../../../cppuhelper/source/access_control.cxx; sourceTree = "<group>"; };
		BE35B58C188FFA88001B7439 /* bootstrap.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bootstrap.cxx; path = ../../../cppuhelper/source/bootstrap.cxx; sourceTree = "<group>"; };
		BE35B58D188FFA88001B7439 /* compat.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = compat.cxx; path = ../../../cppuhelper/source/compat.cxx; sourceTree = "<group>"; };
		BE35B58E188FFA88001B7439 /* component_context.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = component_context.cxx; path = ../../../cppuhelper/source/component_context.cxx; sourceTree = "<group>"; };
		BE35B58F188FFA88001B7439 /* component.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = component.cxx; path = ../../../cppuhelper/source/component.cxx; sourceTree = "<group>"; };
		BE35B590188FFA88001B7439 /* defaultbootstrap.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = defaultbootstrap.cxx; path = ../../../cppuhelper/source/defaultbootstrap.cxx; sourceTree = "<group>"; };
		BE35B591188FFA88001B7439 /* exc_thrower.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = exc_thrower.cxx; path = ../../../cppuhelper/source/exc_thrower.cxx; sourceTree = "<group>"; };
		BE35B592188FFA88001B7439 /* factory.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = factory.cxx; path = ../../../cppuhelper/source/factory.cxx; sourceTree = "<group>"; };
		BE35B593188FFA88001B7439 /* findsofficepath.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = findsofficepath.c; path = ../../../cppuhelper/source/findsofficepath.c; sourceTree = "<group>"; };
		BE35B594188FFA88001B7439 /* implbase_ex.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = implbase_ex.cxx; path = ../../../cppuhelper/source/implbase_ex.cxx; sourceTree = "<group>"; };
		BE35B595188FFA88001B7439 /* implbase.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = implbase.cxx; path = ../../../cppuhelper/source/implbase.cxx; sourceTree = "<group>"; };
		BE35B596188FFA88001B7439 /* implementationentry.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = implementationentry.cxx; path = ../../../cppuhelper/source/implementationentry.cxx; sourceTree = "<group>"; };
		BE35B597188FFA88001B7439 /* interfacecontainer.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = interfacecontainer.cxx; path = ../../../cppuhelper/source/interfacecontainer.cxx; sourceTree = "<group>"; };
		BE35B598188FFA88001B7439 /* macro_expander.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = macro_expander.cxx; path = ../../../cppuhelper/source/macro_expander.cxx; sourceTree = "<group>"; };
		BE35B599188FFA88001B7439 /* paths.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = paths.cxx; path = ../../../cppuhelper/source/paths.cxx; sourceTree = "<group>"; };
		BE35B59A188FFA88001B7439 /* propertysetmixin.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = propertysetmixin.cxx; path = ../../../cppuhelper/source/propertysetmixin.cxx; sourceTree = "<group>"; };
		BE35B59B188FFA88001B7439 /* propshlp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = propshlp.cxx; path = ../../../cppuhelper/source/propshlp.cxx; sourceTree = "<group>"; };
		BE35B59C188FFA88001B7439 /* servicemanager.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = servicemanager.cxx; path = ../../../cppuhelper/source/servicemanager.cxx; sourceTree = "<group>"; };
		BE35B59D188FFA88001B7439 /* shlib.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = shlib.cxx; path = ../../../cppuhelper/source/shlib.cxx; sourceTree = "<group>"; };
		BE35B59E188FFA88001B7439 /* supportsservice.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = supportsservice.cxx; path = ../../../cppuhelper/source/supportsservice.cxx; sourceTree = "<group>"; };
		BE35B59F188FFA88001B7439 /* tdmgr.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tdmgr.cxx; path = ../../../cppuhelper/source/tdmgr.cxx; sourceTree = "<group>"; };
		BE35B5A0188FFA88001B7439 /* typemanager.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = typemanager.cxx; path = ../../../cppuhelper/source/typemanager.cxx; sourceTree = "<group>"; };
		BE35B5A1188FFA88001B7439 /* typeprovider.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = typeprovider.cxx; path = ../../../cppuhelper/source/typeprovider.cxx; sourceTree = "<group>"; };
		BE35B5A2188FFA88001B7439 /* unourl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = unourl.cxx; path = ../../../cppuhelper/source/unourl.cxx; sourceTree = "<group>"; };
		BE35B5A3188FFA88001B7439 /* weak.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = weak.cxx; path = ../../../cppuhelper/source/weak.cxx; sourceTree = "<group>"; };
		BE35B5A71890520E001B7439 /* objface.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = objface.cxx; path = ../../../sfx2/source/control/objface.cxx; sourceTree = "<group>"; };
		BE55B06B18D87CC600950228 /* DocumentTableViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DocumentTableViewController.h; sourceTree = "<group>"; };
		BE55B06C18D87CC600950228 /* DocumentTableViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DocumentTableViewController.m; sourceTree = "<group>"; };
		BE7C277218D1DDF600C4908C /* acmplwrd.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = acmplwrd.cxx; path = ../../../sw/source/core/doc/acmplwrd.cxx; sourceTree = "<group>"; };
		BE7C277318D1DDF600C4908C /* dbgoutsw.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dbgoutsw.cxx; path = ../../../sw/source/core/doc/dbgoutsw.cxx; sourceTree = "<group>"; };
		BE7C277418D1DDF600C4908C /* doc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = doc.cxx; path = ../../../sw/source/core/doc/doc.cxx; sourceTree = "<group>"; };
		BE7C277518D1DDF600C4908C /* docbasic.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docbasic.cxx; path = ../../../sw/source/core/doc/docbasic.cxx; sourceTree = "<group>"; };
		BE7C277618D1DDF600C4908C /* docbm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docbm.cxx; path = ../../../sw/source/core/doc/docbm.cxx; sourceTree = "<group>"; };
		BE7C277718D1DDF600C4908C /* docchart.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docchart.cxx; path = ../../../sw/source/core/doc/docchart.cxx; sourceTree = "<group>"; };
		BE7C277818D1DDF600C4908C /* doccomp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = doccomp.cxx; path = ../../../sw/source/core/doc/doccomp.cxx; sourceTree = "<group>"; };
		BE7C277918D1DDF600C4908C /* doccorr.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = doccorr.cxx; path = ../../../sw/source/core/doc/doccorr.cxx; sourceTree = "<group>"; };
		BE7C277A18D1DDF600C4908C /* docdde.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docdde.cxx; path = ../../../sw/source/core/doc/docdde.cxx; sourceTree = "<group>"; };
		BE7C277B18D1DDF600C4908C /* docdesc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docdesc.cxx; path = ../../../sw/source/core/doc/docdesc.cxx; sourceTree = "<group>"; };
		BE7C277C18D1DDF600C4908C /* docdraw.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docdraw.cxx; path = ../../../sw/source/core/doc/docdraw.cxx; sourceTree = "<group>"; };
		BE7C277D18D1DDF600C4908C /* docedt.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docedt.cxx; path = ../../../sw/source/core/doc/docedt.cxx; sourceTree = "<group>"; };
		BE7C277E18D1DDF600C4908C /* docfld.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docfld.cxx; path = ../../../sw/source/core/doc/docfld.cxx; sourceTree = "<group>"; };
		BE7C277F18D1DDF600C4908C /* docfly.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docfly.cxx; path = ../../../sw/source/core/doc/docfly.cxx; sourceTree = "<group>"; };
		BE7C278018D1DDF600C4908C /* docfmt.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docfmt.cxx; path = ../../../sw/source/core/doc/docfmt.cxx; sourceTree = "<group>"; };
		BE7C278118D1DDF600C4908C /* docftn.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docftn.cxx; path = ../../../sw/source/core/doc/docftn.cxx; sourceTree = "<group>"; };
		BE7C278218D1DDF600C4908C /* docglbl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docglbl.cxx; path = ../../../sw/source/core/doc/docglbl.cxx; sourceTree = "<group>"; };
		BE7C278318D1DDF600C4908C /* docglos.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docglos.cxx; path = ../../../sw/source/core/doc/docglos.cxx; sourceTree = "<group>"; };
		BE7C278418D1DDF600C4908C /* doclay.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = doclay.cxx; path = ../../../sw/source/core/doc/doclay.cxx; sourceTree = "<group>"; };
		BE7C278518D1DDF600C4908C /* docnew.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docnew.cxx; path = ../../../sw/source/core/doc/docnew.cxx; sourceTree = "<group>"; };
		BE7C278618D1DDF600C4908C /* docnum.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docnum.cxx; path = ../../../sw/source/core/doc/docnum.cxx; sourceTree = "<group>"; };
		BE7C278718D1DDF600C4908C /* docredln.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docredln.cxx; path = ../../../sw/source/core/doc/docredln.cxx; sourceTree = "<group>"; };
		BE7C278818D1DDF600C4908C /* docruby.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docruby.cxx; path = ../../../sw/source/core/doc/docruby.cxx; sourceTree = "<group>"; };
		BE7C278918D1DDF600C4908C /* docsort.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docsort.cxx; path = ../../../sw/source/core/doc/docsort.cxx; sourceTree = "<group>"; };
		BE7C278A18D1DDF600C4908C /* docstat.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docstat.cxx; path = ../../../sw/source/core/doc/docstat.cxx; sourceTree = "<group>"; };
		BE7C278B18D1DDF600C4908C /* doctxm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = doctxm.cxx; path = ../../../sw/source/core/doc/doctxm.cxx; sourceTree = "<group>"; };
		BE7C278C18D1DDF600C4908C /* docxforms.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docxforms.cxx; path = ../../../sw/source/core/doc/docxforms.cxx; sourceTree = "<group>"; };
		BE7C278D18D1DDF600C4908C /* extinput.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = extinput.cxx; path = ../../../sw/source/core/doc/extinput.cxx; sourceTree = "<group>"; };
		BE7C278E18D1DDF600C4908C /* fmtcol.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fmtcol.cxx; path = ../../../sw/source/core/doc/fmtcol.cxx; sourceTree = "<group>"; };
		BE7C278F18D1DDF600C4908C /* ftnidx.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ftnidx.cxx; path = ../../../sw/source/core/doc/ftnidx.cxx; sourceTree = "<group>"; };
		BE7C279018D1DDF600C4908C /* gctable.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gctable.cxx; path = ../../../sw/source/core/doc/gctable.cxx; sourceTree = "<group>"; };
		BE7C279118D1DDF600C4908C /* htmltbl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = htmltbl.cxx; path = ../../../sw/source/core/doc/htmltbl.cxx; sourceTree = "<group>"; };
		BE7C279218D1DDF600C4908C /* lineinfo.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = lineinfo.cxx; path = ../../../sw/source/core/doc/lineinfo.cxx; sourceTree = "<group>"; };
		BE7C279318D1DDF600C4908C /* list.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = list.cxx; path = ../../../sw/source/core/doc/list.cxx; sourceTree = "<group>"; };
		BE7C279418D1DDF600C4908C /* notxtfrm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = notxtfrm.cxx; path = ../../../sw/source/core/doc/notxtfrm.cxx; sourceTree = "<group>"; };
		BE7C279518D1DDF600C4908C /* number.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = number.cxx; path = ../../../sw/source/core/doc/number.cxx; sourceTree = "<group>"; };
		BE7C279618D1DDF600C4908C /* poolfmt.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = poolfmt.cxx; path = ../../../sw/source/core/doc/poolfmt.cxx; sourceTree = "<group>"; };
		BE7C279718D1DDF600C4908C /* sortopt.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sortopt.cxx; path = ../../../sw/source/core/doc/sortopt.cxx; sourceTree = "<group>"; };
		BE7C279818D1DDF600C4908C /* swserv.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = swserv.cxx; path = ../../../sw/source/core/doc/swserv.cxx; sourceTree = "<group>"; };
		BE7C279918D1DDF600C4908C /* swstylemanager.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = swstylemanager.cxx; path = ../../../sw/source/core/doc/swstylemanager.cxx; sourceTree = "<group>"; };
		BE7C279A18D1DDF600C4908C /* SwStyleNameMapper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = SwStyleNameMapper.cxx; path = ../../../sw/source/core/doc/SwStyleNameMapper.cxx; sourceTree = "<group>"; };
		BE7C279B18D1DDF600C4908C /* tblafmt.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tblafmt.cxx; path = ../../../sw/source/core/doc/tblafmt.cxx; sourceTree = "<group>"; };
		BE7C279C18D1DDF600C4908C /* tblcpy.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tblcpy.cxx; path = ../../../sw/source/core/doc/tblcpy.cxx; sourceTree = "<group>"; };
		BE7C279D18D1DDF600C4908C /* tblrwcl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tblrwcl.cxx; path = ../../../sw/source/core/doc/tblrwcl.cxx; sourceTree = "<group>"; };
		BE7C279E18D1DDF600C4908C /* visiturl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = visiturl.cxx; path = ../../../sw/source/core/doc/visiturl.cxx; sourceTree = "<group>"; };
		BE82BD7218218E2E00A447B5 /* TiledLibreOffice.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = TiledLibreOffice.app; sourceTree = BUILT_PRODUCTS_DIR; };
		BE82BD7518218E2E00A447B5 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
		BE82BD7718218E2E00A447B5 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
		BE82BD7918218E2E00A447B5 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
		BE82BD7D18218E2E00A447B5 /* TiledLibreOffice-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "TiledLibreOffice-Info.plist"; sourceTree = "<group>"; };
		BE82BD7F18218E2E00A447B5 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
		BE82BD8118218E2E00A447B5 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
		BE82BD8318218E2E00A447B5 /* TiledLibreOffice-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "TiledLibreOffice-Prefix.pch"; sourceTree = "<group>"; };
		BE82BD8418218E2E00A447B5 /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
		BE82BD8518218E2E00A447B5 /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
		BE82BD8A18218E2E00A447B5 /* ViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ViewController.h; sourceTree = "<group>"; };
		BE82BD8B18218E2E00A447B5 /* ViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ViewController.m; sourceTree = "<group>"; };
		BE82BD8D18218E2E00A447B5 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = "<group>"; };
		BE82BD9418218E2E00A447B5 /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; };
		BE82BDAA182190E400A447B5 /* TiledView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TiledView.h; sourceTree = "<group>"; };
		BE82BDAB182190E400A447B5 /* TiledView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TiledView.m; sourceTree = "<group>"; };
		BE82BDAD1821A1D000A447B5 /* View.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = View.h; sourceTree = "<group>"; };
		BE82BDAE1821A1D000A447B5 /* View.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = View.m; sourceTree = "<group>"; };
		BE82C38918C752E20050EB79 /* backtrace.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = backtrace.c; path = ../../../sal/osl/unx/backtrace.c; sourceTree = "<group>"; };
		BE82C38A18C752E20050EB79 /* conditn.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = conditn.cxx; path = ../../../sal/osl/unx/conditn.cxx; sourceTree = "<group>"; };
		BE82C38B18C752E20050EB79 /* diagnose.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = diagnose.cxx; path = ../../../sal/osl/unx/diagnose.cxx; sourceTree = "<group>"; };
		BE82C38C18C752E20050EB79 /* file_error_transl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = file_error_transl.cxx; path = ../../../sal/osl/unx/file_error_transl.cxx; sourceTree = "<group>"; };
		BE82C38D18C752E20050EB79 /* file_misc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = file_misc.cxx; path = ../../../sal/osl/unx/file_misc.cxx; sourceTree = "<group>"; };
		BE82C38E18C752E20050EB79 /* file_path_helper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = file_path_helper.cxx; path = ../../../sal/osl/unx/file_path_helper.cxx; sourceTree = "<group>"; };
		BE82C38F18C752E20050EB79 /* file_stat.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = file_stat.cxx; path = ../../../sal/osl/unx/file_stat.cxx; sourceTree = "<group>"; };
		BE82C39018C752E20050EB79 /* file_url.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = file_url.cxx; path = ../../../sal/osl/unx/file_url.cxx; sourceTree = "<group>"; };
		BE82C39118C752E20050EB79 /* file_volume.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = file_volume.cxx; path = ../../../sal/osl/unx/file_volume.cxx; sourceTree = "<group>"; };
		BE82C39218C752E20050EB79 /* file.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = file.cxx; path = ../../../sal/osl/unx/file.cxx; sourceTree = "<group>"; };
		BE82C39318C752E20050EB79 /* interlck.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = interlck.c; path = ../../../sal/osl/unx/interlck.c; sourceTree = "<group>"; };
		BE82C39418C752E20050EB79 /* memory.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = memory.c; path = ../../../sal/osl/unx/memory.c; sourceTree = "<group>"; };
		BE82C39518C752E20050EB79 /* module.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = module.cxx; path = ../../../sal/osl/unx/module.cxx; sourceTree = "<group>"; };
		BE82C39618C752E20050EB79 /* mutex.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = mutex.c; path = ../../../sal/osl/unx/mutex.c; sourceTree = "<group>"; };
		BE82C39718C752E20050EB79 /* nlsupport.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = nlsupport.c; path = ../../../sal/osl/unx/nlsupport.c; sourceTree = "<group>"; };
		BE82C39818C752E20050EB79 /* osxlocale.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = osxlocale.cxx; path = ../../../sal/osl/unx/osxlocale.cxx; sourceTree = "<group>"; };
		BE82C39918C752E20050EB79 /* pipe.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pipe.c; path = ../../../sal/osl/unx/pipe.c; sourceTree = "<group>"; };
		BE82C39A18C752E20050EB79 /* process_impl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = process_impl.cxx; path = ../../../sal/osl/unx/process_impl.cxx; sourceTree = "<group>"; };
		BE82C39B18C752E20050EB79 /* process.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = process.cxx; path = ../../../sal/osl/unx/process.cxx; sourceTree = "<group>"; };
		BE82C39C18C752E20050EB79 /* profile.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = profile.cxx; path = ../../../sal/osl/unx/profile.cxx; sourceTree = "<group>"; };
		BE82C39D18C752E20050EB79 /* readwrite_helper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = readwrite_helper.c; path = ../../../sal/osl/unx/readwrite_helper.c; sourceTree = "<group>"; };
		BE82C39E18C752E20050EB79 /* salinit.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = salinit.cxx; path = ../../../sal/osl/unx/salinit.cxx; sourceTree = "<group>"; };
		BE82C39F18C752E20050EB79 /* security.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = security.c; path = ../../../sal/osl/unx/security.c; sourceTree = "<group>"; };
		BE82C3A018C752E20050EB79 /* signal.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = signal.c; path = ../../../sal/osl/unx/signal.c; sourceTree = "<group>"; };
		BE82C3A118C752E20050EB79 /* socket.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = socket.c; path = ../../../sal/osl/unx/socket.c; sourceTree = "<group>"; };
		BE82C3A218C752E20050EB79 /* system.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = system.c; path = ../../../sal/osl/unx/system.c; sourceTree = "<group>"; };
		BE82C3A318C752E20050EB79 /* tempfile.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tempfile.c; path = ../../../sal/osl/unx/tempfile.c; sourceTree = "<group>"; };
		BE82C3A418C752E20050EB79 /* thread.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = thread.c; path = ../../../sal/osl/unx/thread.c; sourceTree = "<group>"; };
		BE82C3A518C752E20050EB79 /* time.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = time.c; path = ../../../sal/osl/unx/time.c; sourceTree = "<group>"; };
		BE82C3A618C752E20050EB79 /* uunxapi.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = uunxapi.cxx; path = ../../../sal/osl/unx/uunxapi.cxx; sourceTree = "<group>"; };
		BE82C3A718C752E20050EB79 /* uunxapi.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = uunxapi.mm; path = ../../../sal/osl/unx/uunxapi.mm; sourceTree = "<group>"; };
		BE82C42918CA18610050EB79 /* ActionDescriptionProvider.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ActionDescriptionProvider.cxx; path = ../../../svx/source/svdraw/ActionDescriptionProvider.cxx; sourceTree = "<group>"; };
		BE82C42A18CA18610050EB79 /* charthelper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = charthelper.cxx; path = ../../../svx/source/svdraw/charthelper.cxx; sourceTree = "<group>"; };
		BE82C42B18CA18610050EB79 /* clonelist.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = clonelist.cxx; path = ../../../svx/source/svdraw/clonelist.cxx; sourceTree = "<group>"; };
		BE82C42C18CA18610050EB79 /* gradtrns.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gradtrns.cxx; path = ../../../svx/source/svdraw/gradtrns.cxx; sourceTree = "<group>"; };
		BE82C42D18CA18610050EB79 /* gradtrns.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = gradtrns.hxx; path = ../../../svx/source/svdraw/gradtrns.hxx; sourceTree = "<group>"; };
		BE82C42E18CA18610050EB79 /* polypolygoneditor.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = polypolygoneditor.cxx; path = ../../../svx/source/svdraw/polypolygoneditor.cxx; sourceTree = "<group>"; };
		BE82C42F18CA18610050EB79 /* sdrhittesthelper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sdrhittesthelper.cxx; path = ../../../svx/source/svdraw/sdrhittesthelper.cxx; sourceTree = "<group>"; };
		BE82C43018CA18610050EB79 /* sdrmasterpagedescriptor.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sdrmasterpagedescriptor.cxx; path = ../../../svx/source/svdraw/sdrmasterpagedescriptor.cxx; sourceTree = "<group>"; };
		BE82C43118CA18610050EB79 /* sdrpagewindow.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sdrpagewindow.cxx; path = ../../../svx/source/svdraw/sdrpagewindow.cxx; sourceTree = "<group>"; };
		BE82C43218CA18610050EB79 /* sdrpaintwindow.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sdrpaintwindow.cxx; path = ../../../svx/source/svdraw/sdrpaintwindow.cxx; sourceTree = "<group>"; };
		BE82C43318CA18610050EB79 /* sdrundomanager.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sdrundomanager.cxx; path = ../../../svx/source/svdraw/sdrundomanager.cxx; sourceTree = "<group>"; };
		BE82C43418CA18610050EB79 /* selectioncontroller.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = selectioncontroller.cxx; path = ../../../svx/source/svdraw/selectioncontroller.cxx; sourceTree = "<group>"; };
		BE82C43518CA18610050EB79 /* svdattr.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdattr.cxx; path = ../../../svx/source/svdraw/svdattr.cxx; sourceTree = "<group>"; };
		BE82C43618CA18610050EB79 /* svdcrtv.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdcrtv.cxx; path = ../../../svx/source/svdraw/svdcrtv.cxx; sourceTree = "<group>"; };
		BE82C43718CA18610050EB79 /* svddrag.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svddrag.cxx; path = ../../../svx/source/svdraw/svddrag.cxx; sourceTree = "<group>"; };
		BE82C43818CA18610050EB79 /* svddrgmt.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svddrgmt.cxx; path = ../../../svx/source/svdraw/svddrgmt.cxx; sourceTree = "<group>"; };
		BE82C43918CA18610050EB79 /* svddrgv.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svddrgv.cxx; path = ../../../svx/source/svdraw/svddrgv.cxx; sourceTree = "<group>"; };
		BE82C43A18CA18610050EB79 /* svdedtv.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdedtv.cxx; path = ../../../svx/source/svdraw/svdedtv.cxx; sourceTree = "<group>"; };
		BE82C43B18CA18610050EB79 /* svdedtv1.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdedtv1.cxx; path = ../../../svx/source/svdraw/svdedtv1.cxx; sourceTree = "<group>"; };
		BE82C43C18CA18610050EB79 /* svdedtv2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdedtv2.cxx; path = ../../../svx/source/svdraw/svdedtv2.cxx; sourceTree = "<group>"; };
		BE82C43D18CA18610050EB79 /* svdedxv.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdedxv.cxx; path = ../../../svx/source/svdraw/svdedxv.cxx; sourceTree = "<group>"; };
		BE82C43E18CA18610050EB79 /* svdetc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdetc.cxx; path = ../../../svx/source/svdraw/svdetc.cxx; sourceTree = "<group>"; };
		BE82C43F18CA18610050EB79 /* svdfmtf.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdfmtf.cxx; path = ../../../svx/source/svdraw/svdfmtf.cxx; sourceTree = "<group>"; };
		BE82C44018CA18610050EB79 /* svdglev.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdglev.cxx; path = ../../../svx/source/svdraw/svdglev.cxx; sourceTree = "<group>"; };
		BE82C44118CA18610050EB79 /* svdglue.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdglue.cxx; path = ../../../svx/source/svdraw/svdglue.cxx; sourceTree = "<group>"; };
		BE82C44218CA18610050EB79 /* svdhdl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdhdl.cxx; path = ../../../svx/source/svdraw/svdhdl.cxx; sourceTree = "<group>"; };
		BE82C44318CA18610050EB79 /* svdhlpln.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdhlpln.cxx; path = ../../../svx/source/svdraw/svdhlpln.cxx; sourceTree = "<group>"; };
		BE82C44418CA18610050EB79 /* svdibrow.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdibrow.cxx; path = ../../../svx/source/svdraw/svdibrow.cxx; sourceTree = "<group>"; };
		BE82C44518CA18610050EB79 /* svditer.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svditer.cxx; path = ../../../svx/source/svdraw/svditer.cxx; sourceTree = "<group>"; };
		BE82C44618CA18610050EB79 /* svdlayer.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdlayer.cxx; path = ../../../svx/source/svdraw/svdlayer.cxx; sourceTree = "<group>"; };
		BE82C44718CA18610050EB79 /* svdmark.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdmark.cxx; path = ../../../svx/source/svdraw/svdmark.cxx; sourceTree = "<group>"; };
		BE82C44818CA18610050EB79 /* svdmodel.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdmodel.cxx; path = ../../../svx/source/svdraw/svdmodel.cxx; sourceTree = "<group>"; };
		BE82C44918CA18610050EB79 /* svdmrkv.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdmrkv.cxx; path = ../../../svx/source/svdraw/svdmrkv.cxx; sourceTree = "<group>"; };
		BE82C44A18CA18610050EB79 /* svdmrkv1.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdmrkv1.cxx; path = ../../../svx/source/svdraw/svdmrkv1.cxx; sourceTree = "<group>"; };
		BE82C44B18CA18610050EB79 /* svdoashp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdoashp.cxx; path = ../../../svx/source/svdraw/svdoashp.cxx; sourceTree = "<group>"; };
		BE82C44C18CA18610050EB79 /* svdoattr.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdoattr.cxx; path = ../../../svx/source/svdraw/svdoattr.cxx; sourceTree = "<group>"; };
		BE82C44D18CA18610050EB79 /* svdobj.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdobj.cxx; path = ../../../svx/source/svdraw/svdobj.cxx; sourceTree = "<group>"; };
		BE82C44E18CA18610050EB79 /* svdocapt.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdocapt.cxx; path = ../../../svx/source/svdraw/svdocapt.cxx; sourceTree = "<group>"; };
		BE82C44F18CA18610050EB79 /* svdocirc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdocirc.cxx; path = ../../../svx/source/svdraw/svdocirc.cxx; sourceTree = "<group>"; };
		BE82C45018CA18610050EB79 /* svdoedge.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdoedge.cxx; path = ../../../svx/source/svdraw/svdoedge.cxx; sourceTree = "<group>"; };
		BE82C45118CA18610050EB79 /* svdograf.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdograf.cxx; path = ../../../svx/source/svdraw/svdograf.cxx; sourceTree = "<group>"; };
		BE82C45218CA18610050EB79 /* svdogrp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdogrp.cxx; path = ../../../svx/source/svdraw/svdogrp.cxx; sourceTree = "<group>"; };
		BE82C45318CA18610050EB79 /* svdomeas.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdomeas.cxx; path = ../../../svx/source/svdraw/svdomeas.cxx; sourceTree = "<group>"; };
		BE82C45418CA18610050EB79 /* svdomedia.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdomedia.cxx; path = ../../../svx/source/svdraw/svdomedia.cxx; sourceTree = "<group>"; };
		BE82C45518CA18610050EB79 /* svdoole2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdoole2.cxx; path = ../../../svx/source/svdraw/svdoole2.cxx; sourceTree = "<group>"; };
		BE82C45618CA18610050EB79 /* svdopage.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdopage.cxx; path = ../../../svx/source/svdraw/svdopage.cxx; sourceTree = "<group>"; };
		BE82C45718CA18610050EB79 /* svdopath.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdopath.cxx; path = ../../../svx/source/svdraw/svdopath.cxx; sourceTree = "<group>"; };
		BE82C45818CA18610050EB79 /* svdorect.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdorect.cxx; path = ../../../svx/source/svdraw/svdorect.cxx; sourceTree = "<group>"; };
		BE82C45918CA18610050EB79 /* svdotext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdotext.cxx; path = ../../../svx/source/svdraw/svdotext.cxx; sourceTree = "<group>"; };
		BE82C45A18CA18610050EB79 /* svdotextdecomposition.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdotextdecomposition.cxx; path = ../../../svx/source/svdraw/svdotextdecomposition.cxx; sourceTree = "<group>"; };
		BE82C45B18CA18610050EB79 /* svdotextpathdecomposition.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdotextpathdecomposition.cxx; path = ../../../svx/source/svdraw/svdotextpathdecomposition.cxx; sourceTree = "<group>"; };
		BE82C45C18CA18610050EB79 /* svdotxat.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdotxat.cxx; path = ../../../svx/source/svdraw/svdotxat.cxx; sourceTree = "<group>"; };
		BE82C45D18CA18610050EB79 /* svdotxdr.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdotxdr.cxx; path = ../../../svx/source/svdraw/svdotxdr.cxx; sourceTree = "<group>"; };
		BE82C45E18CA18610050EB79 /* svdotxed.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdotxed.cxx; path = ../../../svx/source/svdraw/svdotxed.cxx; sourceTree = "<group>"; };
		BE82C45F18CA18610050EB79 /* svdotxfl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdotxfl.cxx; path = ../../../svx/source/svdraw/svdotxfl.cxx; sourceTree = "<group>"; };
		BE82C46018CA18610050EB79 /* svdotxln.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdotxln.cxx; path = ../../../svx/source/svdraw/svdotxln.cxx; sourceTree = "<group>"; };
		BE82C46118CA18610050EB79 /* svdotxtr.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdotxtr.cxx; path = ../../../svx/source/svdraw/svdotxtr.cxx; sourceTree = "<group>"; };
		BE82C46218CA18610050EB79 /* svdouno.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdouno.cxx; path = ../../../svx/source/svdraw/svdouno.cxx; sourceTree = "<group>"; };
		BE82C46318CA18610050EB79 /* svdoutl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdoutl.cxx; path = ../../../svx/source/svdraw/svdoutl.cxx; sourceTree = "<group>"; };
		BE82C46418CA18610050EB79 /* svdoutlinercache.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdoutlinercache.cxx; path = ../../../svx/source/svdraw/svdoutlinercache.cxx; sourceTree = "<group>"; };
		BE82C46518CA18610050EB79 /* svdovirt.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdovirt.cxx; path = ../../../svx/source/svdraw/svdovirt.cxx; sourceTree = "<group>"; };
		BE82C46618CA18610050EB79 /* svdpage.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdpage.cxx; path = ../../../svx/source/svdraw/svdpage.cxx; sourceTree = "<group>"; };
		BE82C46718CA18610050EB79 /* svdpagv.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdpagv.cxx; path = ../../../svx/source/svdraw/svdpagv.cxx; sourceTree = "<group>"; };
		BE82C46818CA18610050EB79 /* svdpntv.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdpntv.cxx; path = ../../../svx/source/svdraw/svdpntv.cxx; sourceTree = "<group>"; };
		BE82C46918CA18610050EB79 /* svdpoev.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdpoev.cxx; path = ../../../svx/source/svdraw/svdpoev.cxx; sourceTree = "<group>"; };
		BE82C46A18CA18610050EB79 /* svdsnpv.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdsnpv.cxx; path = ../../../svx/source/svdraw/svdsnpv.cxx; sourceTree = "<group>"; };
		BE82C46B18CA18610050EB79 /* svdtext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdtext.cxx; path = ../../../svx/source/svdraw/svdtext.cxx; sourceTree = "<group>"; };
		BE82C46C18CA18610050EB79 /* svdtrans.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdtrans.cxx; path = ../../../svx/source/svdraw/svdtrans.cxx; sourceTree = "<group>"; };
		BE82C46D18CA18610050EB79 /* svdundo.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdundo.cxx; path = ../../../svx/source/svdraw/svdundo.cxx; sourceTree = "<group>"; };
		BE82C46E18CA18610050EB79 /* svdview.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdview.cxx; path = ../../../svx/source/svdraw/svdview.cxx; sourceTree = "<group>"; };
		BE82C46F18CA18610050EB79 /* svdviter.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdviter.cxx; path = ../../../svx/source/svdraw/svdviter.cxx; sourceTree = "<group>"; };
		BE82C47018CA18610050EB79 /* svdxcgv.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdxcgv.cxx; path = ../../../svx/source/svdraw/svdxcgv.cxx; sourceTree = "<group>"; };
		BE82C47318CA192D0050EB79 /* baseprocessor2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = baseprocessor2d.cxx; path = ../../../drawinglayer/source/processor2d/baseprocessor2d.cxx; sourceTree = "<group>"; };
		BE82C47418CA192D0050EB79 /* contourextractor2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = contourextractor2d.cxx; path = ../../../drawinglayer/source/processor2d/contourextractor2d.cxx; sourceTree = "<group>"; };
		BE82C47518CA192D0050EB79 /* getdigitlanguage.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = getdigitlanguage.cxx; path = ../../../drawinglayer/source/processor2d/getdigitlanguage.cxx; sourceTree = "<group>"; };
		BE82C47618CA192D0050EB79 /* helperwrongspellrenderer.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = helperwrongspellrenderer.cxx; path = ../../../drawinglayer/source/processor2d/helperwrongspellrenderer.cxx; sourceTree = "<group>"; };
		BE82C47718CA192D0050EB79 /* hittestprocessor2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = hittestprocessor2d.cxx; path = ../../../drawinglayer/source/processor2d/hittestprocessor2d.cxx; sourceTree = "<group>"; };
		BE82C47818CA192D0050EB79 /* linegeometryextractor2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = linegeometryextractor2d.cxx; path = ../../../drawinglayer/source/processor2d/linegeometryextractor2d.cxx; sourceTree = "<group>"; };
		BE82C47918CA192D0050EB79 /* objectinfoextractor2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = objectinfoextractor2d.cxx; path = ../../../drawinglayer/source/processor2d/objectinfoextractor2d.cxx; sourceTree = "<group>"; };
		BE82C47A18CA192D0050EB79 /* processor2dtools.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = processor2dtools.cxx; path = ../../../drawinglayer/source/processor2d/processor2dtools.cxx; sourceTree = "<group>"; };
		BE82C47B18CA192D0050EB79 /* processorfromoutputdevice.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = processorfromoutputdevice.cxx; path = ../../../drawinglayer/source/processor2d/processorfromoutputdevice.cxx; sourceTree = "<group>"; };
		BE82C47C18CA192D0050EB79 /* textaspolygonextractor2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textaspolygonextractor2d.cxx; path = ../../../drawinglayer/source/processor2d/textaspolygonextractor2d.cxx; sourceTree = "<group>"; };
		BE82C47D18CA192D0050EB79 /* vclhelperbufferdevice.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vclhelperbufferdevice.cxx; path = ../../../drawinglayer/source/processor2d/vclhelperbufferdevice.cxx; sourceTree = "<group>"; };
		BE82C47E18CA192D0050EB79 /* vclmetafileprocessor2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vclmetafileprocessor2d.cxx; path = ../../../drawinglayer/source/processor2d/vclmetafileprocessor2d.cxx; sourceTree = "<group>"; };
		BE82C47F18CA192D0050EB79 /* vclpixelprocessor2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vclpixelprocessor2d.cxx; path = ../../../drawinglayer/source/processor2d/vclpixelprocessor2d.cxx; sourceTree = "<group>"; };
		BE82C48018CA192D0050EB79 /* vclprocessor2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vclprocessor2d.cxx; path = ../../../drawinglayer/source/processor2d/vclprocessor2d.cxx; sourceTree = "<group>"; };
		BE82C48218CA19920050EB79 /* animatedprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = animatedprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/animatedprimitive2d.cxx; sourceTree = "<group>"; };
		BE82C48318CA19920050EB79 /* backgroundcolorprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = backgroundcolorprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/backgroundcolorprimitive2d.cxx; sourceTree = "<group>"; };
		BE82C48418CA19920050EB79 /* baseprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = baseprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/baseprimitive2d.cxx; sourceTree = "<group>"; };
		BE82C48518CA19920050EB79 /* bitmapprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bitmapprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/bitmapprimitive2d.cxx; sourceTree = "<group>"; };
		BE82C48618CA19920050EB79 /* borderlineprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = borderlineprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/borderlineprimitive2d.cxx; sourceTree = "<group>"; };
		BE82C48718CA19920050EB79 /* clippedborderlineprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = clippedborderlineprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/clippedborderlineprimitive2d.cxx; sourceTree = "<group>"; };
		BE82C48818CA19920050EB79 /* controlprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = controlprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/controlprimitive2d.cxx; sourceTree = "<group>"; };
		BE82C48918CA19920050EB79 /* cropprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cropprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/cropprimitive2d.cxx; sourceTree = "<group>"; };
		BE82C48A18CA19920050EB79 /* discretebitmapprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = discretebitmapprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/discretebitmapprimitive2d.cxx; sourceTree = "<group>"; };
		BE82C48B18CA19920050EB79 /* discreteshadowprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = discreteshadowprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/discreteshadowprimitive2d.cxx; sourceTree = "<group>"; };
		BE82C48C18CA19920050EB79 /* embedded3dprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = embedded3dprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/embedded3dprimitive2d.cxx; sourceTree = "<group>"; };
		BE82C48D18CA19920050EB79 /* epsprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = epsprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/epsprimitive2d.cxx; sourceTree = "<group>"; };
		BE82C48E18CA19920050EB79 /* fillgradientprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fillgradientprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/fillgradientprimitive2d.cxx; sourceTree = "<group>"; };
		BE82C48F18CA19920050EB79 /* fillgraphicprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fillgraphicprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/fillgraphicprimitive2d.cxx; sourceTree = "<group>"; };
		BE82C49018CA19920050EB79 /* fillhatchprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fillhatchprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/fillhatchprimitive2d.cxx; sourceTree = "<group>"; };
		BE82C49118CA19920050EB79 /* graphicprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = graphicprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/graphicprimitive2d.cxx; sourceTree = "<group>"; };
		BE82C49218CA19920050EB79 /* graphicprimitivehelper2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = graphicprimitivehelper2d.cxx; path = ../../../drawinglayer/source/primitive2d/graphicprimitivehelper2d.cxx; sourceTree = "<group>"; };
		BE82C49318CA19920050EB79 /* gridprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gridprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/gridprimitive2d.cxx; sourceTree = "<group>"; };
		BE82C49418CA19920050EB79 /* groupprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = groupprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/groupprimitive2d.cxx; sourceTree = "<group>"; };
		BE82C49518CA19920050EB79 /* helplineprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = helplineprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/helplineprimitive2d.cxx; sourceTree = "<group>"; };
		BE82C49618CA19920050EB79 /* hiddengeometryprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = hiddengeometryprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/hiddengeometryprimitive2d.cxx; sourceTree = "<group>"; };
		BE82C49718CA19920050EB79 /* invertprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = invertprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/invertprimitive2d.cxx; sourceTree = "<group>"; };
		BE82C49818CA19920050EB79 /* markerarrayprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = markerarrayprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/markerarrayprimitive2d.cxx; sourceTree = "<group>"; };
		BE82C49918CA19920050EB79 /* maskprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = maskprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/maskprimitive2d.cxx; sourceTree = "<group>"; };
		BE82C49A18CA19920050EB79 /* mediaprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = mediaprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/mediaprimitive2d.cxx; sourceTree = "<group>"; };
		BE82C49B18CA19920050EB79 /* metafileprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = metafileprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/metafileprimitive2d.cxx; sourceTree = "<group>"; };
		BE82C49C18CA19920050EB79 /* modifiedcolorprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = modifiedcolorprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/modifiedcolorprimitive2d.cxx; sourceTree = "<group>"; };
		BE82C49D18CA19920050EB79 /* objectinfoprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = objectinfoprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/objectinfoprimitive2d.cxx; sourceTree = "<group>"; };
		BE82C49E18CA19920050EB79 /* pagepreviewprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pagepreviewprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/pagepreviewprimitive2d.cxx; sourceTree = "<group>"; };
		BE82C49F18CA19920050EB79 /* patternfillprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = patternfillprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/patternfillprimitive2d.cxx; sourceTree = "<group>"; };
		BE82C4A018CA19920050EB79 /* pointarrayprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pointarrayprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/pointarrayprimitive2d.cxx; sourceTree = "<group>"; };
		BE82C4A118CA19920050EB79 /* polygonprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = polygonprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/polygonprimitive2d.cxx; sourceTree = "<group>"; };
		BE82C4A218CA19920050EB79 /* polypolygonprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = polypolygonprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/polypolygonprimitive2d.cxx; sourceTree = "<group>"; };
		BE82C4A318CA19920050EB79 /* primitivetools2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = primitivetools2d.cxx; path = ../../../drawinglayer/source/primitive2d/primitivetools2d.cxx; sourceTree = "<group>"; };
		BE82C4A418CA19920050EB79 /* sceneprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sceneprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/sceneprimitive2d.cxx; sourceTree = "<group>"; };
		BE82C4A518CA19920050EB79 /* sdrdecompositiontools2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sdrdecompositiontools2d.cxx; path = ../../../drawinglayer/source/primitive2d/sdrdecompositiontools2d.cxx; sourceTree = "<group>"; };
		BE82C4A618CA19920050EB79 /* shadowprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = shadowprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/shadowprimitive2d.cxx; sourceTree = "<group>"; };
		BE82C4A718CA19920050EB79 /* structuretagprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = structuretagprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/structuretagprimitive2d.cxx; sourceTree = "<group>"; };
		BE82C4A818CA19920050EB79 /* svggradientprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svggradientprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/svggradientprimitive2d.cxx; sourceTree = "<group>"; };
		BE82C4A918CA19920050EB79 /* textbreakuphelper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textbreakuphelper.cxx; path = ../../../drawinglayer/source/primitive2d/textbreakuphelper.cxx; sourceTree = "<group>"; };
		BE82C4AA18CA19920050EB79 /* textdecoratedprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textdecoratedprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/textdecoratedprimitive2d.cxx; sourceTree = "<group>"; };
		BE82C4AB18CA19920050EB79 /* texteffectprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = texteffectprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/texteffectprimitive2d.cxx; sourceTree = "<group>"; };
		BE82C4AC18CA19920050EB79 /* textenumsprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textenumsprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/textenumsprimitive2d.cxx; sourceTree = "<group>"; };
		BE82C4AD18CA19920050EB79 /* texthierarchyprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = texthierarchyprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/texthierarchyprimitive2d.cxx; sourceTree = "<group>"; };
		BE82C4AE18CA19920050EB79 /* textlayoutdevice.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textlayoutdevice.cxx; path = ../../../drawinglayer/source/primitive2d/textlayoutdevice.cxx; sourceTree = "<group>"; };
		BE82C4AF18CA19920050EB79 /* textlineprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textlineprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/textlineprimitive2d.cxx; sourceTree = "<group>"; };
		BE82C4B018CA19920050EB79 /* textprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/textprimitive2d.cxx; sourceTree = "<group>"; };
		BE82C4B118CA19920050EB79 /* textstrikeoutprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textstrikeoutprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/textstrikeoutprimitive2d.cxx; sourceTree = "<group>"; };
		BE82C4B218CA19920050EB79 /* transformprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = transformprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/transformprimitive2d.cxx; sourceTree = "<group>"; };
		BE82C4B318CA19920050EB79 /* transparenceprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = transparenceprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/transparenceprimitive2d.cxx; sourceTree = "<group>"; };
		BE82C4B418CA19920050EB79 /* unifiedtransparenceprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = unifiedtransparenceprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/unifiedtransparenceprimitive2d.cxx; sourceTree = "<group>"; };
		BE82C4B518CA19920050EB79 /* wallpaperprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = wallpaperprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/wallpaperprimitive2d.cxx; sourceTree = "<group>"; };
		BE82C4B618CA19920050EB79 /* wrongspellprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = wrongspellprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/wrongspellprimitive2d.cxx; sourceTree = "<group>"; };
		BE82C4BB18CDBCC50050EB79 /* pagepreviewlayout.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pagepreviewlayout.cxx; path = ../../../sw/source/core/view/pagepreviewlayout.cxx; sourceTree = "<group>"; };
		BE82C4BC18CDBCC50050EB79 /* printdata.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = printdata.cxx; path = ../../../sw/source/core/view/printdata.cxx; sourceTree = "<group>"; };
		BE82C4BD18CDBCC50050EB79 /* vdraw.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vdraw.cxx; path = ../../../sw/source/core/view/vdraw.cxx; sourceTree = "<group>"; };
		BE82C4BE18CDBCC50050EB79 /* viewimp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewimp.cxx; path = ../../../sw/source/core/view/viewimp.cxx; sourceTree = "<group>"; };
		BE82C4BF18CDBCC50050EB79 /* viewpg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewpg.cxx; path = ../../../sw/source/core/view/viewpg.cxx; sourceTree = "<group>"; };
		BE82C4C018CDBCC50050EB79 /* viewsh.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewsh.cxx; path = ../../../sw/source/core/view/viewsh.cxx; sourceTree = "<group>"; };
		BE82C4C118CDBCC50050EB79 /* vnew.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vnew.cxx; path = ../../../sw/source/core/view/vnew.cxx; sourceTree = "<group>"; };
		BE82C4C218CDBCC50050EB79 /* vprint.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vprint.cxx; path = ../../../sw/source/core/view/vprint.cxx; sourceTree = "<group>"; };
		BE82C4C418CE6DBE0050EB79 /* abstdlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = abstdlg.cxx; path = ../../../vcl/source/window/abstdlg.cxx; sourceTree = "<group>"; };
		BE82C4C518CE6DBE0050EB79 /* accel.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = accel.cxx; path = ../../../vcl/source/window/accel.cxx; sourceTree = "<group>"; };
		BE82C4C618CE6DBE0050EB79 /* accmgr.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = accmgr.cxx; path = ../../../vcl/source/window/accmgr.cxx; sourceTree = "<group>"; };
		BE82C4C718CE6DBE0050EB79 /* brdwin.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = brdwin.cxx; path = ../../../vcl/source/window/brdwin.cxx; sourceTree = "<group>"; };
		BE82C4C818CE6DBE0050EB79 /* btndlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = btndlg.cxx; path = ../../../vcl/source/window/btndlg.cxx; sourceTree = "<group>"; };
		BE82C4C918CE6DBE0050EB79 /* builder.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = builder.cxx; path = ../../../vcl/source/window/builder.cxx; sourceTree = "<group>"; };
		BE82C4CA18CE6DBE0050EB79 /* cmdevt.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cmdevt.cxx; path = ../../../vcl/source/window/cmdevt.cxx; sourceTree = "<group>"; };
		BE82C4CB18CE6DBE0050EB79 /* cursor.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cursor.cxx; path = ../../../vcl/source/window/cursor.cxx; sourceTree = "<group>"; };
		BE82C4CC18CE6DBE0050EB79 /* decoview.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = decoview.cxx; path = ../../../vcl/source/window/decoview.cxx; sourceTree = "<group>"; };
		BE82C4CD18CE6DBE0050EB79 /* dialog.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dialog.cxx; path = ../../../vcl/source/window/dialog.cxx; sourceTree = "<group>"; };
		BE82C4CE18CE6DBE0050EB79 /* dlgctrl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dlgctrl.cxx; path = ../../../vcl/source/window/dlgctrl.cxx; sourceTree = "<group>"; };
		BE82C4CF18CE6DBE0050EB79 /* dndevdis.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dndevdis.cxx; path = ../../../vcl/source/window/dndevdis.cxx; sourceTree = "<group>"; };
		BE82C4D018CE6DBE0050EB79 /* dndlcon.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dndlcon.cxx; path = ../../../vcl/source/window/dndlcon.cxx; sourceTree = "<group>"; };
		BE82C4D118CE6DBE0050EB79 /* dockingarea.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dockingarea.cxx; path = ../../../vcl/source/window/dockingarea.cxx; sourceTree = "<group>"; };
		BE82C4D218CE6DBE0050EB79 /* dockmgr.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dockmgr.cxx; path = ../../../vcl/source/window/dockmgr.cxx; sourceTree = "<group>"; };
		BE82C4D318CE6DBE0050EB79 /* dockwin.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dockwin.cxx; path = ../../../vcl/source/window/dockwin.cxx; sourceTree = "<group>"; };
		BE82C4D418CE6DBE0050EB79 /* floatwin.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = floatwin.cxx; path = ../../../vcl/source/window/floatwin.cxx; sourceTree = "<group>"; };
		BE82C4D518CE6DBE0050EB79 /* introwin.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = introwin.cxx; path = ../../../vcl/source/window/introwin.cxx; sourceTree = "<group>"; };
		BE82C4D618CE6DBE0050EB79 /* keycod.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = keycod.cxx; path = ../../../vcl/source/window/keycod.cxx; sourceTree = "<group>"; };
		BE82C4D718CE6DBE0050EB79 /* keyevent.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = keyevent.cxx; path = ../../../vcl/source/window/keyevent.cxx; sourceTree = "<group>"; };
		BE82C4D818CE6DBE0050EB79 /* layout.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = layout.cxx; path = ../../../vcl/source/window/layout.cxx; sourceTree = "<group>"; };
		BE82C4D918CE6DBE0050EB79 /* menu.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = menu.cxx; path = ../../../vcl/source/window/menu.cxx; sourceTree = "<group>"; };
		BE82C4DA18CE6DBE0050EB79 /* mnemonic.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = mnemonic.cxx; path = ../../../vcl/source/window/mnemonic.cxx; sourceTree = "<group>"; };
		BE82C4DB18CE6DBE0050EB79 /* mnemonicengine.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = mnemonicengine.cxx; path = ../../../vcl/source/window/mnemonicengine.cxx; sourceTree = "<group>"; };
		BE82C4DC18CE6DBE0050EB79 /* mouseevent.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = mouseevent.cxx; path = ../../../vcl/source/window/mouseevent.cxx; sourceTree = "<group>"; };
		BE82C4DD18CE6DBE0050EB79 /* msgbox.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = msgbox.cxx; path = ../../../vcl/source/window/msgbox.cxx; sourceTree = "<group>"; };
		BE82C4DE18CE6DBE0050EB79 /* popupmenuwindow.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = popupmenuwindow.cxx; path = ../../../vcl/source/window/popupmenuwindow.cxx; sourceTree = "<group>"; };
		BE82C4DF18CE6DBE0050EB79 /* printdlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = printdlg.cxx; path = ../../../vcl/source/window/printdlg.cxx; sourceTree = "<group>"; };
		BE82C4E018CE6DBE0050EB79 /* scrwnd.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = scrwnd.cxx; path = ../../../vcl/source/window/scrwnd.cxx; sourceTree = "<group>"; };
		BE82C4E118CE6DBE0050EB79 /* seleng.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = seleng.cxx; path = ../../../vcl/source/window/seleng.cxx; sourceTree = "<group>"; };
		BE82C4E218CE6DBE0050EB79 /* split.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = split.cxx; path = ../../../vcl/source/window/split.cxx; sourceTree = "<group>"; };
		BE82C4E318CE6DBE0050EB79 /* splitwin.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = splitwin.cxx; path = ../../../vcl/source/window/splitwin.cxx; sourceTree = "<group>"; };
		BE82C4E418CE6DBE0050EB79 /* status.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = status.cxx; path = ../../../vcl/source/window/status.cxx; sourceTree = "<group>"; };
		BE82C4E518CE6DBE0050EB79 /* syschild.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = syschild.cxx; path = ../../../vcl/source/window/syschild.cxx; sourceTree = "<group>"; };
		BE82C4E618CE6DBE0050EB79 /* syswin.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = syswin.cxx; path = ../../../vcl/source/window/syswin.cxx; sourceTree = "<group>"; };
		BE82C4E718CE6DBE0050EB79 /* tabdlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tabdlg.cxx; path = ../../../vcl/source/window/tabdlg.cxx; sourceTree = "<group>"; };
		BE82C4E818CE6DBE0050EB79 /* tabpage.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tabpage.cxx; path = ../../../vcl/source/window/tabpage.cxx; sourceTree = "<group>"; };
		BE82C4E918CE6DBE0050EB79 /* taskpanelist.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = taskpanelist.cxx; path = ../../../vcl/source/window/taskpanelist.cxx; sourceTree = "<group>"; };
		BE82C4EA18CE6DBE0050EB79 /* toolbox.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = toolbox.cxx; path = ../../../vcl/source/window/toolbox.cxx; sourceTree = "<group>"; };
		BE82C4EB18CE6DBE0050EB79 /* toolbox2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = toolbox2.cxx; path = ../../../vcl/source/window/toolbox2.cxx; sourceTree = "<group>"; };
		BE82C4EC18CE6DBE0050EB79 /* window.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = window.cxx; path = ../../../vcl/source/window/window.cxx; sourceTree = "<group>"; };
		BE82C4ED18CE6DBE0050EB79 /* window2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = window2.cxx; path = ../../../vcl/source/window/window2.cxx; sourceTree = "<group>"; };
		BE82C4EE18CE6DBE0050EB79 /* window3.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = window3.cxx; path = ../../../vcl/source/window/window3.cxx; sourceTree = "<group>"; };
		BE82C4EF18CE6DBE0050EB79 /* winproc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = winproc.cxx; path = ../../../vcl/source/window/winproc.cxx; sourceTree = "<group>"; };
		BE82C4F018CE6DBE0050EB79 /* wrkwin.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = wrkwin.cxx; path = ../../../vcl/source/window/wrkwin.cxx; sourceTree = "<group>"; };
		BE9F45F91868396500B8BE69 /* cpp2uno-arm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "cpp2uno-arm.cxx"; path = "../../../bridges/source/cpp_uno/gcc3_ios_arm/cpp2uno-arm.cxx"; sourceTree = "<group>"; };
		BE9F45FA1868396500B8BE69 /* cpp2uno-arm64.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "cpp2uno-arm64.cxx"; path = "../../../bridges/source/cpp_uno/gcc3_ios_arm/cpp2uno-arm64.cxx"; sourceTree = "<group>"; };
		BE9F45FB1868396500B8BE69 /* cpp2uno-i386.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "cpp2uno-i386.cxx"; path = "../../../bridges/source/cpp_uno/gcc3_ios_arm/cpp2uno-i386.cxx"; sourceTree = "<group>"; };
		BE9F45FC1868396500B8BE69 /* cpp2uno.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cpp2uno.cxx; path = ../../../bridges/source/cpp_uno/gcc3_ios_arm/cpp2uno.cxx; sourceTree = "<group>"; };
		BE9F45FD1868396500B8BE69 /* except.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = except.cxx; path = ../../../bridges/source/cpp_uno/gcc3_ios_arm/except.cxx; sourceTree = "<group>"; };
		BE9F45FE1868396500B8BE69 /* helper.s */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; name = helper.s; path = ../../../bridges/source/cpp_uno/gcc3_ios_arm/helper.s; sourceTree = "<group>"; };
		BE9F46001868396500B8BE69 /* uno2cpp-arm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "uno2cpp-arm.cxx"; path = "../../../bridges/source/cpp_uno/gcc3_ios_arm/uno2cpp-arm.cxx"; sourceTree = "<group>"; };
		BE9F46011868396500B8BE69 /* uno2cpp-arm64.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "uno2cpp-arm64.cxx"; path = "../../../bridges/source/cpp_uno/gcc3_ios_arm/uno2cpp-arm64.cxx"; sourceTree = "<group>"; };
		BE9F46021868396500B8BE69 /* uno2cpp-i386.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "uno2cpp-i386.cxx"; path = "../../../bridges/source/cpp_uno/gcc3_ios_arm/uno2cpp-i386.cxx"; sourceTree = "<group>"; };
		BE9F46031868396500B8BE69 /* uno2cpp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = uno2cpp.cxx; path = ../../../bridges/source/cpp_uno/gcc3_ios_arm/uno2cpp.cxx; sourceTree = "<group>"; };
		BE9F4604186839C100B8BE69 /* bridge.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bridge.cxx; path = ../../../bridges/source/cpp_uno/shared/bridge.cxx; sourceTree = "<group>"; };
		BE9F4605186839C100B8BE69 /* component.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = component.cxx; path = ../../../bridges/source/cpp_uno/shared/component.cxx; sourceTree = "<group>"; };
		BE9F4606186839C100B8BE69 /* cppinterfaceproxy.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cppinterfaceproxy.cxx; path = ../../../bridges/source/cpp_uno/shared/cppinterfaceproxy.cxx; sourceTree = "<group>"; };
		BE9F4607186839C100B8BE69 /* guardedarray.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = guardedarray.hxx; path = ../../../bridges/source/cpp_uno/shared/guardedarray.hxx; sourceTree = "<group>"; };
		BE9F4608186839C100B8BE69 /* types.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = types.cxx; path = ../../../bridges/source/cpp_uno/shared/types.cxx; sourceTree = "<group>"; };
		BE9F4609186839C100B8BE69 /* unointerfaceproxy.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = unointerfaceproxy.cxx; path = ../../../bridges/source/cpp_uno/shared/unointerfaceproxy.cxx; sourceTree = "<group>"; };
		BE9F460A186839C100B8BE69 /* vtablefactory.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vtablefactory.cxx; path = ../../../bridges/source/cpp_uno/shared/vtablefactory.cxx; sourceTree = "<group>"; };
		BE9F460B186839C100B8BE69 /* vtables.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vtables.cxx; path = ../../../bridges/source/cpp_uno/shared/vtables.cxx; sourceTree = "<group>"; };
		BECAB371186054DE00F814F9 /* lo.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = lo.mm; sourceTree = "<group>"; };
		BEDB0F08185B7537009A6F26 /* lo.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = lo.xcconfig; path = ../../../lo.xcconfig; sourceTree = "<group>"; };
		BEEE02CE1860ABB700FBDE67 /* program */ = {isa = PBXFileReference; lastKnownFileType = folder; name = program; path = Resources/program; sourceTree = SOURCE_ROOT; };
		BEEE02CF1860ABB700FBDE67 /* share */ = {isa = PBXFileReference; lastKnownFileType = folder; name = share; path = Resources/share; sourceTree = SOURCE_ROOT; };
		BEEE02D01860ABB700FBDE67 /* ure */ = {isa = PBXFileReference; lastKnownFileType = folder; name = ure; path = Resources/ure; sourceTree = SOURCE_ROOT; };
		BEEEF9631860740400FBDE67 /* libiconv.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libiconv.dylib; path = usr/lib/libiconv.dylib; sourceTree = SDKROOT; };
		BEEEF9651860741400FBDE67 /* libz.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libz.dylib; path = usr/lib/libz.dylib; sourceTree = SDKROOT; };
		BEEEF9691860A25400FBDE67 /* test1.odt */ = {isa = PBXFileReference; lastKnownFileType = file; name = test1.odt; path = ../../../../odk/examples/java/DocumentHandling/test/test1.odt; sourceTree = "<group>"; };
		BEEEF96D1860A82900FBDE67 /* fundamentalrc */ = {isa = PBXFileReference; lastKnownFileType = text; name = fundamentalrc; path = Resources/fundamentalrc; sourceTree = SOURCE_ROOT; };
		BEEEF96E1860A82900FBDE67 /* offapi.rdb */ = {isa = PBXFileReference; lastKnownFileType = file; name = offapi.rdb; path = Resources/offapi.rdb; sourceTree = SOURCE_ROOT; };
		BEEEF96F1860A82900FBDE67 /* oovbaapi.rdb */ = {isa = PBXFileReference; lastKnownFileType = file; name = oovbaapi.rdb; path = Resources/oovbaapi.rdb; sourceTree = SOURCE_ROOT; };
		BEEEF9AA1860A82900FBDE67 /* rc */ = {isa = PBXFileReference; lastKnownFileType = text; name = rc; path = Resources/rc; sourceTree = SOURCE_ROOT; };
		BEEEF9AB1860A82900FBDE67 /* services.rdb */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = services.rdb; path = Resources/services.rdb; sourceTree = SOURCE_ROOT; };
		BEEEFDFD1860A82C00FBDE67 /* types.rdb */ = {isa = PBXFileReference; lastKnownFileType = file; name = types.rdb; path = Resources/types.rdb; sourceTree = SOURCE_ROOT; };
		BEEEFDFE1860A82C00FBDE67 /* unorc */ = {isa = PBXFileReference; lastKnownFileType = text; name = unorc; path = Resources/unorc; sourceTree = SOURCE_ROOT; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
		BE82BD6F18218E2E00A447B5 /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				BEEEF9661860741400FBDE67 /* libz.dylib in Frameworks */,
				BEEEF9641860740400FBDE67 /* libiconv.dylib in Frameworks */,
				BE82BD7818218E2E00A447B5 /* CoreGraphics.framework in Frameworks */,
				BE82BD7A18218E2E00A447B5 /* UIKit.framework in Frameworks */,
				BE82BD7618218E2E00A447B5 /* Foundation.framework in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXFrameworksBuildPhase section */

/* Begin PBXGroup section */
		BE0898E61860D3CD0021A679 /* LibreOffice source files */ = {
			isa = PBXGroup;
			children = (
				BE82C47118CA18D70050EB79 /* drawinglayer */,
				BE35B58A188FFA43001B7439 /* cppuhelper */,
				BE9F45F81868393D00B8BE69 /* bridges */,
				BE82C38818C752760050EB79 /* sal */,
				BE35B5A6189051F7001B7439 /* sfx2 */,
				BE82C42718CA17A60050EB79 /* svx */,
				BE82C4B918CDBC5B0050EB79 /* sw */,
				BE0898E71860D3DA0021A679 /* vcl */,
			);
			name = "LibreOffice source files";
			sourceTree = "<group>";
		};
		BE0898E71860D3DA0021A679 /* vcl */ = {
			isa = PBXGroup;
			children = (
				BE35B5431886C4CC001B7439 /* gdi */,
				BE0899121860D78B0021A679 /* app */,
				BE35B53B18869D2B001B7439 /* headless */,
				BE35B53818868ECD001B7439 /* ios */,
				BE0899131860F6100021A679 /* quartz */,
				BE82C4C318CE6D860050EB79 /* window */,
			);
			name = vcl;
			sourceTree = "<group>";
		};
		BE0899121860D78B0021A679 /* app */ = {
			isa = PBXGroup;
			children = (
				BE0898E81860D42B0021A679 /* brand.cxx */,
				BE0898E91860D42B0021A679 /* dbggui.cxx */,
				BE0898EA1860D42B0021A679 /* dndhelp.cxx */,
				BE0898EB1860D42B0021A679 /* help.cxx */,
				BE0898EC1860D42B0021A679 /* i18nhelp.cxx */,
				BE0898ED1860D42B0021A679 /* idlemgr.cxx */,
				BE0898EE1860D42B0021A679 /* salvtables.cxx */,
				BE0898EF1860D42B0021A679 /* session.cxx */,
				BE0898F01860D42B0021A679 /* settings.cxx */,
				BE0898F11860D42B0021A679 /* solarmutex.cxx */,
				BE0898F21860D42B0021A679 /* sound.cxx */,
				BE0898F31860D42B0021A679 /* stdtext.cxx */,
				BE0898F41860D42B0021A679 /* svapp.cxx */,
				BE0898F51860D42B0021A679 /* svdata.cxx */,
				BE0898F61860D42B0021A679 /* svmain.cxx */,
				BE0898F71860D42B0021A679 /* svmainhook.cxx */,
				BE0898F81860D42B0021A679 /* timer.cxx */,
				BE0898F91860D42B0021A679 /* unohelp.cxx */,
				BE0898FA1860D42B0021A679 /* unohelp2.cxx */,
				BE0898FB1860D42B0021A679 /* vclevent.cxx */,
			);
			name = app;
			sourceTree = "<group>";
		};
		BE0899131860F6100021A679 /* quartz */ = {
			isa = PBXGroup;
			children = (
				BE0899141860F6450021A679 /* ctfonts.cxx */,
				BE0899151860F6450021A679 /* ctlayout.cxx */,
				BE0899161860F6450021A679 /* salbmp.cxx */,
				BE0899171860F6450021A679 /* salgdi.cxx */,
				BE0899181860F6450021A679 /* salgdicommon.cxx */,
				BE08991B1860F6450021A679 /* salvd.cxx */,
				BE08991C1860F6450021A679 /* utils.cxx */,
			);
			name = quartz;
			sourceTree = "<group>";
		};
		BE35B53818868ECD001B7439 /* ios */ = {
			isa = PBXGroup;
			children = (
				BE35B53918868EFD001B7439 /* dummies.cxx */,
				BE35B53A18868EFD001B7439 /* iosinst.cxx */,
			);
			name = ios;
			sourceTree = "<group>";
		};
		BE35B53B18869D2B001B7439 /* headless */ = {
			isa = PBXGroup;
			children = (
				BE35B53C18869D69001B7439 /* svpbmp.cxx */,
				BE35B53D18869D69001B7439 /* svpdata.cxx */,
				BE35B53E18869D69001B7439 /* svpdummies.cxx */,
				BE35B53F18869D69001B7439 /* svpframe.cxx */,
				BE35B54018869D69001B7439 /* svpgdi.cxx */,
				BE35B54118869D69001B7439 /* svpinst.cxx */,
				BE35B54218869D69001B7439 /* svpvd.cxx */,
			);
			name = headless;
			sourceTree = "<group>";
		};
		BE35B5431886C4CC001B7439 /* gdi */ = {
			isa = PBXGroup;
			children = (
				BE35B5441886C50A001B7439 /* alpha.cxx */,
				BE35B5451886C50A001B7439 /* animate.cxx */,
				BE35B5461886C50A001B7439 /* base14.cxx */,
				BE35B5471886C50A001B7439 /* bitmap.cxx */,
				BE35B5481886C50A001B7439 /* bitmap3.cxx */,
				BE35B5491886C50A001B7439 /* bitmap4.cxx */,
				BE35B54A1886C50A001B7439 /* bitmapex.cxx */,
				BE35B54B1886C50A001B7439 /* bmpacc.cxx */,
				BE35B54C1886C50A001B7439 /* bmpacc2.cxx */,
				BE35B54D1886C50A001B7439 /* bmpacc3.cxx */,
				BE35B54E1886C50A001B7439 /* bmpfast.cxx */,
				BE35B54F1886C50A001B7439 /* configsettings.cxx */,
				BE35B5501886C50A001B7439 /* cvtgrf.cxx */,
				BE35B5511886C50A001B7439 /* cvtsvm.cxx */,
				BE35B5521886C50A001B7439 /* dibtools.cxx */,
				BE35B5531886C50A001B7439 /* embeddedfontshelper.cxx */,
				BE35B5541886C50A001B7439 /* extoutdevdata.cxx */,
				BE35B5551886C50A001B7439 /* font.cxx */,
				BE35B5561886C50A001B7439 /* gdimetafiletools.cxx */,
				BE35B5571886C50A001B7439 /* gdimtf.cxx */,
				BE35B5581886C50A001B7439 /* gfxlink.cxx */,
				BE35B5591886C50A001B7439 /* gradient.cxx */,
				BE35B55A1886C50A001B7439 /* graph.cxx */,
				BE35B55B1886C50A001B7439 /* graphictools.cxx */,
				BE35B55C1886C50A001B7439 /* hatch.cxx */,
				BE35B55D1886C50A001B7439 /* image.cxx */,
				BE35B55E1886C50A001B7439 /* imagerepository.cxx */,
				BE35B55F1886C50A001B7439 /* impanmvw.cxx */,
				BE35B5601886C50A001B7439 /* impbmp.cxx */,
				BE35B5611886C50A001B7439 /* impfont.cxx */,
				BE35B5621886C50A001B7439 /* impgraph.cxx */,
				BE35B5631886C50A001B7439 /* impimage.cxx */,
				BE35B5641886C50A001B7439 /* impimagetree.cxx */,
				BE35B5651886C50A001B7439 /* impvect.cxx */,
				BE35B5661886C50A001B7439 /* jobset.cxx */,
				BE35B5671886C50A001B7439 /* lineinfo.cxx */,
				BE35B5681886C50A001B7439 /* mapmod.cxx */,
				BE35B5691886C50A001B7439 /* metaact.cxx */,
				BE35B56A1886C50A001B7439 /* metric.cxx */,
				BE35B56B1886C50A001B7439 /* octree.cxx */,
				BE35B56C1886C50A001B7439 /* oldprintadaptor.cxx */,
				BE35B56D1886C50A001B7439 /* outdev.cxx */,
				BE35B56E1886C50A001B7439 /* outdev2.cxx */,
				BE35B56F1886C50A001B7439 /* outdev3.cxx */,
				BE35B5701886C50A001B7439 /* outdev4.cxx */,
				BE35B5711886C50A001B7439 /* outdev5.cxx */,
				BE35B5721886C50A001B7439 /* outdev6.cxx */,
				BE35B5731886C50A001B7439 /* outdevnative.cxx */,
				BE35B5741886C50A001B7439 /* outmap.cxx */,
				BE35B5751886C50A001B7439 /* pdfextoutdevdata.cxx */,
				BE35B5761886C50A001B7439 /* pdffontcache.cxx */,
				BE35B5771886C50A001B7439 /* pdfwriter_impl.cxx */,
				BE35B5781886C50A001B7439 /* pdfwriter_impl2.cxx */,
				BE35B5791886C50A001B7439 /* pdfwriter.cxx */,
				BE35B57A1886C50A001B7439 /* pngread.cxx */,
				BE35B57B1886C50A001B7439 /* pngwrite.cxx */,
				BE35B57C1886C50A001B7439 /* print.cxx */,
				BE35B57D1886C50A001B7439 /* print2.cxx */,
				BE35B57E1886C50A001B7439 /* print3.cxx */,
				BE35B57F1886C50A001B7439 /* regband.cxx */,
				BE35B5801886C50A001B7439 /* region.cxx */,
				BE35B5811886C50A001B7439 /* regionband.cxx */,
				BE35B5821886C50A001B7439 /* salgdilayout.cxx */,
				BE35B5831886C50A001B7439 /* sallayout.cxx */,
				BE35B5841886C50A001B7439 /* salmisc.cxx */,
				BE35B5851886C50A001B7439 /* salnativewidgets-none.cxx */,
				BE35B5861886C50A001B7439 /* svgdata.cxx */,
				BE35B5871886C50A001B7439 /* textlayout.cxx */,
				BE35B5881886C50A001B7439 /* virdev.cxx */,
				BE35B5891886C50A001B7439 /* wall.cxx */,
			);
			name = gdi;
			sourceTree = "<group>";
		};
		BE35B58A188FFA43001B7439 /* cppuhelper */ = {
			isa = PBXGroup;
			children = (
				BE35B58B188FFA88001B7439 /* access_control.cxx */,
				BE35B58C188FFA88001B7439 /* bootstrap.cxx */,
				BE35B58D188FFA88001B7439 /* compat.cxx */,
				BE35B58E188FFA88001B7439 /* component_context.cxx */,
				BE35B58F188FFA88001B7439 /* component.cxx */,
				BE35B590188FFA88001B7439 /* defaultbootstrap.cxx */,
				BE35B591188FFA88001B7439 /* exc_thrower.cxx */,
				BE35B592188FFA88001B7439 /* factory.cxx */,
				BE35B593188FFA88001B7439 /* findsofficepath.c */,
				BE35B594188FFA88001B7439 /* implbase_ex.cxx */,
				BE35B595188FFA88001B7439 /* implbase.cxx */,
				BE35B596188FFA88001B7439 /* implementationentry.cxx */,
				BE35B597188FFA88001B7439 /* interfacecontainer.cxx */,
				BE35B598188FFA88001B7439 /* macro_expander.cxx */,
				BE35B599188FFA88001B7439 /* paths.cxx */,
				BE35B59A188FFA88001B7439 /* propertysetmixin.cxx */,
				BE35B59B188FFA88001B7439 /* propshlp.cxx */,
				BE35B59C188FFA88001B7439 /* servicemanager.cxx */,
				BE35B59D188FFA88001B7439 /* shlib.cxx */,
				BE35B59E188FFA88001B7439 /* supportsservice.cxx */,
				BE35B59F188FFA88001B7439 /* tdmgr.cxx */,
				BE35B5A0188FFA88001B7439 /* typemanager.cxx */,
				BE35B5A1188FFA88001B7439 /* typeprovider.cxx */,
				BE35B5A2188FFA88001B7439 /* unourl.cxx */,
				BE35B5A3188FFA88001B7439 /* weak.cxx */,
			);
			name = cppuhelper;
			sourceTree = "<group>";
		};
		BE35B5A6189051F7001B7439 /* sfx2 */ = {
			isa = PBXGroup;
			children = (
				BE35B5A71890520E001B7439 /* objface.cxx */,
			);
			name = sfx2;
			sourceTree = "<group>";
		};
		BE7C277118D1DDC500C4908C /* doc */ = {
			isa = PBXGroup;
			children = (
				BE7C277218D1DDF600C4908C /* acmplwrd.cxx */,
				BE7C277318D1DDF600C4908C /* dbgoutsw.cxx */,
				BE7C277418D1DDF600C4908C /* doc.cxx */,
				BE7C277518D1DDF600C4908C /* docbasic.cxx */,
				BE7C277618D1DDF600C4908C /* docbm.cxx */,
				BE7C277718D1DDF600C4908C /* docchart.cxx */,
				BE7C277818D1DDF600C4908C /* doccomp.cxx */,
				BE7C277918D1DDF600C4908C /* doccorr.cxx */,
				BE7C277A18D1DDF600C4908C /* docdde.cxx */,
				BE7C277B18D1DDF600C4908C /* docdesc.cxx */,
				BE7C277C18D1DDF600C4908C /* docdraw.cxx */,
				BE7C277D18D1DDF600C4908C /* docedt.cxx */,
				BE7C277E18D1DDF600C4908C /* docfld.cxx */,
				BE7C277F18D1DDF600C4908C /* docfly.cxx */,
				BE7C278018D1DDF600C4908C /* docfmt.cxx */,
				BE7C278118D1DDF600C4908C /* docftn.cxx */,
				BE7C278218D1DDF600C4908C /* docglbl.cxx */,
				BE7C278318D1DDF600C4908C /* docglos.cxx */,
				BE7C278418D1DDF600C4908C /* doclay.cxx */,
				BE7C278518D1DDF600C4908C /* docnew.cxx */,
				BE7C278618D1DDF600C4908C /* docnum.cxx */,
				BE7C278718D1DDF600C4908C /* docredln.cxx */,
				BE7C278818D1DDF600C4908C /* docruby.cxx */,
				BE7C278918D1DDF600C4908C /* docsort.cxx */,
				BE7C278A18D1DDF600C4908C /* docstat.cxx */,
				BE7C278B18D1DDF600C4908C /* doctxm.cxx */,
				BE7C278C18D1DDF600C4908C /* docxforms.cxx */,
				BE7C278D18D1DDF600C4908C /* extinput.cxx */,
				BE7C278E18D1DDF600C4908C /* fmtcol.cxx */,
				BE7C278F18D1DDF600C4908C /* ftnidx.cxx */,
				BE7C279018D1DDF600C4908C /* gctable.cxx */,
				BE7C279118D1DDF600C4908C /* htmltbl.cxx */,
				BE7C279218D1DDF600C4908C /* lineinfo.cxx */,
				BE7C279318D1DDF600C4908C /* list.cxx */,
				BE7C279418D1DDF600C4908C /* notxtfrm.cxx */,
				BE7C279518D1DDF600C4908C /* number.cxx */,
				BE7C279618D1DDF600C4908C /* poolfmt.cxx */,
				BE7C279718D1DDF600C4908C /* sortopt.cxx */,
				BE7C279818D1DDF600C4908C /* swserv.cxx */,
				BE7C279918D1DDF600C4908C /* swstylemanager.cxx */,
				BE7C279A18D1DDF600C4908C /* SwStyleNameMapper.cxx */,
				BE7C279B18D1DDF600C4908C /* tblafmt.cxx */,
				BE7C279C18D1DDF600C4908C /* tblcpy.cxx */,
				BE7C279D18D1DDF600C4908C /* tblrwcl.cxx */,
				BE7C279E18D1DDF600C4908C /* visiturl.cxx */,
			);
			name = doc;
			sourceTree = "<group>";
		};
		BE82BD6918218E2E00A447B5 = {
			isa = PBXGroup;
			children = (
				BE0898E61860D3CD0021A679 /* LibreOffice source files */,
				BE82BD7B18218E2E00A447B5 /* TiledLibreOffice */,
				BEEEF9681860A21F00FBDE67 /* Resources */,
				BE82BD7418218E2E00A447B5 /* Frameworks */,
				BE82BD7318218E2E00A447B5 /* Products */,
			);
			sourceTree = "<group>";
		};
		BE82BD7318218E2E00A447B5 /* Products */ = {
			isa = PBXGroup;
			children = (
				BE82BD7218218E2E00A447B5 /* TiledLibreOffice.app */,
			);
			name = Products;
			sourceTree = "<group>";
		};
		BE82BD7418218E2E00A447B5 /* Frameworks */ = {
			isa = PBXGroup;
			children = (
				BEEEF9651860741400FBDE67 /* libz.dylib */,
				BEEEF9631860740400FBDE67 /* libiconv.dylib */,
				BE82BD7518218E2E00A447B5 /* Foundation.framework */,
				BE82BD7718218E2E00A447B5 /* CoreGraphics.framework */,
				BE82BD7918218E2E00A447B5 /* UIKit.framework */,
				BE82BD9418218E2E00A447B5 /* XCTest.framework */,
			);
			name = Frameworks;
			sourceTree = "<group>";
		};
		BE82BD7B18218E2E00A447B5 /* TiledLibreOffice */ = {
			isa = PBXGroup;
			children = (
				BECAB371186054DE00F814F9 /* lo.mm */,
				BE82BD8418218E2E00A447B5 /* AppDelegate.h */,
				BE82BD8518218E2E00A447B5 /* AppDelegate.m */,
				BE55B06B18D87CC600950228 /* DocumentTableViewController.h */,
				BE55B06C18D87CC600950228 /* DocumentTableViewController.m */,
				BE82BDAA182190E400A447B5 /* TiledView.h */,
				BE82BDAB182190E400A447B5 /* TiledView.m */,
				BE82BDAD1821A1D000A447B5 /* View.h */,
				BE82BDAE1821A1D000A447B5 /* View.m */,
				BE82BD8A18218E2E00A447B5 /* ViewController.h */,
				BE82BD8B18218E2E00A447B5 /* ViewController.m */,
				BE82BD8D18218E2E00A447B5 /* Images.xcassets */,
				BE82BD7C18218E2E00A447B5 /* Supporting Files */,
			);
			path = TiledLibreOffice;
			sourceTree = "<group>";
		};
		BE82BD7C18218E2E00A447B5 /* Supporting Files */ = {
			isa = PBXGroup;
			children = (
				BEDB0F08185B7537009A6F26 /* lo.xcconfig */,
				BE82BD7D18218E2E00A447B5 /* TiledLibreOffice-Info.plist */,
				BE82BD7E18218E2E00A447B5 /* InfoPlist.strings */,
				BE82BD8118218E2E00A447B5 /* main.m */,
				BE82BD8318218E2E00A447B5 /* TiledLibreOffice-Prefix.pch */,
			);
			name = "Supporting Files";
			sourceTree = "<group>";
		};
		BE82C38818C752760050EB79 /* sal */ = {
			isa = PBXGroup;
			children = (
				BE82C38918C752E20050EB79 /* backtrace.c */,
				BE82C38A18C752E20050EB79 /* conditn.cxx */,
				BE82C38B18C752E20050EB79 /* diagnose.cxx */,
				BE82C38C18C752E20050EB79 /* file_error_transl.cxx */,
				BE82C38D18C752E20050EB79 /* file_misc.cxx */,
				BE82C38E18C752E20050EB79 /* file_path_helper.cxx */,
				BE82C38F18C752E20050EB79 /* file_stat.cxx */,
				BE82C39018C752E20050EB79 /* file_url.cxx */,
				BE82C39118C752E20050EB79 /* file_volume.cxx */,
				BE82C39218C752E20050EB79 /* file.cxx */,
				BE82C39318C752E20050EB79 /* interlck.c */,
				BE82C39418C752E20050EB79 /* memory.c */,
				BE82C39518C752E20050EB79 /* module.cxx */,
				BE82C39618C752E20050EB79 /* mutex.c */,
				BE82C39718C752E20050EB79 /* nlsupport.c */,
				BE82C39818C752E20050EB79 /* osxlocale.cxx */,
				BE82C39918C752E20050EB79 /* pipe.c */,
				BE82C39A18C752E20050EB79 /* process_impl.cxx */,
				BE82C39B18C752E20050EB79 /* process.cxx */,
				BE82C39C18C752E20050EB79 /* profile.cxx */,
				BE82C39D18C752E20050EB79 /* readwrite_helper.c */,
				BE82C39E18C752E20050EB79 /* salinit.cxx */,
				BE82C39F18C752E20050EB79 /* security.c */,
				BE82C3A018C752E20050EB79 /* signal.c */,
				BE82C3A118C752E20050EB79 /* socket.c */,
				BE82C3A218C752E20050EB79 /* system.c */,
				BE82C3A318C752E20050EB79 /* tempfile.c */,
				BE82C3A418C752E20050EB79 /* thread.c */,
				BE82C3A518C752E20050EB79 /* time.c */,
				BE82C3A618C752E20050EB79 /* uunxapi.cxx */,
				BE82C3A718C752E20050EB79 /* uunxapi.mm */,
			);
			name = sal;
			sourceTree = "<group>";
		};
		BE82C42718CA17A60050EB79 /* svx */ = {
			isa = PBXGroup;
			children = (
				BE82C42818CA184E0050EB79 /* svdraw */,
			);
			name = svx;
			sourceTree = "<group>";
		};
		BE82C42818CA184E0050EB79 /* svdraw */ = {
			isa = PBXGroup;
			children = (
				BE82C42918CA18610050EB79 /* ActionDescriptionProvider.cxx */,
				BE82C42A18CA18610050EB79 /* charthelper.cxx */,
				BE82C42B18CA18610050EB79 /* clonelist.cxx */,
				BE82C42C18CA18610050EB79 /* gradtrns.cxx */,
				BE82C42D18CA18610050EB79 /* gradtrns.hxx */,
				BE82C42E18CA18610050EB79 /* polypolygoneditor.cxx */,
				BE82C42F18CA18610050EB79 /* sdrhittesthelper.cxx */,
				BE82C43018CA18610050EB79 /* sdrmasterpagedescriptor.cxx */,
				BE82C43118CA18610050EB79 /* sdrpagewindow.cxx */,
				BE82C43218CA18610050EB79 /* sdrpaintwindow.cxx */,
				BE82C43318CA18610050EB79 /* sdrundomanager.cxx */,
				BE82C43418CA18610050EB79 /* selectioncontroller.cxx */,
				BE82C43518CA18610050EB79 /* svdattr.cxx */,
				BE82C43618CA18610050EB79 /* svdcrtv.cxx */,
				BE82C43718CA18610050EB79 /* svddrag.cxx */,
				BE82C43818CA18610050EB79 /* svddrgmt.cxx */,
				BE82C43918CA18610050EB79 /* svddrgv.cxx */,
				BE82C43A18CA18610050EB79 /* svdedtv.cxx */,
				BE82C43B18CA18610050EB79 /* svdedtv1.cxx */,
				BE82C43C18CA18610050EB79 /* svdedtv2.cxx */,
				BE82C43D18CA18610050EB79 /* svdedxv.cxx */,
				BE82C43E18CA18610050EB79 /* svdetc.cxx */,
				BE82C43F18CA18610050EB79 /* svdfmtf.cxx */,
				BE82C44018CA18610050EB79 /* svdglev.cxx */,
				BE82C44118CA18610050EB79 /* svdglue.cxx */,
				BE82C44218CA18610050EB79 /* svdhdl.cxx */,
				BE82C44318CA18610050EB79 /* svdhlpln.cxx */,
				BE82C44418CA18610050EB79 /* svdibrow.cxx */,
				BE82C44518CA18610050EB79 /* svditer.cxx */,
				BE82C44618CA18610050EB79 /* svdlayer.cxx */,
				BE82C44718CA18610050EB79 /* svdmark.cxx */,
				BE82C44818CA18610050EB79 /* svdmodel.cxx */,
				BE82C44918CA18610050EB79 /* svdmrkv.cxx */,
				BE82C44A18CA18610050EB79 /* svdmrkv1.cxx */,
				BE82C44B18CA18610050EB79 /* svdoashp.cxx */,
				BE82C44C18CA18610050EB79 /* svdoattr.cxx */,
				BE82C44D18CA18610050EB79 /* svdobj.cxx */,
				BE82C44E18CA18610050EB79 /* svdocapt.cxx */,
				BE82C44F18CA18610050EB79 /* svdocirc.cxx */,
				BE82C45018CA18610050EB79 /* svdoedge.cxx */,
				BE82C45118CA18610050EB79 /* svdograf.cxx */,
				BE82C45218CA18610050EB79 /* svdogrp.cxx */,
				BE82C45318CA18610050EB79 /* svdomeas.cxx */,
				BE82C45418CA18610050EB79 /* svdomedia.cxx */,
				BE82C45518CA18610050EB79 /* svdoole2.cxx */,
				BE82C45618CA18610050EB79 /* svdopage.cxx */,
				BE82C45718CA18610050EB79 /* svdopath.cxx */,
				BE82C45818CA18610050EB79 /* svdorect.cxx */,
				BE82C45918CA18610050EB79 /* svdotext.cxx */,
				BE82C45A18CA18610050EB79 /* svdotextdecomposition.cxx */,
				BE82C45B18CA18610050EB79 /* svdotextpathdecomposition.cxx */,
				BE82C45C18CA18610050EB79 /* svdotxat.cxx */,
				BE82C45D18CA18610050EB79 /* svdotxdr.cxx */,
				BE82C45E18CA18610050EB79 /* svdotxed.cxx */,
				BE82C45F18CA18610050EB79 /* svdotxfl.cxx */,
				BE82C46018CA18610050EB79 /* svdotxln.cxx */,
				BE82C46118CA18610050EB79 /* svdotxtr.cxx */,
				BE82C46218CA18610050EB79 /* svdouno.cxx */,
				BE82C46318CA18610050EB79 /* svdoutl.cxx */,
				BE82C46418CA18610050EB79 /* svdoutlinercache.cxx */,
				BE82C46518CA18610050EB79 /* svdovirt.cxx */,
				BE82C46618CA18610050EB79 /* svdpage.cxx */,
				BE82C46718CA18610050EB79 /* svdpagv.cxx */,
				BE82C46818CA18610050EB79 /* svdpntv.cxx */,
				BE82C46918CA18610050EB79 /* svdpoev.cxx */,
				BE82C46A18CA18610050EB79 /* svdsnpv.cxx */,
				BE82C46B18CA18610050EB79 /* svdtext.cxx */,
				BE82C46C18CA18610050EB79 /* svdtrans.cxx */,
				BE82C46D18CA18610050EB79 /* svdundo.cxx */,
				BE82C46E18CA18610050EB79 /* svdview.cxx */,
				BE82C46F18CA18610050EB79 /* svdviter.cxx */,
				BE82C47018CA18610050EB79 /* svdxcgv.cxx */,
			);
			name = svdraw;
			sourceTree = "<group>";
		};
		BE82C47118CA18D70050EB79 /* drawinglayer */ = {
			isa = PBXGroup;
			children = (
				BE82C48118CA19660050EB79 /* primitive2d */,
				BE82C47218CA18F60050EB79 /* processor2d */,
			);
			name = drawinglayer;
			sourceTree = "<group>";
		};
		BE82C47218CA18F60050EB79 /* processor2d */ = {
			isa = PBXGroup;
			children = (
				BE82C47318CA192D0050EB79 /* baseprocessor2d.cxx */,
				BE82C47418CA192D0050EB79 /* contourextractor2d.cxx */,
				BE82C47518CA192D0050EB79 /* getdigitlanguage.cxx */,
				BE82C47618CA192D0050EB79 /* helperwrongspellrenderer.cxx */,
				BE82C47718CA192D0050EB79 /* hittestprocessor2d.cxx */,
				BE82C47818CA192D0050EB79 /* linegeometryextractor2d.cxx */,
				BE82C47918CA192D0050EB79 /* objectinfoextractor2d.cxx */,
				BE82C47A18CA192D0050EB79 /* processor2dtools.cxx */,
				BE82C47B18CA192D0050EB79 /* processorfromoutputdevice.cxx */,
				BE82C47C18CA192D0050EB79 /* textaspolygonextractor2d.cxx */,
				BE82C47D18CA192D0050EB79 /* vclhelperbufferdevice.cxx */,
				BE82C47E18CA192D0050EB79 /* vclmetafileprocessor2d.cxx */,
				BE82C47F18CA192D0050EB79 /* vclpixelprocessor2d.cxx */,
				BE82C48018CA192D0050EB79 /* vclprocessor2d.cxx */,
			);
			name = processor2d;
			sourceTree = "<group>";
		};
		BE82C48118CA19660050EB79 /* primitive2d */ = {
			isa = PBXGroup;
			children = (
				BE82C48218CA19920050EB79 /* animatedprimitive2d.cxx */,
				BE82C48318CA19920050EB79 /* backgroundcolorprimitive2d.cxx */,
				BE82C48418CA19920050EB79 /* baseprimitive2d.cxx */,
				BE82C48518CA19920050EB79 /* bitmapprimitive2d.cxx */,
				BE82C48618CA19920050EB79 /* borderlineprimitive2d.cxx */,
				BE82C48718CA19920050EB79 /* clippedborderlineprimitive2d.cxx */,
				BE82C48818CA19920050EB79 /* controlprimitive2d.cxx */,
				BE82C48918CA19920050EB79 /* cropprimitive2d.cxx */,
				BE82C48A18CA19920050EB79 /* discretebitmapprimitive2d.cxx */,
				BE82C48B18CA19920050EB79 /* discreteshadowprimitive2d.cxx */,
				BE82C48C18CA19920050EB79 /* embedded3dprimitive2d.cxx */,
				BE82C48D18CA19920050EB79 /* epsprimitive2d.cxx */,
				BE82C48E18CA19920050EB79 /* fillgradientprimitive2d.cxx */,
				BE82C48F18CA19920050EB79 /* fillgraphicprimitive2d.cxx */,
				BE82C49018CA19920050EB79 /* fillhatchprimitive2d.cxx */,
				BE82C49118CA19920050EB79 /* graphicprimitive2d.cxx */,
				BE82C49218CA19920050EB79 /* graphicprimitivehelper2d.cxx */,
				BE82C49318CA19920050EB79 /* gridprimitive2d.cxx */,
				BE82C49418CA19920050EB79 /* groupprimitive2d.cxx */,
				BE82C49518CA19920050EB79 /* helplineprimitive2d.cxx */,
				BE82C49618CA19920050EB79 /* hiddengeometryprimitive2d.cxx */,
				BE82C49718CA19920050EB79 /* invertprimitive2d.cxx */,
				BE82C49818CA19920050EB79 /* markerarrayprimitive2d.cxx */,
				BE82C49918CA19920050EB79 /* maskprimitive2d.cxx */,
				BE82C49A18CA19920050EB79 /* mediaprimitive2d.cxx */,
				BE82C49B18CA19920050EB79 /* metafileprimitive2d.cxx */,
				BE82C49C18CA19920050EB79 /* modifiedcolorprimitive2d.cxx */,
				BE82C49D18CA19920050EB79 /* objectinfoprimitive2d.cxx */,
				BE82C49E18CA19920050EB79 /* pagepreviewprimitive2d.cxx */,
				BE82C49F18CA19920050EB79 /* patternfillprimitive2d.cxx */,
				BE82C4A018CA19920050EB79 /* pointarrayprimitive2d.cxx */,
				BE82C4A118CA19920050EB79 /* polygonprimitive2d.cxx */,
				BE82C4A218CA19920050EB79 /* polypolygonprimitive2d.cxx */,
				BE82C4A318CA19920050EB79 /* primitivetools2d.cxx */,
				BE82C4A418CA19920050EB79 /* sceneprimitive2d.cxx */,
				BE82C4A518CA19920050EB79 /* sdrdecompositiontools2d.cxx */,
				BE82C4A618CA19920050EB79 /* shadowprimitive2d.cxx */,
				BE82C4A718CA19920050EB79 /* structuretagprimitive2d.cxx */,
				BE82C4A818CA19920050EB79 /* svggradientprimitive2d.cxx */,
				BE82C4A918CA19920050EB79 /* textbreakuphelper.cxx */,
				BE82C4AA18CA19920050EB79 /* textdecoratedprimitive2d.cxx */,
				BE82C4AB18CA19920050EB79 /* texteffectprimitive2d.cxx */,
				BE82C4AC18CA19920050EB79 /* textenumsprimitive2d.cxx */,
				BE82C4AD18CA19920050EB79 /* texthierarchyprimitive2d.cxx */,
				BE82C4AE18CA19920050EB79 /* textlayoutdevice.cxx */,
				BE82C4AF18CA19920050EB79 /* textlineprimitive2d.cxx */,
				BE82C4B018CA19920050EB79 /* textprimitive2d.cxx */,
				BE82C4B118CA19920050EB79 /* textstrikeoutprimitive2d.cxx */,
				BE82C4B218CA19920050EB79 /* transformprimitive2d.cxx */,
				BE82C4B318CA19920050EB79 /* transparenceprimitive2d.cxx */,
				BE82C4B418CA19920050EB79 /* unifiedtransparenceprimitive2d.cxx */,
				BE82C4B518CA19920050EB79 /* wallpaperprimitive2d.cxx */,
				BE82C4B618CA19920050EB79 /* wrongspellprimitive2d.cxx */,
			);
			name = primitive2d;
			sourceTree = "<group>";
		};
		BE82C4B918CDBC5B0050EB79 /* sw */ = {
			isa = PBXGroup;
			children = (
				BE7C277118D1DDC500C4908C /* doc */,
				BE82C4BA18CDBCB00050EB79 /* view */,
			);
			name = sw;
			sourceTree = "<group>";
		};
		BE82C4BA18CDBCB00050EB79 /* view */ = {
			isa = PBXGroup;
			children = (
				BE82C4BB18CDBCC50050EB79 /* pagepreviewlayout.cxx */,
				BE82C4BC18CDBCC50050EB79 /* printdata.cxx */,
				BE82C4BD18CDBCC50050EB79 /* vdraw.cxx */,
				BE82C4BE18CDBCC50050EB79 /* viewimp.cxx */,
				BE82C4BF18CDBCC50050EB79 /* viewpg.cxx */,
				BE82C4C018CDBCC50050EB79 /* viewsh.cxx */,
				BE82C4C118CDBCC50050EB79 /* vnew.cxx */,
				BE82C4C218CDBCC50050EB79 /* vprint.cxx */,
			);
			name = view;
			sourceTree = "<group>";
		};
		BE82C4C318CE6D860050EB79 /* window */ = {
			isa = PBXGroup;
			children = (
				BE82C4C418CE6DBE0050EB79 /* abstdlg.cxx */,
				BE82C4C518CE6DBE0050EB79 /* accel.cxx */,
				BE82C4C618CE6DBE0050EB79 /* accmgr.cxx */,
				BE82C4C718CE6DBE0050EB79 /* brdwin.cxx */,
				BE82C4C818CE6DBE0050EB79 /* btndlg.cxx */,
				BE82C4C918CE6DBE0050EB79 /* builder.cxx */,
				BE82C4CA18CE6DBE0050EB79 /* cmdevt.cxx */,
				BE82C4CB18CE6DBE0050EB79 /* cursor.cxx */,
				BE82C4CC18CE6DBE0050EB79 /* decoview.cxx */,
				BE82C4CD18CE6DBE0050EB79 /* dialog.cxx */,
				BE82C4CE18CE6DBE0050EB79 /* dlgctrl.cxx */,
				BE82C4CF18CE6DBE0050EB79 /* dndevdis.cxx */,
				BE82C4D018CE6DBE0050EB79 /* dndlcon.cxx */,
				BE82C4D118CE6DBE0050EB79 /* dockingarea.cxx */,
				BE82C4D218CE6DBE0050EB79 /* dockmgr.cxx */,
				BE82C4D318CE6DBE0050EB79 /* dockwin.cxx */,
				BE82C4D418CE6DBE0050EB79 /* floatwin.cxx */,
				BE82C4D518CE6DBE0050EB79 /* introwin.cxx */,
				BE82C4D618CE6DBE0050EB79 /* keycod.cxx */,
				BE82C4D718CE6DBE0050EB79 /* keyevent.cxx */,
				BE82C4D818CE6DBE0050EB79 /* layout.cxx */,
				BE82C4D918CE6DBE0050EB79 /* menu.cxx */,
				BE82C4DA18CE6DBE0050EB79 /* mnemonic.cxx */,
				BE82C4DB18CE6DBE0050EB79 /* mnemonicengine.cxx */,
				BE82C4DC18CE6DBE0050EB79 /* mouseevent.cxx */,
				BE82C4DD18CE6DBE0050EB79 /* msgbox.cxx */,
				BE82C4DE18CE6DBE0050EB79 /* popupmenuwindow.cxx */,
				BE82C4DF18CE6DBE0050EB79 /* printdlg.cxx */,
				BE82C4E018CE6DBE0050EB79 /* scrwnd.cxx */,
				BE82C4E118CE6DBE0050EB79 /* seleng.cxx */,
				BE82C4E218CE6DBE0050EB79 /* split.cxx */,
				BE82C4E318CE6DBE0050EB79 /* splitwin.cxx */,
				BE82C4E418CE6DBE0050EB79 /* status.cxx */,
				BE82C4E518CE6DBE0050EB79 /* syschild.cxx */,
				BE82C4E618CE6DBE0050EB79 /* syswin.cxx */,
				BE82C4E718CE6DBE0050EB79 /* tabdlg.cxx */,
				BE82C4E818CE6DBE0050EB79 /* tabpage.cxx */,
				BE82C4E918CE6DBE0050EB79 /* taskpanelist.cxx */,
				BE82C4EA18CE6DBE0050EB79 /* toolbox.cxx */,
				BE82C4EB18CE6DBE0050EB79 /* toolbox2.cxx */,
				BE82C4EC18CE6DBE0050EB79 /* window.cxx */,
				BE82C4ED18CE6DBE0050EB79 /* window2.cxx */,
				BE82C4EE18CE6DBE0050EB79 /* window3.cxx */,
				BE82C4EF18CE6DBE0050EB79 /* winproc.cxx */,
				BE82C4F018CE6DBE0050EB79 /* wrkwin.cxx */,
			);
			name = window;
			sourceTree = "<group>";
		};
		BE9F45F81868393D00B8BE69 /* bridges */ = {
			isa = PBXGroup;
			children = (
				BE9F4604186839C100B8BE69 /* bridge.cxx */,
				BE9F4605186839C100B8BE69 /* component.cxx */,
				BE9F4606186839C100B8BE69 /* cppinterfaceproxy.cxx */,
				BE9F4607186839C100B8BE69 /* guardedarray.hxx */,
				BE9F4608186839C100B8BE69 /* types.cxx */,
				BE9F4609186839C100B8BE69 /* unointerfaceproxy.cxx */,
				BE9F460A186839C100B8BE69 /* vtablefactory.cxx */,
				BE9F460B186839C100B8BE69 /* vtables.cxx */,
				BE9F45F91868396500B8BE69 /* cpp2uno-arm.cxx */,
				BE9F45FA1868396500B8BE69 /* cpp2uno-arm64.cxx */,
				BE9F45FB1868396500B8BE69 /* cpp2uno-i386.cxx */,
				BE9F45FC1868396500B8BE69 /* cpp2uno.cxx */,
				BE9F45FD1868396500B8BE69 /* except.cxx */,
				BE9F45FE1868396500B8BE69 /* helper.s */,
				BE9F46001868396500B8BE69 /* uno2cpp-arm.cxx */,
				BE9F46011868396500B8BE69 /* uno2cpp-arm64.cxx */,
				BE9F46021868396500B8BE69 /* uno2cpp-i386.cxx */,
				BE9F46031868396500B8BE69 /* uno2cpp.cxx */,
			);
			name = bridges;
			sourceTree = "<group>";
		};
		BEEEF9681860A21F00FBDE67 /* Resources */ = {
			isa = PBXGroup;
			children = (
				BEEEF96D1860A82900FBDE67 /* fundamentalrc */,
				BEEEF96E1860A82900FBDE67 /* offapi.rdb */,
				BEEEF96F1860A82900FBDE67 /* oovbaapi.rdb */,
				BEEE02CE1860ABB700FBDE67 /* program */,
				BEEEF9AA1860A82900FBDE67 /* rc */,
				BEEEF9AB1860A82900FBDE67 /* services.rdb */,
				BEEE02CF1860ABB700FBDE67 /* share */,
				BEEEFDFD1860A82C00FBDE67 /* types.rdb */,
				BEEEFDFE1860A82C00FBDE67 /* unorc */,
				BEEE02D01860ABB700FBDE67 /* ure */,
				BEEEF9691860A25400FBDE67 /* test1.odt */,
			);
			name = Resources;
			path = TiledLibreOffice;
			sourceTree = "<group>";
		};
/* End PBXGroup section */

/* Begin PBXNativeTarget section */
		BE82BD7118218E2E00A447B5 /* TiledLibreOffice */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = BE82BDA418218E2E00A447B5 /* Build configuration list for PBXNativeTarget "TiledLibreOffice" */;
			buildPhases = (
				BE82BD6E18218E2E00A447B5 /* Sources */,
				BE82BD6F18218E2E00A447B5 /* Frameworks */,
				BE82BD7018218E2E00A447B5 /* Resources */,
			);
			buildRules = (
			);
			dependencies = (
			);
			name = TiledLibreOffice;
			productName = TiledLibreOffice;
			productReference = BE82BD7218218E2E00A447B5 /* TiledLibreOffice.app */;
			productType = "com.apple.product-type.application";
		};
/* End PBXNativeTarget section */

/* Begin PBXProject section */
		BE82BD6A18218E2E00A447B5 /* Project object */ = {
			isa = PBXProject;
			attributes = {
				LastUpgradeCheck = 0500;
			};
			buildConfigurationList = BE82BD6D18218E2E00A447B5 /* Build configuration list for PBXProject "TiledLibreOffice" */;
			compatibilityVersion = "Xcode 3.2";
			developmentRegion = English;
			hasScannedForEncodings = 0;
			knownRegions = (
				en,
				Base,
			);
			mainGroup = BE82BD6918218E2E00A447B5;
			productRefGroup = BE82BD7318218E2E00A447B5 /* Products */;
			projectDirPath = "";
			projectRoot = "";
			targets = (
				BE82BD7118218E2E00A447B5 /* TiledLibreOffice */,
			);
		};
/* End PBXProject section */

/* Begin PBXResourcesBuildPhase section */
		BE82BD7018218E2E00A447B5 /* Resources */ = {
			isa = PBXResourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				BE82BD8E18218E2E00A447B5 /* Images.xcassets in Resources */,
				BE82BD8018218E2E00A447B5 /* InfoPlist.strings in Resources */,
				BEEEFE011860A89100FBDE67 /* fundamentalrc in Resources */,
				BEEEFE021860A89100FBDE67 /* offapi.rdb in Resources */,
				BEEEFE031860A89100FBDE67 /* oovbaapi.rdb in Resources */,
				BEEE02D11860ABDB00FBDE67 /* program in Resources */,
				BEEEFE041860A89100FBDE67 /* rc in Resources */,
				BEEEFE051860A89100FBDE67 /* services.rdb in Resources */,
				BEEE02D21860ABDB00FBDE67 /* share in Resources */,
				BEEEFE061860A89100FBDE67 /* types.rdb in Resources */,
				BEEEFE071860A89100FBDE67 /* unorc in Resources */,
				BEEE02D31860ABDB00FBDE67 /* ure in Resources */,
				BEEEF96A1860A25400FBDE67 /* test1.odt in Resources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXResourcesBuildPhase section */

/* Begin PBXSourcesBuildPhase section */
		BE82BD6E18218E2E00A447B5 /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				BECAB372186054DE00F814F9 /* lo.mm in Sources */,
				BE55B06D18D87CC600950228 /* DocumentTableViewController.m in Sources */,
				BE82BDAF1821A1D000A447B5 /* View.m in Sources */,
				BE82BDAC182190E400A447B5 /* TiledView.m in Sources */,
				BE82BD8C18218E2E00A447B5 /* ViewController.m in Sources */,
				BE82BD8618218E2E00A447B5 /* AppDelegate.m in Sources */,
				BE82BD8218218E2E00A447B5 /* main.m in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXSourcesBuildPhase section */

/* Begin PBXVariantGroup section */
		BE82BD7E18218E2E00A447B5 /* InfoPlist.strings */ = {
			isa = PBXVariantGroup;
			children = (
				BE82BD7F18218E2E00A447B5 /* en */,
			);
			name = InfoPlist.strings;
			sourceTree = "<group>";
		};
/* End PBXVariantGroup section */

/* Begin XCBuildConfiguration section */
		BE82BDA218218E2E00A447B5 /* Debug */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = BEDB0F08185B7537009A6F26 /* lo.xcconfig */;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = NO;
				CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
				CLANG_ENABLE_MODULES = YES;
				CLANG_ENABLE_OBJC_ARC = YES;
				CLANG_WARN_BOOL_CONVERSION = YES;
				CLANG_WARN_CONSTANT_CONVERSION = YES;
				CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
				CLANG_WARN_EMPTY_BODY = YES;
				CLANG_WARN_ENUM_CONVERSION = YES;
				CLANG_WARN_INT_CONVERSION = YES;
				CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
				CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
				COPY_PHASE_STRIP = NO;
				GCC_C_LANGUAGE_STANDARD = gnu99;
				GCC_DYNAMIC_NO_PIC = NO;
				GCC_OPTIMIZATION_LEVEL = 0;
				GCC_PREPROCESSOR_DEFINITIONS = (
					"DEBUG=1",
					"$(inherited)",
				);
				GCC_SYMBOLS_PRIVATE_EXTERN = NO;
				GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
				GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
				GCC_WARN_UNDECLARED_SELECTOR = YES;
				GCC_WARN_UNINITIALIZED_AUTOS = YES;
				GCC_WARN_UNUSED_FUNCTION = YES;
				GCC_WARN_UNUSED_VARIABLE = YES;
				HEADER_SEARCH_PATHS = (
					"$(inherited)",
					/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
					"$(LO_BUILDDIR)/config_host",
					"$(LO_SRCDIR)/include",
					"$(LO_WORKDIR)/UnoApiHeadersTarget/udkapi/comprehensive",
					"$(LO_WORKDIR)/UnoApiHeadersTarget/offapi/comprehensive",
				);
				IPHONEOS_DEPLOYMENT_TARGET = 6.1;
				ONLY_ACTIVE_ARCH = YES;
				OTHER_LDFLAGS = "$(LINK_LDFLAGS)";
				SDKROOT = iphoneos;
				TARGETED_DEVICE_FAMILY = 2;
			};
			name = Debug;
		};
		BE82BDA318218E2E00A447B5 /* Release */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = BEDB0F08185B7537009A6F26 /* lo.xcconfig */;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = NO;
				CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
				CLANG_ENABLE_MODULES = YES;
				CLANG_ENABLE_OBJC_ARC = YES;
				CLANG_WARN_BOOL_CONVERSION = YES;
				CLANG_WARN_CONSTANT_CONVERSION = YES;
				CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
				CLANG_WARN_EMPTY_BODY = YES;
				CLANG_WARN_ENUM_CONVERSION = YES;
				CLANG_WARN_INT_CONVERSION = YES;
				CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
				CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
				COPY_PHASE_STRIP = YES;
				ENABLE_NS_ASSERTIONS = NO;
				GCC_C_LANGUAGE_STANDARD = gnu99;
				GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
				GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
				GCC_WARN_UNDECLARED_SELECTOR = YES;
				GCC_WARN_UNINITIALIZED_AUTOS = YES;
				GCC_WARN_UNUSED_FUNCTION = YES;
				GCC_WARN_UNUSED_VARIABLE = YES;
				HEADER_SEARCH_PATHS = (
					"$(inherited)",
					/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
					"$(LO_BUILDDIR)/config_host",
					$LO_SRCDIR/include,
					"$(LO_WORKDIR)/UnoApiHeadersTarget/udkapi/comprehensive",
					"$(LO_WORKDIR)/UnoApiHeadersTarget/offapi/comprehensive",
				);
				IPHONEOS_DEPLOYMENT_TARGET = 6.1;
				ONLY_ACTIVE_ARCH = YES;
				OTHER_LDFLAGS = "$(LINK_LDFLAGS)";
				SDKROOT = iphoneos;
				TARGETED_DEVICE_FAMILY = 2;
				VALIDATE_PRODUCT = YES;
			};
			name = Release;
		};
		BE82BDA518218E2E00A447B5 /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
				ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
				GCC_PRECOMPILE_PREFIX_HEADER = YES;
				GCC_PREFIX_HEADER = "TiledLibreOffice/TiledLibreOffice-Prefix.pch";
				INFOPLIST_FILE = "TiledLibreOffice/TiledLibreOffice-Info.plist";
				PRODUCT_NAME = "$(TARGET_NAME)";
				WRAPPER_EXTENSION = app;
			};
			name = Debug;
		};
		BE82BDA618218E2E00A447B5 /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
				ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
				GCC_PRECOMPILE_PREFIX_HEADER = YES;
				GCC_PREFIX_HEADER = "TiledLibreOffice/TiledLibreOffice-Prefix.pch";
				INFOPLIST_FILE = "TiledLibreOffice/TiledLibreOffice-Info.plist";
				PRODUCT_NAME = "$(TARGET_NAME)";
				WRAPPER_EXTENSION = app;
			};
			name = Release;
		};
/* End XCBuildConfiguration section */

/* Begin XCConfigurationList section */
		BE82BD6D18218E2E00A447B5 /* Build configuration list for PBXProject "TiledLibreOffice" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				BE82BDA218218E2E00A447B5 /* Debug */,
				BE82BDA318218E2E00A447B5 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		BE82BDA418218E2E00A447B5 /* Build configuration list for PBXNativeTarget "TiledLibreOffice" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				BE82BDA518218E2E00A447B5 /* Debug */,
				BE82BDA618218E2E00A447B5 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
/* End XCConfigurationList section */
	};
	rootObject = BE82BD6A18218E2E00A447B5 /* Project object */;
}