summaryrefslogtreecommitdiff
path: root/ios/experimental/Prototype/Prototype.xcodeproj/project.pbxproj
blob: de64d4b9c8aa85caa822fefa2266e5d0d4fe2124 (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
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
// !$*UTF8*$!
{
	archiveVersion = 1;
	classes = {
	};
	objectVersion = 46;
	objects = {

/* Begin PBXBuildFile section */
		399857461E56322300F2DA60 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 399857441E56322300F2DA60 /* InfoPlist.strings */; };
		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 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = BE82BD8D18218E2E00A447B5 /* Assets.xcassets */; };
		BECAB372186054DE00F814F9 /* lo.mm in Sources */ = {isa = PBXBuildFile; fileRef = BECAB371186054DE00F814F9 /* lo.mm */; };
		BED2593F18F6B87900C94C72 /* ImageIO.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BED2593E18F6B87900C94C72 /* ImageIO.framework */; };
		BED2594118F6B89000C94C72 /* MobileCoreServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BED2594018F6B89000C94C72 /* MobileCoreServices.framework */; };
		BEEE02D11860ABDB00FBDE67 /* program in Resources */ = {isa = PBXBuildFile; fileRef = BEEE02CE1860ABB700FBDE67 /* program */; };
		BEEE02D21860ABDB00FBDE67 /* share in Resources */ = {isa = PBXBuildFile; fileRef = BEEE02CF1860ABB700FBDE67 /* share */; };
		BEEE02D31860ABDB00FBDE67 /* services in Resources */ = {isa = PBXBuildFile; fileRef = BEEE02D01860ABB700FBDE67 /* services */; };
		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 /* udkapi.rdb in Resources */ = {isa = PBXBuildFile; fileRef = BEEEFDFD1860A82C00FBDE67 /* udkapi.rdb */; };
		BEEEFE071860A89100FBDE67 /* unorc in Resources */ = {isa = PBXBuildFile; fileRef = BEEEFDFE1860A82C00FBDE67 /* unorc */; };
/* End PBXBuildFile section */

/* Begin PBXFileReference section */
		399857421E5631FC00F2DA60 /* lo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = lo.h; sourceTree = "<group>"; };
		399857451E56322300F2DA60 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = InfoPlist.strings; sourceTree = "<group>"; };
		BE03BF9118F9648F00620DC7 /* udata.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = udata.cpp; path = ../../ioswork/UnpackedTarball/icu/source/common/udata.cpp; sourceTree = SOURCE_ROOT; };
		BE03BF9518FC1A1C00620DC7 /* xdictionary.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xdictionary.cxx; path = ../../../i18npool/source/breakiterator/xdictionary.cxx; sourceTree = SOURCE_ROOT; };
		BE0898E81860D42B0021A679 /* brand.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = brand.cxx; path = ../../../vcl/source/app/brand.cxx; sourceTree = SOURCE_ROOT; };
		BE0898E91860D42B0021A679 /* dbggui.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dbggui.cxx; path = ../../../vcl/source/app/dbggui.cxx; sourceTree = SOURCE_ROOT; };
		BE0898EA1860D42B0021A679 /* dndhelp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dndhelp.cxx; path = ../../../vcl/source/app/dndhelp.cxx; sourceTree = SOURCE_ROOT; };
		BE0898EB1860D42B0021A679 /* help.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = help.cxx; path = ../../../vcl/source/app/help.cxx; sourceTree = SOURCE_ROOT; };
		BE0898EC1860D42B0021A679 /* i18nhelp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = i18nhelp.cxx; path = ../../../vcl/source/app/i18nhelp.cxx; sourceTree = SOURCE_ROOT; };
		BE0898EE1860D42B0021A679 /* salvtables.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = salvtables.cxx; path = ../../../vcl/source/app/salvtables.cxx; sourceTree = SOURCE_ROOT; };
		BE0898EF1860D42B0021A679 /* session.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = session.cxx; path = ../../../vcl/source/app/session.cxx; sourceTree = SOURCE_ROOT; };
		BE0898F01860D42B0021A679 /* settings.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = settings.cxx; path = ../../../vcl/source/app/settings.cxx; sourceTree = SOURCE_ROOT; };
		BE0898F21860D42B0021A679 /* sound.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sound.cxx; path = ../../../vcl/source/app/sound.cxx; sourceTree = SOURCE_ROOT; };
		BE0898F31860D42B0021A679 /* stdtext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = stdtext.cxx; path = ../../../vcl/source/app/stdtext.cxx; sourceTree = SOURCE_ROOT; };
		BE0898F41860D42B0021A679 /* svapp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svapp.cxx; path = ../../../vcl/source/app/svapp.cxx; sourceTree = SOURCE_ROOT; };
		BE0898F51860D42B0021A679 /* svdata.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdata.cxx; path = ../../../vcl/source/app/svdata.cxx; sourceTree = SOURCE_ROOT; };
		BE0898F61860D42B0021A679 /* svmain.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svmain.cxx; path = ../../../vcl/source/app/svmain.cxx; sourceTree = SOURCE_ROOT; };
		BE0898F71860D42B0021A679 /* svmainhook.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svmainhook.cxx; path = ../../../vcl/source/app/svmainhook.cxx; sourceTree = SOURCE_ROOT; };
		BE0898F81860D42B0021A679 /* timer.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = timer.cxx; path = ../../../vcl/source/app/timer.cxx; sourceTree = SOURCE_ROOT; };
		BE0898F91860D42B0021A679 /* unohelp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = unohelp.cxx; path = ../../../vcl/source/app/unohelp.cxx; sourceTree = SOURCE_ROOT; };
		BE0898FA1860D42B0021A679 /* unohelp2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = unohelp2.cxx; path = ../../../vcl/source/app/unohelp2.cxx; sourceTree = SOURCE_ROOT; };
		BE0898FB1860D42B0021A679 /* vclevent.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vclevent.cxx; path = ../../../vcl/source/app/vclevent.cxx; sourceTree = SOURCE_ROOT; };
		BE0899141860F6450021A679 /* ctfonts.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ctfonts.cxx; path = ../../../vcl/quartz/ctfonts.cxx; sourceTree = SOURCE_ROOT; };
		BE0899161860F6450021A679 /* salbmp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = salbmp.cxx; path = ../../../vcl/quartz/salbmp.cxx; sourceTree = SOURCE_ROOT; };
		BE0899171860F6450021A679 /* salgdi.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = salgdi.cxx; path = ../../../vcl/quartz/salgdi.cxx; sourceTree = SOURCE_ROOT; };
		BE0899181860F6450021A679 /* salgdicommon.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = salgdicommon.cxx; path = ../../../vcl/quartz/salgdicommon.cxx; sourceTree = SOURCE_ROOT; };
		BE08991B1860F6450021A679 /* salvd.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = salvd.cxx; path = ../../../vcl/quartz/salvd.cxx; sourceTree = SOURCE_ROOT; };
		BE08991C1860F6450021A679 /* utils.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = utils.cxx; path = ../../../vcl/quartz/utils.cxx; sourceTree = SOURCE_ROOT; };
		BE35B53918868EFD001B7439 /* dummies.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dummies.cxx; path = ../../../vcl/ios/dummies.cxx; sourceTree = SOURCE_ROOT; };
		BE35B53A18868EFD001B7439 /* iosinst.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = iosinst.cxx; path = ../../../vcl/ios/iosinst.cxx; sourceTree = SOURCE_ROOT; };
		BE35B53C18869D69001B7439 /* svpbmp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svpbmp.cxx; path = ../../../vcl/headless/svpbmp.cxx; sourceTree = SOURCE_ROOT; };
		BE35B53D18869D69001B7439 /* svpdata.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svpdata.cxx; path = ../../../vcl/headless/svpdata.cxx; sourceTree = SOURCE_ROOT; };
		BE35B53E18869D69001B7439 /* svpdummies.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svpdummies.cxx; path = ../../../vcl/headless/svpdummies.cxx; sourceTree = SOURCE_ROOT; };
		BE35B53F18869D69001B7439 /* svpframe.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svpframe.cxx; path = ../../../vcl/headless/svpframe.cxx; sourceTree = SOURCE_ROOT; };
		BE35B54018869D69001B7439 /* svpgdi.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svpgdi.cxx; path = ../../../vcl/headless/svpgdi.cxx; sourceTree = SOURCE_ROOT; };
		BE35B54118869D69001B7439 /* svpinst.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svpinst.cxx; path = ../../../vcl/headless/svpinst.cxx; sourceTree = SOURCE_ROOT; };
		BE35B54218869D69001B7439 /* svpvd.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svpvd.cxx; path = ../../../vcl/headless/svpvd.cxx; sourceTree = SOURCE_ROOT; };
		BE35B5441886C50A001B7439 /* alpha.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = alpha.cxx; path = ../../../vcl/source/gdi/alpha.cxx; sourceTree = SOURCE_ROOT; };
		BE35B5451886C50A001B7439 /* animate.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = animate.cxx; path = ../../../vcl/source/gdi/animate.cxx; sourceTree = SOURCE_ROOT; };
		BE35B5461886C50A001B7439 /* base14.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = base14.cxx; path = ../../../vcl/source/gdi/base14.cxx; sourceTree = SOURCE_ROOT; };
		BE35B5471886C50A001B7439 /* bitmap.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bitmap.cxx; path = ../../../vcl/source/gdi/bitmap.cxx; sourceTree = SOURCE_ROOT; };
		BE35B5481886C50A001B7439 /* bitmap3.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bitmap3.cxx; path = ../../../vcl/source/gdi/bitmap3.cxx; sourceTree = SOURCE_ROOT; };
		BE35B5491886C50A001B7439 /* bitmap4.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bitmap4.cxx; path = ../../../vcl/source/gdi/bitmap4.cxx; sourceTree = SOURCE_ROOT; };
		BE35B54A1886C50A001B7439 /* bitmapex.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bitmapex.cxx; path = ../../../vcl/source/gdi/bitmapex.cxx; sourceTree = SOURCE_ROOT; };
		BE35B54B1886C50A001B7439 /* bmpacc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bmpacc.cxx; path = ../../../vcl/source/gdi/bmpacc.cxx; sourceTree = SOURCE_ROOT; };
		BE35B54C1886C50A001B7439 /* bmpacc2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bmpacc2.cxx; path = ../../../vcl/source/gdi/bmpacc2.cxx; sourceTree = SOURCE_ROOT; };
		BE35B54D1886C50A001B7439 /* bmpacc3.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bmpacc3.cxx; path = ../../../vcl/source/gdi/bmpacc3.cxx; sourceTree = SOURCE_ROOT; };
		BE35B54E1886C50A001B7439 /* bmpfast.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bmpfast.cxx; path = ../../../vcl/source/gdi/bmpfast.cxx; sourceTree = SOURCE_ROOT; };
		BE35B54F1886C50A001B7439 /* configsettings.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = configsettings.cxx; path = ../../../vcl/source/gdi/configsettings.cxx; sourceTree = SOURCE_ROOT; };
		BE35B5501886C50A001B7439 /* cvtgrf.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cvtgrf.cxx; path = ../../../vcl/source/gdi/cvtgrf.cxx; sourceTree = SOURCE_ROOT; };
		BE35B5521886C50A001B7439 /* dibtools.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dibtools.cxx; path = ../../../vcl/source/gdi/dibtools.cxx; sourceTree = SOURCE_ROOT; };
		BE35B5531886C50A001B7439 /* embeddedfontshelper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = embeddedfontshelper.cxx; path = ../../../vcl/source/gdi/embeddedfontshelper.cxx; sourceTree = SOURCE_ROOT; };
		BE35B5541886C50A001B7439 /* extoutdevdata.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = extoutdevdata.cxx; path = ../../../vcl/source/gdi/extoutdevdata.cxx; sourceTree = SOURCE_ROOT; };
		BE35B5561886C50A001B7439 /* gdimetafiletools.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gdimetafiletools.cxx; path = ../../../vcl/source/gdi/gdimetafiletools.cxx; sourceTree = SOURCE_ROOT; };
		BE35B5571886C50A001B7439 /* gdimtf.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gdimtf.cxx; path = ../../../vcl/source/gdi/gdimtf.cxx; sourceTree = SOURCE_ROOT; };
		BE35B5581886C50A001B7439 /* gfxlink.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gfxlink.cxx; path = ../../../vcl/source/gdi/gfxlink.cxx; sourceTree = SOURCE_ROOT; };
		BE35B5591886C50A001B7439 /* gradient.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gradient.cxx; path = ../../../vcl/source/gdi/gradient.cxx; sourceTree = SOURCE_ROOT; };
		BE35B55A1886C50A001B7439 /* graph.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = graph.cxx; path = ../../../vcl/source/gdi/graph.cxx; sourceTree = SOURCE_ROOT; };
		BE35B55B1886C50A001B7439 /* graphictools.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = graphictools.cxx; path = ../../../vcl/source/gdi/graphictools.cxx; sourceTree = SOURCE_ROOT; };
		BE35B55C1886C50A001B7439 /* hatch.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = hatch.cxx; path = ../../../vcl/source/gdi/hatch.cxx; sourceTree = SOURCE_ROOT; };
		BE35B55F1886C50A001B7439 /* impanmvw.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = impanmvw.cxx; path = ../../../vcl/source/gdi/impanmvw.cxx; sourceTree = SOURCE_ROOT; };
		BE35B5601886C50A001B7439 /* impbmp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = impbmp.cxx; path = ../../../vcl/source/gdi/impbmp.cxx; sourceTree = SOURCE_ROOT; };
		BE35B5621886C50A001B7439 /* impgraph.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = impgraph.cxx; path = ../../../vcl/source/gdi/impgraph.cxx; sourceTree = SOURCE_ROOT; };
		BE35B5651886C50A001B7439 /* impvect.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = impvect.cxx; path = ../../../vcl/source/gdi/impvect.cxx; sourceTree = SOURCE_ROOT; };
		BE35B5661886C50A001B7439 /* jobset.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = jobset.cxx; path = ../../../vcl/source/gdi/jobset.cxx; sourceTree = SOURCE_ROOT; };
		BE35B5671886C50A001B7439 /* lineinfo.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = lineinfo.cxx; path = ../../../vcl/source/gdi/lineinfo.cxx; sourceTree = SOURCE_ROOT; };
		BE35B5681886C50A001B7439 /* mapmod.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = mapmod.cxx; path = ../../../vcl/source/gdi/mapmod.cxx; sourceTree = SOURCE_ROOT; };
		BE35B5691886C50A001B7439 /* metaact.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = metaact.cxx; path = ../../../vcl/source/gdi/metaact.cxx; sourceTree = SOURCE_ROOT; };
		BE35B56B1886C50A001B7439 /* octree.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = octree.cxx; path = ../../../vcl/source/gdi/octree.cxx; sourceTree = SOURCE_ROOT; };
		BE35B56C1886C50A001B7439 /* oldprintadaptor.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = oldprintadaptor.cxx; path = ../../../vcl/source/gdi/oldprintadaptor.cxx; sourceTree = SOURCE_ROOT; };
		BE35B5751886C50A001B7439 /* pdfextoutdevdata.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pdfextoutdevdata.cxx; path = ../../../vcl/source/gdi/pdfextoutdevdata.cxx; sourceTree = SOURCE_ROOT; };
		BE35B5761886C50A001B7439 /* pdffontcache.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pdffontcache.cxx; path = ../../../vcl/source/gdi/pdffontcache.cxx; sourceTree = SOURCE_ROOT; };
		BE35B5771886C50A001B7439 /* pdfwriter_impl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pdfwriter_impl.cxx; path = ../../../vcl/source/gdi/pdfwriter_impl.cxx; sourceTree = SOURCE_ROOT; };
		BE35B5781886C50A001B7439 /* pdfwriter_impl2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pdfwriter_impl2.cxx; path = ../../../vcl/source/gdi/pdfwriter_impl2.cxx; sourceTree = SOURCE_ROOT; };
		BE35B5791886C50A001B7439 /* pdfwriter.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pdfwriter.cxx; path = ../../../vcl/source/gdi/pdfwriter.cxx; sourceTree = SOURCE_ROOT; };
		BE35B57A1886C50A001B7439 /* pngread.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pngread.cxx; path = ../../../vcl/source/gdi/pngread.cxx; sourceTree = SOURCE_ROOT; };
		BE35B57B1886C50A001B7439 /* pngwrite.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pngwrite.cxx; path = ../../../vcl/source/gdi/pngwrite.cxx; sourceTree = SOURCE_ROOT; };
		BE35B57C1886C50A001B7439 /* print.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = print.cxx; path = ../../../vcl/source/gdi/print.cxx; sourceTree = SOURCE_ROOT; };
		BE35B57D1886C50A001B7439 /* print2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = print2.cxx; path = ../../../vcl/source/gdi/print2.cxx; sourceTree = SOURCE_ROOT; };
		BE35B57E1886C50A001B7439 /* print3.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = print3.cxx; path = ../../../vcl/source/gdi/print3.cxx; sourceTree = SOURCE_ROOT; };
		BE35B57F1886C50A001B7439 /* regband.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = regband.cxx; path = ../../../vcl/source/gdi/regband.cxx; sourceTree = SOURCE_ROOT; };
		BE35B5801886C50A001B7439 /* region.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = region.cxx; path = ../../../vcl/source/gdi/region.cxx; sourceTree = SOURCE_ROOT; };
		BE35B5811886C50A001B7439 /* regionband.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = regionband.cxx; path = ../../../vcl/source/gdi/regionband.cxx; sourceTree = SOURCE_ROOT; };
		BE35B5821886C50A001B7439 /* salgdilayout.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = salgdilayout.cxx; path = ../../../vcl/source/gdi/salgdilayout.cxx; sourceTree = SOURCE_ROOT; };
		BE35B5831886C50A001B7439 /* sallayout.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sallayout.cxx; path = ../../../vcl/source/gdi/sallayout.cxx; sourceTree = SOURCE_ROOT; };
		BE35B5841886C50A001B7439 /* salmisc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = salmisc.cxx; path = ../../../vcl/source/gdi/salmisc.cxx; sourceTree = SOURCE_ROOT; };
		BE35B5851886C50A001B7439 /* salnativewidgets-none.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "salnativewidgets-none.cxx"; path = "../../../vcl/source/gdi/salnativewidgets-none.cxx"; sourceTree = SOURCE_ROOT; };
		BE35B5861886C50A001B7439 /* svgdata.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svgdata.cxx; path = ../../../vcl/source/gdi/svgdata.cxx; sourceTree = SOURCE_ROOT; };
		BE35B5871886C50A001B7439 /* textlayout.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textlayout.cxx; path = ../../../vcl/source/gdi/textlayout.cxx; sourceTree = SOURCE_ROOT; };
		BE35B5881886C50A001B7439 /* virdev.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = virdev.cxx; path = ../../../vcl/source/gdi/virdev.cxx; sourceTree = SOURCE_ROOT; };
		BE35B5891886C50A001B7439 /* wall.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = wall.cxx; path = ../../../vcl/source/gdi/wall.cxx; sourceTree = SOURCE_ROOT; };
		BE35B58B188FFA88001B7439 /* access_control.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = access_control.cxx; path = ../../../cppuhelper/source/access_control.cxx; sourceTree = SOURCE_ROOT; };
		BE35B58C188FFA88001B7439 /* bootstrap.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bootstrap.cxx; path = ../../../cppuhelper/source/bootstrap.cxx; sourceTree = SOURCE_ROOT; };
		BE35B58D188FFA88001B7439 /* compat.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = compat.cxx; path = ../../../cppuhelper/source/compat.cxx; sourceTree = SOURCE_ROOT; };
		BE35B58E188FFA88001B7439 /* component_context.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = component_context.cxx; path = ../../../cppuhelper/source/component_context.cxx; sourceTree = SOURCE_ROOT; };
		BE35B58F188FFA88001B7439 /* component.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = component.cxx; path = ../../../cppuhelper/source/component.cxx; sourceTree = SOURCE_ROOT; };
		BE35B590188FFA88001B7439 /* defaultbootstrap.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = defaultbootstrap.cxx; path = ../../../cppuhelper/source/defaultbootstrap.cxx; sourceTree = SOURCE_ROOT; };
		BE35B591188FFA88001B7439 /* exc_thrower.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = exc_thrower.cxx; path = ../../../cppuhelper/source/exc_thrower.cxx; sourceTree = SOURCE_ROOT; };
		BE35B592188FFA88001B7439 /* factory.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = factory.cxx; path = ../../../cppuhelper/source/factory.cxx; sourceTree = SOURCE_ROOT; };
		BE35B593188FFA88001B7439 /* findsofficepath.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = findsofficepath.c; path = ../../../cppuhelper/source/findsofficepath.c; sourceTree = SOURCE_ROOT; };
		BE35B594188FFA88001B7439 /* implbase_ex.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = implbase_ex.cxx; path = ../../../cppuhelper/source/implbase_ex.cxx; sourceTree = SOURCE_ROOT; };
		BE35B595188FFA88001B7439 /* implbase.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = implbase.cxx; path = ../../../cppuhelper/source/implbase.cxx; sourceTree = SOURCE_ROOT; };
		BE35B596188FFA88001B7439 /* implementationentry.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = implementationentry.cxx; path = ../../../cppuhelper/source/implementationentry.cxx; sourceTree = SOURCE_ROOT; };
		BE35B597188FFA88001B7439 /* interfacecontainer.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = interfacecontainer.cxx; path = ../../../cppuhelper/source/interfacecontainer.cxx; sourceTree = SOURCE_ROOT; };
		BE35B598188FFA88001B7439 /* macro_expander.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = macro_expander.cxx; path = ../../../cppuhelper/source/macro_expander.cxx; sourceTree = SOURCE_ROOT; };
		BE35B599188FFA88001B7439 /* paths.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = paths.cxx; path = ../../../cppuhelper/source/paths.cxx; sourceTree = SOURCE_ROOT; };
		BE35B59A188FFA88001B7439 /* propertysetmixin.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = propertysetmixin.cxx; path = ../../../cppuhelper/source/propertysetmixin.cxx; sourceTree = SOURCE_ROOT; };
		BE35B59B188FFA88001B7439 /* propshlp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = propshlp.cxx; path = ../../../cppuhelper/source/propshlp.cxx; sourceTree = SOURCE_ROOT; };
		BE35B59C188FFA88001B7439 /* servicemanager.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = servicemanager.cxx; path = ../../../cppuhelper/source/servicemanager.cxx; sourceTree = SOURCE_ROOT; };
		BE35B59D188FFA88001B7439 /* shlib.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = shlib.cxx; path = ../../../cppuhelper/source/shlib.cxx; sourceTree = SOURCE_ROOT; };
		BE35B59E188FFA88001B7439 /* supportsservice.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = supportsservice.cxx; path = ../../../cppuhelper/source/supportsservice.cxx; sourceTree = SOURCE_ROOT; };
		BE35B59F188FFA88001B7439 /* tdmgr.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tdmgr.cxx; path = ../../../cppuhelper/source/tdmgr.cxx; sourceTree = SOURCE_ROOT; };
		BE35B5A0188FFA88001B7439 /* typemanager.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = typemanager.cxx; path = ../../../cppuhelper/source/typemanager.cxx; sourceTree = SOURCE_ROOT; };
		BE35B5A1188FFA88001B7439 /* typeprovider.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = typeprovider.cxx; path = ../../../cppuhelper/source/typeprovider.cxx; sourceTree = SOURCE_ROOT; };
		BE35B5A2188FFA88001B7439 /* unourl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = unourl.cxx; path = ../../../cppuhelper/source/unourl.cxx; sourceTree = SOURCE_ROOT; };
		BE35B5A3188FFA88001B7439 /* weak.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = weak.cxx; path = ../../../cppuhelper/source/weak.cxx; sourceTree = SOURCE_ROOT; };
		BE35B5A71890520E001B7439 /* objface.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = objface.cxx; path = ../../../sfx2/source/control/objface.cxx; sourceTree = SOURCE_ROOT; };
		BE55B06F18D96FB000950228 /* displayinfo.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = displayinfo.cxx; path = ../../../svx/source/sdr/contact/displayinfo.cxx; sourceTree = SOURCE_ROOT; };
		BE55B07018D96FB000950228 /* objectcontact.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = objectcontact.cxx; path = ../../../svx/source/sdr/contact/objectcontact.cxx; sourceTree = SOURCE_ROOT; };
		BE55B07118D96FB000950228 /* objectcontactofobjlistpainter.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = objectcontactofobjlistpainter.cxx; path = ../../../svx/source/sdr/contact/objectcontactofobjlistpainter.cxx; sourceTree = SOURCE_ROOT; };
		BE55B07218D96FB000950228 /* objectcontactofpageview.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = objectcontactofpageview.cxx; path = ../../../svx/source/sdr/contact/objectcontactofpageview.cxx; sourceTree = SOURCE_ROOT; };
		BE55B07318D96FB000950228 /* sdrmediawindow.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sdrmediawindow.cxx; path = ../../../svx/source/sdr/contact/sdrmediawindow.cxx; sourceTree = SOURCE_ROOT; };
		BE55B07418D96FB000950228 /* viewcontact.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewcontact.cxx; path = ../../../svx/source/sdr/contact/viewcontact.cxx; sourceTree = SOURCE_ROOT; };
		BE55B07518D96FB000950228 /* viewcontactofe3d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewcontactofe3d.cxx; path = ../../../svx/source/sdr/contact/viewcontactofe3d.cxx; sourceTree = SOURCE_ROOT; };
		BE55B07618D96FB000950228 /* viewcontactofe3dcube.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewcontactofe3dcube.cxx; path = ../../../svx/source/sdr/contact/viewcontactofe3dcube.cxx; sourceTree = SOURCE_ROOT; };
		BE55B07718D96FB000950228 /* viewcontactofe3dextrude.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewcontactofe3dextrude.cxx; path = ../../../svx/source/sdr/contact/viewcontactofe3dextrude.cxx; sourceTree = SOURCE_ROOT; };
		BE55B07818D96FB000950228 /* viewcontactofe3dlathe.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewcontactofe3dlathe.cxx; path = ../../../svx/source/sdr/contact/viewcontactofe3dlathe.cxx; sourceTree = SOURCE_ROOT; };
		BE55B07918D96FB000950228 /* viewcontactofe3dpolygon.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewcontactofe3dpolygon.cxx; path = ../../../svx/source/sdr/contact/viewcontactofe3dpolygon.cxx; sourceTree = SOURCE_ROOT; };
		BE55B07A18D96FB000950228 /* viewcontactofe3dscene.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewcontactofe3dscene.cxx; path = ../../../svx/source/sdr/contact/viewcontactofe3dscene.cxx; sourceTree = SOURCE_ROOT; };
		BE55B07B18D96FB000950228 /* viewcontactofe3dsphere.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewcontactofe3dsphere.cxx; path = ../../../svx/source/sdr/contact/viewcontactofe3dsphere.cxx; sourceTree = SOURCE_ROOT; };
		BE55B07C18D96FB000950228 /* viewcontactofgraphic.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewcontactofgraphic.cxx; path = ../../../svx/source/sdr/contact/viewcontactofgraphic.cxx; sourceTree = SOURCE_ROOT; };
		BE55B07D18D96FB000950228 /* viewcontactofgroup.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewcontactofgroup.cxx; path = ../../../svx/source/sdr/contact/viewcontactofgroup.cxx; sourceTree = SOURCE_ROOT; };
		BE55B07E18D96FB000950228 /* viewcontactofmasterpagedescriptor.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewcontactofmasterpagedescriptor.cxx; path = ../../../svx/source/sdr/contact/viewcontactofmasterpagedescriptor.cxx; sourceTree = SOURCE_ROOT; };
		BE55B08018D96FB000950228 /* viewcontactofpageobj.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewcontactofpageobj.cxx; path = ../../../svx/source/sdr/contact/viewcontactofpageobj.cxx; sourceTree = SOURCE_ROOT; };
		BE55B08118D96FB000950228 /* viewcontactofsdrcaptionobj.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewcontactofsdrcaptionobj.cxx; path = ../../../svx/source/sdr/contact/viewcontactofsdrcaptionobj.cxx; sourceTree = SOURCE_ROOT; };
		BE55B08218D96FB000950228 /* viewcontactofsdrcircobj.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewcontactofsdrcircobj.cxx; path = ../../../svx/source/sdr/contact/viewcontactofsdrcircobj.cxx; sourceTree = SOURCE_ROOT; };
		BE55B08318D96FB000950228 /* viewcontactofsdredgeobj.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewcontactofsdredgeobj.cxx; path = ../../../svx/source/sdr/contact/viewcontactofsdredgeobj.cxx; sourceTree = SOURCE_ROOT; };
		BE55B08418D96FB000950228 /* viewcontactofsdrmeasureobj.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewcontactofsdrmeasureobj.cxx; path = ../../../svx/source/sdr/contact/viewcontactofsdrmeasureobj.cxx; sourceTree = SOURCE_ROOT; };
		BE55B08518D96FB000950228 /* viewcontactofsdrmediaobj.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewcontactofsdrmediaobj.cxx; path = ../../../svx/source/sdr/contact/viewcontactofsdrmediaobj.cxx; sourceTree = SOURCE_ROOT; };
		BE55B08618D96FB000950228 /* viewcontactofsdrobj.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewcontactofsdrobj.cxx; path = ../../../svx/source/sdr/contact/viewcontactofsdrobj.cxx; sourceTree = SOURCE_ROOT; };
		BE55B08718D96FB000950228 /* viewcontactofsdrobjcustomshape.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewcontactofsdrobjcustomshape.cxx; path = ../../../svx/source/sdr/contact/viewcontactofsdrobjcustomshape.cxx; sourceTree = SOURCE_ROOT; };
		BE55B08818D96FB000950228 /* viewcontactofsdrole2obj.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewcontactofsdrole2obj.cxx; path = ../../../svx/source/sdr/contact/viewcontactofsdrole2obj.cxx; sourceTree = SOURCE_ROOT; };
		BE55B08918D96FB000950228 /* viewcontactofsdrpage.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewcontactofsdrpage.cxx; path = ../../../svx/source/sdr/contact/viewcontactofsdrpage.cxx; sourceTree = SOURCE_ROOT; };
		BE55B08A18D96FB000950228 /* viewcontactofsdrpathobj.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewcontactofsdrpathobj.cxx; path = ../../../svx/source/sdr/contact/viewcontactofsdrpathobj.cxx; sourceTree = SOURCE_ROOT; };
		BE55B08B18D96FB000950228 /* viewcontactofsdrrectobj.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewcontactofsdrrectobj.cxx; path = ../../../svx/source/sdr/contact/viewcontactofsdrrectobj.cxx; sourceTree = SOURCE_ROOT; };
		BE55B08C18D96FB000950228 /* viewcontactoftextobj.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewcontactoftextobj.cxx; path = ../../../svx/source/sdr/contact/viewcontactoftextobj.cxx; sourceTree = SOURCE_ROOT; };
		BE55B08D18D96FB000950228 /* viewcontactofunocontrol.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewcontactofunocontrol.cxx; path = ../../../svx/source/sdr/contact/viewcontactofunocontrol.cxx; sourceTree = SOURCE_ROOT; };
		BE55B08E18D96FB000950228 /* viewcontactofvirtobj.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewcontactofvirtobj.cxx; path = ../../../svx/source/sdr/contact/viewcontactofvirtobj.cxx; sourceTree = SOURCE_ROOT; };
		BE55B08F18D96FB000950228 /* viewobjectcontact.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewobjectcontact.cxx; path = ../../../svx/source/sdr/contact/viewobjectcontact.cxx; sourceTree = SOURCE_ROOT; };
		BE55B09018D96FB000950228 /* viewobjectcontactofe3d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewobjectcontactofe3d.cxx; path = ../../../svx/source/sdr/contact/viewobjectcontactofe3d.cxx; sourceTree = SOURCE_ROOT; };
		BE55B09118D96FB000950228 /* viewobjectcontactofe3dscene.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewobjectcontactofe3dscene.cxx; path = ../../../svx/source/sdr/contact/viewobjectcontactofe3dscene.cxx; sourceTree = SOURCE_ROOT; };
		BE55B09218D96FB000950228 /* viewobjectcontactofgraphic.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewobjectcontactofgraphic.cxx; path = ../../../svx/source/sdr/contact/viewobjectcontactofgraphic.cxx; sourceTree = SOURCE_ROOT; };
		BE55B09318D96FB000950228 /* viewobjectcontactofgroup.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewobjectcontactofgroup.cxx; path = ../../../svx/source/sdr/contact/viewobjectcontactofgroup.cxx; sourceTree = SOURCE_ROOT; };
		BE55B09418D96FB000950228 /* viewobjectcontactofmasterpagedescriptor.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewobjectcontactofmasterpagedescriptor.cxx; path = ../../../svx/source/sdr/contact/viewobjectcontactofmasterpagedescriptor.cxx; sourceTree = SOURCE_ROOT; };
		BE55B09518D96FB000950228 /* viewobjectcontactofpageobj.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewobjectcontactofpageobj.cxx; path = ../../../svx/source/sdr/contact/viewobjectcontactofpageobj.cxx; sourceTree = SOURCE_ROOT; };
		BE55B09618D96FB000950228 /* viewobjectcontactofsdrmediaobj.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewobjectcontactofsdrmediaobj.cxx; path = ../../../svx/source/sdr/contact/viewobjectcontactofsdrmediaobj.cxx; sourceTree = SOURCE_ROOT; };
		BE55B09718D96FB000950228 /* viewobjectcontactofsdrobj.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewobjectcontactofsdrobj.cxx; path = ../../../svx/source/sdr/contact/viewobjectcontactofsdrobj.cxx; sourceTree = SOURCE_ROOT; };
		BE55B09818D96FB000950228 /* viewobjectcontactofsdrole2obj.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewobjectcontactofsdrole2obj.cxx; path = ../../../svx/source/sdr/contact/viewobjectcontactofsdrole2obj.cxx; sourceTree = SOURCE_ROOT; };
		BE55B09918D96FB000950228 /* viewobjectcontactofsdrpage.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewobjectcontactofsdrpage.cxx; path = ../../../svx/source/sdr/contact/viewobjectcontactofsdrpage.cxx; sourceTree = SOURCE_ROOT; };
		BE55B09A18D96FB000950228 /* viewobjectcontactofunocontrol.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewobjectcontactofunocontrol.cxx; path = ../../../svx/source/sdr/contact/viewobjectcontactofunocontrol.cxx; sourceTree = SOURCE_ROOT; };
		BE55B09B18D96FB000950228 /* viewobjectcontactredirector.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewobjectcontactredirector.cxx; path = ../../../svx/source/sdr/contact/viewobjectcontactredirector.cxx; sourceTree = SOURCE_ROOT; };
		BE55B09D18D97E2700950228 /* anchoreddrawobject.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = anchoreddrawobject.cxx; path = ../../../sw/source/core/layout/anchoreddrawobject.cxx; sourceTree = SOURCE_ROOT; };
		BE55B09E18D97E2700950228 /* anchoredobject.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = anchoredobject.cxx; path = ../../../sw/source/core/layout/anchoredobject.cxx; sourceTree = SOURCE_ROOT; };
		BE55B09F18D97E2700950228 /* atrfrm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = atrfrm.cxx; path = ../../../sw/source/core/layout/atrfrm.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0A018D97E2700950228 /* calcmove.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = calcmove.cxx; path = ../../../sw/source/core/layout/calcmove.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0A118D97E2700950228 /* colfrm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = colfrm.cxx; path = ../../../sw/source/core/layout/colfrm.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0A218D97E2700950228 /* dbg_lay.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dbg_lay.cxx; path = ../../../sw/source/core/layout/dbg_lay.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0A318D97E2700950228 /* dumpfilter.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dumpfilter.cxx; path = ../../../sw/source/core/layout/dumpfilter.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0A418D97E2700950228 /* findfrm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = findfrm.cxx; path = ../../../sw/source/core/layout/findfrm.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0A518D97E2700950228 /* flowfrm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = flowfrm.cxx; path = ../../../sw/source/core/layout/flowfrm.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0A618D97E2700950228 /* fly.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fly.cxx; path = ../../../sw/source/core/layout/fly.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0A718D97E2700950228 /* flycnt.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = flycnt.cxx; path = ../../../sw/source/core/layout/flycnt.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0A818D97E2700950228 /* flyincnt.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = flyincnt.cxx; path = ../../../sw/source/core/layout/flyincnt.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0A918D97E2700950228 /* flylay.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = flylay.cxx; path = ../../../sw/source/core/layout/flylay.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0AA18D97E2700950228 /* flypos.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = flypos.cxx; path = ../../../sw/source/core/layout/flypos.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0AB18D97E2700950228 /* frmtool.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = frmtool.cxx; path = ../../../sw/source/core/layout/frmtool.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0AC18D97E2700950228 /* ftnfrm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ftnfrm.cxx; path = ../../../sw/source/core/layout/ftnfrm.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0AD18D97E2700950228 /* hffrm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = hffrm.cxx; path = ../../../sw/source/core/layout/hffrm.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0AE18D97E2700950228 /* layact.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = layact.cxx; path = ../../../sw/source/core/layout/layact.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0AF18D97E2700950228 /* laycache.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = laycache.cxx; path = ../../../sw/source/core/layout/laycache.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0B018D97E2700950228 /* layouter.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = layouter.cxx; path = ../../../sw/source/core/layout/layouter.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0B118D97E2700950228 /* movedfwdfrmsbyobjpos.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = movedfwdfrmsbyobjpos.cxx; path = ../../../sw/source/core/layout/movedfwdfrmsbyobjpos.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0B218D97E2700950228 /* newfrm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = newfrm.cxx; path = ../../../sw/source/core/layout/newfrm.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0B318D97E2700950228 /* objectformatter.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = objectformatter.cxx; path = ../../../sw/source/core/layout/objectformatter.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0B418D97E2700950228 /* objectformatterlayfrm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = objectformatterlayfrm.cxx; path = ../../../sw/source/core/layout/objectformatterlayfrm.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0B518D97E2700950228 /* objectformattertxtfrm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = objectformattertxtfrm.cxx; path = ../../../sw/source/core/layout/objectformattertxtfrm.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0B618D97E2700950228 /* objstmpconsiderwrapinfl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = objstmpconsiderwrapinfl.cxx; path = ../../../sw/source/core/layout/objstmpconsiderwrapinfl.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0B718D97E2700950228 /* pagechg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pagechg.cxx; path = ../../../sw/source/core/layout/pagechg.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0B818D97E2700950228 /* pagedesc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pagedesc.cxx; path = ../../../sw/source/core/layout/pagedesc.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0B918D97E2700950228 /* paintfrm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = paintfrm.cxx; path = ../../../sw/source/core/layout/paintfrm.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0BA18D97E2700950228 /* sectfrm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sectfrm.cxx; path = ../../../sw/source/core/layout/sectfrm.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0BB18D97E2700950228 /* softpagebreak.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = softpagebreak.cxx; path = ../../../sw/source/core/layout/softpagebreak.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0BC18D97E2700950228 /* sortedobjs.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sortedobjs.cxx; path = ../../../sw/source/core/layout/sortedobjs.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0BD18D97E2700950228 /* ssfrm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ssfrm.cxx; path = ../../../sw/source/core/layout/ssfrm.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0BE18D97E2700950228 /* swselectionlist.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = swselectionlist.cxx; path = ../../../sw/source/core/layout/swselectionlist.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0BF18D97E2700950228 /* tabfrm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tabfrm.cxx; path = ../../../sw/source/core/layout/tabfrm.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0C018D97E2700950228 /* trvlfrm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = trvlfrm.cxx; path = ../../../sw/source/core/layout/trvlfrm.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0C118D97E2700950228 /* unusedf.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = unusedf.cxx; path = ../../../sw/source/core/layout/unusedf.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0C218D97E2700950228 /* virtoutp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = virtoutp.cxx; path = ../../../sw/source/core/layout/virtoutp.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0C318D97E2700950228 /* wsfrm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = wsfrm.cxx; path = ../../../sw/source/core/layout/wsfrm.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0C518D9AB0A00950228 /* bindings.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bindings.cxx; path = ../../../sfx2/source/control/bindings.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0C618D9AB0A00950228 /* ctrlitem.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ctrlitem.cxx; path = ../../../sfx2/source/control/ctrlitem.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0C718D9AB0A00950228 /* dispatch.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dispatch.cxx; path = ../../../sfx2/source/control/dispatch.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0C818D9AB0A00950228 /* minfitem.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = minfitem.cxx; path = ../../../sfx2/source/control/minfitem.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0C918D9AB0A00950228 /* msg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = msg.cxx; path = ../../../sfx2/source/control/msg.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0CA18D9AB0A00950228 /* msgpool.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = msgpool.cxx; path = ../../../sfx2/source/control/msgpool.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0CC18D9AB0A00950228 /* recentdocsview.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = recentdocsview.cxx; path = ../../../sfx2/source/control/recentdocsview.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0CD18D9AB0A00950228 /* recentdocsviewitem.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = recentdocsviewitem.cxx; path = ../../../sfx2/source/control/recentdocsviewitem.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0CE18D9AB0A00950228 /* request.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = request.cxx; path = ../../../sfx2/source/control/request.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0CF18D9AB0A00950228 /* sfxstatuslistener.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sfxstatuslistener.cxx; path = ../../../sfx2/source/control/sfxstatuslistener.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0D018D9AB0A00950228 /* shell.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = shell.cxx; path = ../../../sfx2/source/control/shell.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0D118D9AB0A00950228 /* sorgitm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sorgitm.cxx; path = ../../../sfx2/source/control/sorgitm.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0D218D9AB0A00950228 /* statcach.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = statcach.cxx; path = ../../../sfx2/source/control/statcach.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0D418D9AB0A00950228 /* templatecontaineritem.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = templatecontaineritem.cxx; path = ../../../sfx2/source/control/templatecontaineritem.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0D518D9AB0A00950228 /* templatelocalview.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = templatelocalview.cxx; path = ../../../sfx2/source/control/templatelocalview.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0D718D9AB0A00950228 /* templatesearchview.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = templatesearchview.cxx; path = ../../../sfx2/source/control/templatesearchview.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0D818D9AB0A00950228 /* templateviewitem.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = templateviewitem.cxx; path = ../../../sfx2/source/control/templateviewitem.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0D918D9AB0A00950228 /* thumbnailview.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = thumbnailview.cxx; path = ../../../sfx2/source/control/thumbnailview.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0DA18D9AB0A00950228 /* thumbnailviewacc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = thumbnailviewacc.cxx; path = ../../../sfx2/source/control/thumbnailviewacc.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0DB18D9AB0A00950228 /* thumbnailviewitem.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = thumbnailviewitem.cxx; path = ../../../sfx2/source/control/thumbnailviewitem.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0DC18D9AB0A00950228 /* unoctitm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = unoctitm.cxx; path = ../../../sfx2/source/control/unoctitm.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0DE18D9AB5400950228 /* app.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = app.cxx; path = ../../../sfx2/source/appl/app.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0DF18D9AB5400950228 /* appbas.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appbas.cxx; path = ../../../sfx2/source/appl/appbas.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0E018D9AB5400950228 /* appbaslib.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appbaslib.cxx; path = ../../../sfx2/source/appl/appbaslib.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0E118D9AB5400950228 /* appcfg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appcfg.cxx; path = ../../../sfx2/source/appl/appcfg.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0E218D9AB5400950228 /* appchild.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appchild.cxx; path = ../../../sfx2/source/appl/appchild.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0E318D9AB5400950228 /* appdata.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appdata.cxx; path = ../../../sfx2/source/appl/appdata.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0E418D9AB5400950228 /* appdde.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appdde.cxx; path = ../../../sfx2/source/appl/appdde.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0E518D9AB5400950228 /* appdispatchprovider.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appdispatchprovider.cxx; path = ../../../sfx2/source/appl/appdispatchprovider.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0E618D9AB5400950228 /* appinit.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appinit.cxx; path = ../../../sfx2/source/appl/appinit.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0E718D9AB5400950228 /* appmain.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appmain.cxx; path = ../../../sfx2/source/appl/appmain.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0E818D9AB5400950228 /* appmisc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appmisc.cxx; path = ../../../sfx2/source/appl/appmisc.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0E918D9AB5400950228 /* appopen.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appopen.cxx; path = ../../../sfx2/source/appl/appopen.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0EA18D9AB5400950228 /* appquit.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appquit.cxx; path = ../../../sfx2/source/appl/appquit.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0EB18D9AB5400950228 /* appreg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appreg.cxx; path = ../../../sfx2/source/appl/appreg.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0EC18D9AB5400950228 /* appserv.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appserv.cxx; path = ../../../sfx2/source/appl/appserv.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0ED18D9AB5400950228 /* appuno.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appuno.cxx; path = ../../../sfx2/source/appl/appuno.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0EE18D9AB5400950228 /* childwin.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = childwin.cxx; path = ../../../sfx2/source/appl/childwin.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0EF18D9AB5400950228 /* fileobj.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fileobj.cxx; path = ../../../sfx2/source/appl/fileobj.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0F018D9AB5400950228 /* fwkhelper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fwkhelper.cxx; path = ../../../sfx2/source/appl/fwkhelper.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0F118D9AB5400950228 /* helpdispatch.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = helpdispatch.cxx; path = ../../../sfx2/source/appl/helpdispatch.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0F218D9AB5400950228 /* helpinterceptor.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = helpinterceptor.cxx; path = ../../../sfx2/source/appl/helpinterceptor.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0F318D9AB5400950228 /* imagemgr.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = imagemgr.cxx; path = ../../../sfx2/source/appl/imagemgr.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0F418D9AB5400950228 /* imestatuswindow.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = imestatuswindow.cxx; path = ../../../sfx2/source/appl/imestatuswindow.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0F518D9AB5400950228 /* impldde.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = impldde.cxx; path = ../../../sfx2/source/appl/impldde.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0F618D9AB5400950228 /* linkmgr2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = linkmgr2.cxx; path = ../../../sfx2/source/appl/linkmgr2.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0F718D9AB5400950228 /* linksrc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = linksrc.cxx; path = ../../../sfx2/source/appl/linksrc.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0F818D9AB5400950228 /* lnkbase2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = lnkbase2.cxx; path = ../../../sfx2/source/appl/lnkbase2.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0F918D9AB5400950228 /* macroloader.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = macroloader.cxx; path = ../../../sfx2/source/appl/macroloader.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0FA18D9AB5400950228 /* module.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = module.cxx; path = ../../../sfx2/source/appl/module.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0FB18D9AB5400950228 /* newhelp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = newhelp.cxx; path = ../../../sfx2/source/appl/newhelp.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0FC18D9AB5400950228 /* opengrf.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = opengrf.cxx; path = ../../../sfx2/source/appl/opengrf.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0FD18D9AB5400950228 /* openuriexternally.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = openuriexternally.cxx; path = ../../../sfx2/source/appl/openuriexternally.cxx; sourceTree = SOURCE_ROOT; };
		BE55B0FF18D9AB5400950228 /* sfxhelp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sfxhelp.cxx; path = ../../../sfx2/source/appl/sfxhelp.cxx; sourceTree = SOURCE_ROOT; };
		BE55B10018D9AB5400950228 /* sfxpicklist.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sfxpicklist.cxx; path = ../../../sfx2/source/appl/sfxpicklist.cxx; sourceTree = SOURCE_ROOT; };
		BE55B10118D9AB5400950228 /* shutdownicon.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = shutdownicon.cxx; path = ../../../sfx2/source/appl/shutdownicon.cxx; sourceTree = SOURCE_ROOT; };
		BE55B10218D9AB5400950228 /* shutdowniconaqua.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = shutdowniconaqua.mm; path = ../../../sfx2/source/appl/shutdowniconaqua.mm; sourceTree = SOURCE_ROOT; };
		BE55B10318D9AB5400950228 /* workwin.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = workwin.cxx; path = ../../../sfx2/source/appl/workwin.cxx; sourceTree = SOURCE_ROOT; };
		BE55B10418D9AB5400950228 /* xpackcreator.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xpackcreator.cxx; path = ../../../sfx2/source/appl/xpackcreator.cxx; sourceTree = SOURCE_ROOT; };
		BE55B10618DAD89800950228 /* compat.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = compat.cxx; path = ../../../cppu/source/cppu/compat.cxx; sourceTree = SOURCE_ROOT; };
		BE55B10718DAD89800950228 /* cppu_opt.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cppu_opt.cxx; path = ../../../cppu/source/cppu/cppu_opt.cxx; sourceTree = SOURCE_ROOT; };
		BE55B10A18DB67A900950228 /* chart */ = {isa = PBXFileReference; lastKnownFileType = folder; name = chart; path = ../../../oox/source/drawingml/chart; sourceTree = SOURCE_ROOT; };
		BE55B10B18DB67A900950228 /* clrscheme.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = clrscheme.cxx; path = ../../../oox/source/drawingml/clrscheme.cxx; sourceTree = SOURCE_ROOT; };
		BE55B10C18DB67A900950228 /* clrschemecontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = clrschemecontext.cxx; path = ../../../oox/source/drawingml/clrschemecontext.cxx; sourceTree = SOURCE_ROOT; };
		BE55B10D18DB67A900950228 /* color.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = color.cxx; path = ../../../oox/source/drawingml/color.cxx; sourceTree = SOURCE_ROOT; };
		BE55B10E18DB67A900950228 /* colorchoicecontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = colorchoicecontext.cxx; path = ../../../oox/source/drawingml/colorchoicecontext.cxx; sourceTree = SOURCE_ROOT; };
		BE55B10F18DB67A900950228 /* connectorshapecontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = connectorshapecontext.cxx; path = ../../../oox/source/drawingml/connectorshapecontext.cxx; sourceTree = SOURCE_ROOT; };
		BE55B11018DB67A900950228 /* customshapegeometry.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = customshapegeometry.cxx; path = ../../../oox/source/drawingml/customshapegeometry.cxx; sourceTree = SOURCE_ROOT; };
		BE55B11718DB67A900950228 /* customshapeproperties.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = customshapeproperties.cxx; path = ../../../oox/source/drawingml/customshapeproperties.cxx; sourceTree = SOURCE_ROOT; };
		BE55B11918DB67A900950228 /* diagram */ = {isa = PBXFileReference; lastKnownFileType = folder; name = diagram; path = ../../../oox/source/drawingml/diagram; sourceTree = SOURCE_ROOT; };
		BE55B11A18DB67A900950228 /* drawingmltypes.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = drawingmltypes.cxx; path = ../../../oox/source/drawingml/drawingmltypes.cxx; sourceTree = SOURCE_ROOT; };
		BE55B11B18DB67A900950228 /* effectproperties.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = effectproperties.cxx; path = ../../../oox/source/drawingml/effectproperties.cxx; sourceTree = SOURCE_ROOT; };
		BE55B11C18DB67A900950228 /* effectpropertiescontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = effectpropertiescontext.cxx; path = ../../../oox/source/drawingml/effectpropertiescontext.cxx; sourceTree = SOURCE_ROOT; };
		BE55B11D18DB67A900950228 /* embeddedwavaudiofile.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = embeddedwavaudiofile.cxx; path = ../../../oox/source/drawingml/embeddedwavaudiofile.cxx; sourceTree = SOURCE_ROOT; };
		BE55B11E18DB67A900950228 /* fillproperties.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fillproperties.cxx; path = ../../../oox/source/drawingml/fillproperties.cxx; sourceTree = SOURCE_ROOT; };
		BE55B11F18DB67A900950228 /* fillpropertiesgroupcontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fillpropertiesgroupcontext.cxx; path = ../../../oox/source/drawingml/fillpropertiesgroupcontext.cxx; sourceTree = SOURCE_ROOT; };
		BE55B12018DB67A900950228 /* graphicshapecontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = graphicshapecontext.cxx; path = ../../../oox/source/drawingml/graphicshapecontext.cxx; sourceTree = SOURCE_ROOT; };
		BE55B12118DB67A900950228 /* guidcontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = guidcontext.cxx; path = ../../../oox/source/drawingml/guidcontext.cxx; sourceTree = SOURCE_ROOT; };
		BE55B12218DB67A900950228 /* hyperlinkcontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = hyperlinkcontext.cxx; path = ../../../oox/source/drawingml/hyperlinkcontext.cxx; sourceTree = SOURCE_ROOT; };
		BE55B12318DB67A900950228 /* lineproperties.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = lineproperties.cxx; path = ../../../oox/source/drawingml/lineproperties.cxx; sourceTree = SOURCE_ROOT; };
		BE55B12418DB67A900950228 /* linepropertiescontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = linepropertiescontext.cxx; path = ../../../oox/source/drawingml/linepropertiescontext.cxx; sourceTree = SOURCE_ROOT; };
		BE55B12518DB67A900950228 /* objectdefaultcontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = objectdefaultcontext.cxx; path = ../../../oox/source/drawingml/objectdefaultcontext.cxx; sourceTree = SOURCE_ROOT; };
		BE55B12618DB67A900950228 /* scene3dcontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = scene3dcontext.cxx; path = ../../../oox/source/drawingml/scene3dcontext.cxx; sourceTree = SOURCE_ROOT; };
		BE55B12718DB67A900950228 /* shape.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = shape.cxx; path = ../../../oox/source/drawingml/shape.cxx; sourceTree = SOURCE_ROOT; };
		BE55B12818DB67A900950228 /* shape3dproperties.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = shape3dproperties.cxx; path = ../../../oox/source/drawingml/shape3dproperties.cxx; sourceTree = SOURCE_ROOT; };
		BE55B12918DB67A900950228 /* shapecontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = shapecontext.cxx; path = ../../../oox/source/drawingml/shapecontext.cxx; sourceTree = SOURCE_ROOT; };
		BE55B12A18DB67A900950228 /* shapegroupcontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = shapegroupcontext.cxx; path = ../../../oox/source/drawingml/shapegroupcontext.cxx; sourceTree = SOURCE_ROOT; };
		BE55B12B18DB67A900950228 /* shapepropertiescontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = shapepropertiescontext.cxx; path = ../../../oox/source/drawingml/shapepropertiescontext.cxx; sourceTree = SOURCE_ROOT; };
		BE55B12C18DB67A900950228 /* shapepropertymap.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = shapepropertymap.cxx; path = ../../../oox/source/drawingml/shapepropertymap.cxx; sourceTree = SOURCE_ROOT; };
		BE55B12D18DB67A900950228 /* shapestylecontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = shapestylecontext.cxx; path = ../../../oox/source/drawingml/shapestylecontext.cxx; sourceTree = SOURCE_ROOT; };
		BE55B12E18DB67A900950228 /* spdefcontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = spdefcontext.cxx; path = ../../../oox/source/drawingml/spdefcontext.cxx; sourceTree = SOURCE_ROOT; };
		BE55B12F18DB67A900950228 /* table */ = {isa = PBXFileReference; lastKnownFileType = folder; name = table; path = ../../../oox/source/drawingml/table; sourceTree = SOURCE_ROOT; };
		BE55B13018DB67A900950228 /* textbody.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textbody.cxx; path = ../../../oox/source/drawingml/textbody.cxx; sourceTree = SOURCE_ROOT; };
		BE55B13118DB67A900950228 /* textbodycontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textbodycontext.cxx; path = ../../../oox/source/drawingml/textbodycontext.cxx; sourceTree = SOURCE_ROOT; };
		BE55B13218DB67A900950228 /* textbodyproperties.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textbodyproperties.cxx; path = ../../../oox/source/drawingml/textbodyproperties.cxx; sourceTree = SOURCE_ROOT; };
		BE55B13318DB67A900950228 /* textbodypropertiescontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textbodypropertiescontext.cxx; path = ../../../oox/source/drawingml/textbodypropertiescontext.cxx; sourceTree = SOURCE_ROOT; };
		BE55B13418DB67A900950228 /* textcharacterproperties.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textcharacterproperties.cxx; path = ../../../oox/source/drawingml/textcharacterproperties.cxx; sourceTree = SOURCE_ROOT; };
		BE55B13518DB67A900950228 /* textcharacterpropertiescontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textcharacterpropertiescontext.cxx; path = ../../../oox/source/drawingml/textcharacterpropertiescontext.cxx; sourceTree = SOURCE_ROOT; };
		BE55B13618DB67A900950228 /* texteffectscontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = texteffectscontext.cxx; path = ../../../oox/source/drawingml/texteffectscontext.cxx; sourceTree = SOURCE_ROOT; };
		BE55B13718DB67A900950228 /* textfield.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textfield.cxx; path = ../../../oox/source/drawingml/textfield.cxx; sourceTree = SOURCE_ROOT; };
		BE55B13818DB67A900950228 /* textfieldcontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textfieldcontext.cxx; path = ../../../oox/source/drawingml/textfieldcontext.cxx; sourceTree = SOURCE_ROOT; };
		BE55B13918DB67A900950228 /* textfont.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textfont.cxx; path = ../../../oox/source/drawingml/textfont.cxx; sourceTree = SOURCE_ROOT; };
		BE55B13A18DB67A900950228 /* textliststyle.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textliststyle.cxx; path = ../../../oox/source/drawingml/textliststyle.cxx; sourceTree = SOURCE_ROOT; };
		BE55B13B18DB67A900950228 /* textliststylecontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textliststylecontext.cxx; path = ../../../oox/source/drawingml/textliststylecontext.cxx; sourceTree = SOURCE_ROOT; };
		BE55B13C18DB67A900950228 /* textparagraph.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textparagraph.cxx; path = ../../../oox/source/drawingml/textparagraph.cxx; sourceTree = SOURCE_ROOT; };
		BE55B13D18DB67A900950228 /* textparagraphproperties.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textparagraphproperties.cxx; path = ../../../oox/source/drawingml/textparagraphproperties.cxx; sourceTree = SOURCE_ROOT; };
		BE55B13E18DB67A900950228 /* textparagraphpropertiescontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textparagraphpropertiescontext.cxx; path = ../../../oox/source/drawingml/textparagraphpropertiescontext.cxx; sourceTree = SOURCE_ROOT; };
		BE55B13F18DB67A900950228 /* textrun.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textrun.cxx; path = ../../../oox/source/drawingml/textrun.cxx; sourceTree = SOURCE_ROOT; };
		BE55B14018DB67A900950228 /* textspacingcontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textspacingcontext.cxx; path = ../../../oox/source/drawingml/textspacingcontext.cxx; sourceTree = SOURCE_ROOT; };
		BE55B14118DB67A900950228 /* textspacingcontext.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = textspacingcontext.hxx; path = ../../../oox/source/drawingml/textspacingcontext.hxx; sourceTree = SOURCE_ROOT; };
		BE55B14218DB67A900950228 /* texttabstoplistcontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = texttabstoplistcontext.cxx; path = ../../../oox/source/drawingml/texttabstoplistcontext.cxx; sourceTree = SOURCE_ROOT; };
		BE55B14318DB67A900950228 /* texttabstoplistcontext.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = texttabstoplistcontext.hxx; path = ../../../oox/source/drawingml/texttabstoplistcontext.hxx; sourceTree = SOURCE_ROOT; };
		BE55B14418DB67A900950228 /* theme.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = theme.cxx; path = ../../../oox/source/drawingml/theme.cxx; sourceTree = SOURCE_ROOT; };
		BE55B14518DB67A900950228 /* themeelementscontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = themeelementscontext.cxx; path = ../../../oox/source/drawingml/themeelementscontext.cxx; sourceTree = SOURCE_ROOT; };
		BE55B14618DB67A900950228 /* themefragmenthandler.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = themefragmenthandler.cxx; path = ../../../oox/source/drawingml/themefragmenthandler.cxx; sourceTree = SOURCE_ROOT; };
		BE55B14718DB67A900950228 /* transform2dcontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = transform2dcontext.cxx; path = ../../../oox/source/drawingml/transform2dcontext.cxx; sourceTree = SOURCE_ROOT; };
		BE55B14918DB6DE700950228 /* EnhancedCustomShape2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = EnhancedCustomShape2d.cxx; path = ../../../svx/source/customshapes/EnhancedCustomShape2d.cxx; sourceTree = SOURCE_ROOT; };
		BE55B14A18DB6DE700950228 /* EnhancedCustomShape3d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = EnhancedCustomShape3d.cxx; path = ../../../svx/source/customshapes/EnhancedCustomShape3d.cxx; sourceTree = SOURCE_ROOT; };
		BE55B14B18DB6DE700950228 /* EnhancedCustomShapeEngine.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = EnhancedCustomShapeEngine.cxx; path = ../../../svx/source/customshapes/EnhancedCustomShapeEngine.cxx; sourceTree = SOURCE_ROOT; };
		BE55B14C18DB6DE700950228 /* EnhancedCustomShapeFontWork.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = EnhancedCustomShapeFontWork.cxx; path = ../../../svx/source/customshapes/EnhancedCustomShapeFontWork.cxx; sourceTree = SOURCE_ROOT; };
		BE55B14D18DB6DE700950228 /* EnhancedCustomShapeFunctionParser.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = EnhancedCustomShapeFunctionParser.cxx; path = ../../../svx/source/customshapes/EnhancedCustomShapeFunctionParser.cxx; sourceTree = SOURCE_ROOT; };
		BE55B14E18DB6DE700950228 /* EnhancedCustomShapeGeometry.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = EnhancedCustomShapeGeometry.cxx; path = ../../../svx/source/customshapes/EnhancedCustomShapeGeometry.cxx; sourceTree = SOURCE_ROOT; };
		BE55B14F18DB6DE700950228 /* EnhancedCustomShapeHandle.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = EnhancedCustomShapeHandle.cxx; path = ../../../svx/source/customshapes/EnhancedCustomShapeHandle.cxx; sourceTree = SOURCE_ROOT; };
		BE55B15018DB6DE700950228 /* EnhancedCustomShapeTypeNames.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = EnhancedCustomShapeTypeNames.cxx; path = ../../../svx/source/customshapes/EnhancedCustomShapeTypeNames.cxx; sourceTree = SOURCE_ROOT; };
		BE6DC8ED19D9A6E500AFB393 /* app.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = app.cxx; path = ../../../desktop/source/app/app.cxx; sourceTree = SOURCE_ROOT; };
		BE6DC8EE19D9A6E500AFB393 /* appinit.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appinit.cxx; path = ../../../desktop/source/app/appinit.cxx; sourceTree = SOURCE_ROOT; };
		BE6DC8EF19D9A6E500AFB393 /* check_ext_deps.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = check_ext_deps.cxx; path = ../../../desktop/source/app/check_ext_deps.cxx; sourceTree = SOURCE_ROOT; };
		BE6DC8F019D9A6E500AFB393 /* cmdlineargs.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cmdlineargs.cxx; path = ../../../desktop/source/app/cmdlineargs.cxx; sourceTree = SOURCE_ROOT; };
		BE6DC8F119D9A6E500AFB393 /* cmdlinehelp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cmdlinehelp.cxx; path = ../../../desktop/source/app/cmdlinehelp.cxx; sourceTree = SOURCE_ROOT; };
		BE6DC8F319D9A6E500AFB393 /* desktopcontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = desktopcontext.cxx; path = ../../../desktop/source/app/desktopcontext.cxx; sourceTree = SOURCE_ROOT; };
		BE6DC8F419D9A6E500AFB393 /* desktopcontext.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = desktopcontext.hxx; path = ../../../desktop/source/app/desktopcontext.hxx; sourceTree = SOURCE_ROOT; };
		BE6DC8F519D9A6E500AFB393 /* desktopresid.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = desktopresid.cxx; path = ../../../desktop/source/app/desktopresid.cxx; sourceTree = SOURCE_ROOT; };
		BE6DC8F619D9A6E500AFB393 /* dispatchwatcher.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dispatchwatcher.cxx; path = ../../../desktop/source/app/dispatchwatcher.cxx; sourceTree = SOURCE_ROOT; };
		BE6DC8F719D9A6E500AFB393 /* langselect.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = langselect.cxx; path = ../../../desktop/source/app/langselect.cxx; sourceTree = SOURCE_ROOT; };
		BE6DC8F819D9A6E500AFB393 /* lockfile2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = lockfile2.cxx; path = ../../../desktop/source/app/lockfile2.cxx; sourceTree = SOURCE_ROOT; };
		BE6DC8F919D9A6E500AFB393 /* main.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = main.c; path = ../../../desktop/source/app/main.c; sourceTree = SOURCE_ROOT; };
		BE6DC8FA19D9A6E500AFB393 /* officeipcthread.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = officeipcthread.cxx; path = ../../../desktop/source/app/officeipcthread.cxx; sourceTree = SOURCE_ROOT; };
		BE6DC8FB19D9A6E500AFB393 /* sofficemain.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sofficemain.cxx; path = ../../../desktop/source/app/sofficemain.cxx; sourceTree = SOURCE_ROOT; };
		BE6DC8FC19D9A6E500AFB393 /* userinstall.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = userinstall.cxx; path = ../../../desktop/source/app/userinstall.cxx; sourceTree = SOURCE_ROOT; };
		BE6DC8FD19D9AF6100AFB393 /* IconThemeInfo.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = IconThemeInfo.cxx; path = ../../../vcl/source/app/IconThemeInfo.cxx; sourceTree = SOURCE_ROOT; };
		BE6DC8FE19D9AF6100AFB393 /* IconThemeScanner.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = IconThemeScanner.cxx; path = ../../../vcl/source/app/IconThemeScanner.cxx; sourceTree = SOURCE_ROOT; };
		BE6DC8FF19D9AF6100AFB393 /* IconThemeSelector.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = IconThemeSelector.cxx; path = ../../../vcl/source/app/IconThemeSelector.cxx; sourceTree = SOURCE_ROOT; };
		BE6DC90119D9B55E00AFB393 /* alloc_arena.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = alloc_arena.cxx; path = ../../../sal/rtl/alloc_arena.cxx; sourceTree = SOURCE_ROOT; };
		BE6DC90219D9B55E00AFB393 /* alloc_cache.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = alloc_cache.cxx; path = ../../../sal/rtl/alloc_cache.cxx; sourceTree = SOURCE_ROOT; };
		BE6DC90319D9B55E00AFB393 /* alloc_fini.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = alloc_fini.cxx; path = ../../../sal/rtl/alloc_fini.cxx; sourceTree = SOURCE_ROOT; };
		BE6DC90419D9B55E00AFB393 /* alloc_global.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = alloc_global.cxx; path = ../../../sal/rtl/alloc_global.cxx; sourceTree = SOURCE_ROOT; };
		BE6DC90519D9B55E00AFB393 /* bootstrap.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bootstrap.cxx; path = ../../../sal/rtl/bootstrap.cxx; sourceTree = SOURCE_ROOT; };
		BE6DC90619D9B55E00AFB393 /* byteseq.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = byteseq.cxx; path = ../../../sal/rtl/byteseq.cxx; sourceTree = SOURCE_ROOT; };
		BE6DC90719D9B55E00AFB393 /* cipher.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cipher.cxx; path = ../../../sal/rtl/cipher.cxx; sourceTree = SOURCE_ROOT; };
		BE6DC90819D9B55E00AFB393 /* cmdargs.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cmdargs.cxx; path = ../../../sal/rtl/cmdargs.cxx; sourceTree = SOURCE_ROOT; };
		BE6DC90919D9B55E00AFB393 /* crc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = crc.cxx; path = ../../../sal/rtl/crc.cxx; sourceTree = SOURCE_ROOT; };
		BE6DC90A19D9B55E00AFB393 /* digest.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = digest.cxx; path = ../../../sal/rtl/digest.cxx; sourceTree = SOURCE_ROOT; };
		BE6DC90B19D9B55E00AFB393 /* hash.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = hash.cxx; path = ../../../sal/rtl/hash.cxx; sourceTree = SOURCE_ROOT; };
		BE6DC90C19D9B55E00AFB393 /* locale.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = locale.cxx; path = ../../../sal/rtl/locale.cxx; sourceTree = SOURCE_ROOT; };
		BE6DC90E19D9B55E00AFB393 /* math.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = math.cxx; path = ../../../sal/rtl/math.cxx; sourceTree = SOURCE_ROOT; };
		BE6DC90F19D9B55E00AFB393 /* random.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = random.cxx; path = ../../../sal/rtl/random.cxx; sourceTree = SOURCE_ROOT; };
		BE6DC91019D9B55E00AFB393 /* rtl_process.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = rtl_process.cxx; path = ../../../sal/rtl/rtl_process.cxx; sourceTree = SOURCE_ROOT; };
		BE6DC91119D9B55E00AFB393 /* strbuf.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = strbuf.cxx; path = ../../../sal/rtl/strbuf.cxx; sourceTree = SOURCE_ROOT; };
		BE6DC91219D9B55E00AFB393 /* strimp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = strimp.cxx; path = ../../../sal/rtl/strimp.cxx; sourceTree = SOURCE_ROOT; };
		BE6DC91319D9B55E00AFB393 /* string.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = string.cxx; path = ../../../sal/rtl/string.cxx; sourceTree = SOURCE_ROOT; };
		BE6DC91419D9B55E00AFB393 /* strtmpl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = strtmpl.cxx; path = ../../../sal/rtl/strtmpl.cxx; sourceTree = SOURCE_ROOT; };
		BE6DC91519D9B55E00AFB393 /* unload.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = unload.cxx; path = ../../../sal/rtl/unload.cxx; sourceTree = SOURCE_ROOT; };
		BE6DC91619D9B55E00AFB393 /* uri.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = uri.cxx; path = ../../../sal/rtl/uri.cxx; sourceTree = SOURCE_ROOT; };
		BE6DC91719D9B55E00AFB393 /* ustrbuf.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ustrbuf.cxx; path = ../../../sal/rtl/ustrbuf.cxx; sourceTree = SOURCE_ROOT; };
		BE6DC91819D9B55E00AFB393 /* ustring.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ustring.cxx; path = ../../../sal/rtl/ustring.cxx; sourceTree = SOURCE_ROOT; };
		BE6DC91919D9B55E00AFB393 /* uuid.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = uuid.cxx; path = ../../../sal/rtl/uuid.cxx; sourceTree = SOURCE_ROOT; };
		BE6DC91B19D9B59400AFB393 /* compat.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = compat.cxx; path = ../../../sal/osl/all/compat.cxx; sourceTree = SOURCE_ROOT; };
		BE6DC91C19D9B59400AFB393 /* debugbase.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = debugbase.cxx; path = ../../../sal/osl/all/debugbase.cxx; sourceTree = SOURCE_ROOT; };
		BE6DC91E19D9B59400AFB393 /* loadmodulerelative.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = loadmodulerelative.cxx; path = ../../../sal/osl/all/loadmodulerelative.cxx; sourceTree = SOURCE_ROOT; };
		BE6DC91F19D9B59400AFB393 /* log.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = log.cxx; path = ../../../sal/osl/all/log.cxx; sourceTree = SOURCE_ROOT; };
		BE6DC92019D9B59400AFB393 /* utility.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = utility.cxx; path = ../../../sal/osl/all/utility.cxx; sourceTree = SOURCE_ROOT; };
		BE6DC92219D9B5DD00AFB393 /* backtrace.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = backtrace.c; path = ../../../sal/osl/unx/backtrace.c; sourceTree = SOURCE_ROOT; };
		BE6DC92319D9B5DD00AFB393 /* conditn.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = conditn.cxx; path = ../../../sal/osl/unx/conditn.cxx; sourceTree = SOURCE_ROOT; };
		BE6DC92419D9B5DD00AFB393 /* file_error_transl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = file_error_transl.cxx; path = ../../../sal/osl/unx/file_error_transl.cxx; sourceTree = SOURCE_ROOT; };
		BE6DC92519D9B5DD00AFB393 /* file_misc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = file_misc.cxx; path = ../../../sal/osl/unx/file_misc.cxx; sourceTree = SOURCE_ROOT; };
		BE6DC92619D9B5DD00AFB393 /* file_path_helper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = file_path_helper.cxx; path = ../../../sal/osl/unx/file_path_helper.cxx; sourceTree = SOURCE_ROOT; };
		BE6DC92719D9B5DD00AFB393 /* file_stat.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = file_stat.cxx; path = ../../../sal/osl/unx/file_stat.cxx; sourceTree = SOURCE_ROOT; };
		BE6DC92819D9B5DD00AFB393 /* file_url.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = file_url.cxx; path = ../../../sal/osl/unx/file_url.cxx; sourceTree = SOURCE_ROOT; };
		BE6DC92919D9B5DD00AFB393 /* file_volume.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = file_volume.cxx; path = ../../../sal/osl/unx/file_volume.cxx; sourceTree = SOURCE_ROOT; };
		BE6DC92A19D9B5DD00AFB393 /* file.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = file.cxx; path = ../../../sal/osl/unx/file.cxx; sourceTree = SOURCE_ROOT; };
		BE6DC92D19D9B5DD00AFB393 /* module.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = module.cxx; path = ../../../sal/osl/unx/module.cxx; sourceTree = SOURCE_ROOT; };
		BE6DC93019D9B5DD00AFB393 /* osxlocale.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = osxlocale.cxx; path = ../../../sal/osl/unx/osxlocale.cxx; sourceTree = SOURCE_ROOT; };
		BE6DC93119D9B5DD00AFB393 /* pipe.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pipe.cxx; path = ../../../sal/osl/unx/pipe.cxx; sourceTree = SOURCE_ROOT; };
		BE6DC93219D9B5DD00AFB393 /* process_impl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = process_impl.cxx; path = ../../../sal/osl/unx/process_impl.cxx; sourceTree = SOURCE_ROOT; };
		BE6DC93319D9B5DD00AFB393 /* process.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = process.cxx; path = ../../../sal/osl/unx/process.cxx; sourceTree = SOURCE_ROOT; };
		BE6DC93419D9B5DD00AFB393 /* profile.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = profile.cxx; path = ../../../sal/osl/unx/profile.cxx; sourceTree = SOURCE_ROOT; };
		BE6DC93619D9B5DD00AFB393 /* salinit.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = salinit.cxx; path = ../../../sal/osl/unx/salinit.cxx; sourceTree = SOURCE_ROOT; };
		BE6DC93719D9B5DD00AFB393 /* security.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = security.cxx; path = ../../../sal/osl/unx/security.cxx; sourceTree = SOURCE_ROOT; };
		BE6DC93B19D9B5DD00AFB393 /* tempfile.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tempfile.cxx; path = ../../../sal/osl/unx/tempfile.cxx; sourceTree = SOURCE_ROOT; };
		BE6DC93E19D9B5DD00AFB393 /* uunxapi.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = uunxapi.cxx; path = ../../../sal/osl/unx/uunxapi.cxx; sourceTree = SOURCE_ROOT; };
		BE6DC93F19D9B5DD00AFB393 /* uunxapi.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = uunxapi.mm; path = ../../../sal/osl/unx/uunxapi.mm; sourceTree = SOURCE_ROOT; };
		BE6F3D67192E286B00D6FCC0 /* bitmap.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bitmap.cxx; path = ../../../vcl/source/outdev/bitmap.cxx; sourceTree = SOURCE_ROOT; };
		BE6F3D68192E286B00D6FCC0 /* clipping.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = clipping.cxx; path = ../../../vcl/source/outdev/clipping.cxx; sourceTree = SOURCE_ROOT; };
		BE6F3D69192E286B00D6FCC0 /* curvedshapes.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = curvedshapes.cxx; path = ../../../vcl/source/outdev/curvedshapes.cxx; sourceTree = SOURCE_ROOT; };
		BE6F3D6A192E286B00D6FCC0 /* font.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = font.cxx; path = ../../../vcl/source/outdev/font.cxx; sourceTree = SOURCE_ROOT; };
		BE6F3D6B192E286B00D6FCC0 /* gradient.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gradient.cxx; path = ../../../vcl/source/outdev/gradient.cxx; sourceTree = SOURCE_ROOT; };
		BE6F3D6C192E286B00D6FCC0 /* hatch.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = hatch.cxx; path = ../../../vcl/source/outdev/hatch.cxx; sourceTree = SOURCE_ROOT; };
		BE6F3D6D192E286B00D6FCC0 /* line.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = line.cxx; path = ../../../vcl/source/outdev/line.cxx; sourceTree = SOURCE_ROOT; };
		BE6F3D6E192E286B00D6FCC0 /* map.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = map.cxx; path = ../../../vcl/source/outdev/map.cxx; sourceTree = SOURCE_ROOT; };
		BE6F3D6F192E286B00D6FCC0 /* mask.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = mask.cxx; path = ../../../vcl/source/outdev/mask.cxx; sourceTree = SOURCE_ROOT; };
		BE6F3D70192E286B00D6FCC0 /* nativecontrols.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = nativecontrols.cxx; path = ../../../vcl/source/outdev/nativecontrols.cxx; sourceTree = SOURCE_ROOT; };
		BE6F3D71192E286B00D6FCC0 /* outdev.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = outdev.cxx; path = ../../../vcl/source/outdev/outdev.cxx; sourceTree = SOURCE_ROOT; };
		BE6F3D72192E286B00D6FCC0 /* outdevstate.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = outdevstate.cxx; path = ../../../vcl/source/outdev/outdevstate.cxx; sourceTree = SOURCE_ROOT; };
		BE6F3D73192E286B00D6FCC0 /* pixel.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pixel.cxx; path = ../../../vcl/source/outdev/pixel.cxx; sourceTree = SOURCE_ROOT; };
		BE6F3D74192E286B00D6FCC0 /* polygon.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = polygon.cxx; path = ../../../vcl/source/outdev/polygon.cxx; sourceTree = SOURCE_ROOT; };
		BE6F3D75192E286B00D6FCC0 /* polyline.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = polyline.cxx; path = ../../../vcl/source/outdev/polyline.cxx; sourceTree = SOURCE_ROOT; };
		BE6F3D76192E286B00D6FCC0 /* rect.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = rect.cxx; path = ../../../vcl/source/outdev/rect.cxx; sourceTree = SOURCE_ROOT; };
		BE6F3D77192E286B00D6FCC0 /* text.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = text.cxx; path = ../../../vcl/source/outdev/text.cxx; sourceTree = SOURCE_ROOT; };
		BE6F3D78192E286B00D6FCC0 /* textline.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textline.cxx; path = ../../../vcl/source/outdev/textline.cxx; sourceTree = SOURCE_ROOT; };
		BE6F3D79192E286B00D6FCC0 /* transparent.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = transparent.cxx; path = ../../../vcl/source/outdev/transparent.cxx; sourceTree = SOURCE_ROOT; };
		BE6F3D7A192E286B00D6FCC0 /* wallpaper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = wallpaper.cxx; path = ../../../vcl/source/outdev/wallpaper.cxx; sourceTree = SOURCE_ROOT; };
		BE6F3D7C192E28B300D6FCC0 /* FilterConfigCache.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = FilterConfigCache.cxx; path = ../../../vcl/source/filter/FilterConfigCache.cxx; sourceTree = SOURCE_ROOT; };
		BE6F3D7D192E28B300D6FCC0 /* FilterConfigItem.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = FilterConfigItem.cxx; path = ../../../vcl/source/filter/FilterConfigItem.cxx; sourceTree = SOURCE_ROOT; };
		BE6F3D7E192E28B300D6FCC0 /* graphicfilter.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = graphicfilter.cxx; path = ../../../vcl/source/filter/graphicfilter.cxx; sourceTree = SOURCE_ROOT; };
		BE6F3D7F192E28B300D6FCC0 /* graphicfilter2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = graphicfilter2.cxx; path = ../../../vcl/source/filter/graphicfilter2.cxx; sourceTree = SOURCE_ROOT; };
		BE6F3D80192E28B300D6FCC0 /* GraphicNativeMetadata.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = GraphicNativeMetadata.cxx; path = ../../../vcl/source/filter/GraphicNativeMetadata.cxx; sourceTree = SOURCE_ROOT; };
		BE6F3D81192E28B300D6FCC0 /* GraphicNativeTransform.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = GraphicNativeTransform.cxx; path = ../../../vcl/source/filter/GraphicNativeTransform.cxx; sourceTree = SOURCE_ROOT; };
		BE6F3D82192E28B300D6FCC0 /* sgfbram.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sgfbram.cxx; path = ../../../vcl/source/filter/sgfbram.cxx; sourceTree = SOURCE_ROOT; };
		BE6F3D83192E28B300D6FCC0 /* sgvmain.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sgvmain.cxx; path = ../../../vcl/source/filter/sgvmain.cxx; sourceTree = SOURCE_ROOT; };
		BE6F3D84192E28B300D6FCC0 /* sgvspln.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sgvspln.cxx; path = ../../../vcl/source/filter/sgvspln.cxx; sourceTree = SOURCE_ROOT; };
		BE6F3D85192E28B300D6FCC0 /* sgvtext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sgvtext.cxx; path = ../../../vcl/source/filter/sgvtext.cxx; sourceTree = SOURCE_ROOT; };
		BE6F3D87192E28E400D6FCC0 /* emfwr.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = emfwr.cxx; path = ../../../vcl/source/filter/wmf/emfwr.cxx; sourceTree = SOURCE_ROOT; };
		BE6F3D88192E28E400D6FCC0 /* enhwmf.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = enhwmf.cxx; path = ../../../vcl/source/filter/wmf/enhwmf.cxx; sourceTree = SOURCE_ROOT; };
		BE6F3D89192E28E400D6FCC0 /* winmtf.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = winmtf.cxx; path = ../../../vcl/source/filter/wmf/winmtf.cxx; sourceTree = SOURCE_ROOT; };
		BE6F3D8A192E28E400D6FCC0 /* winwmf.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = winwmf.cxx; path = ../../../vcl/source/filter/wmf/winwmf.cxx; sourceTree = SOURCE_ROOT; };
		BE6F3D8B192E28E400D6FCC0 /* wmf.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = wmf.cxx; path = ../../../vcl/source/filter/wmf/wmf.cxx; sourceTree = SOURCE_ROOT; };
		BE6F3D8C192E28E400D6FCC0 /* wmfwr.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = wmfwr.cxx; path = ../../../vcl/source/filter/wmf/wmfwr.cxx; sourceTree = SOURCE_ROOT; };
		BE7C277218D1DDF600C4908C /* acmplwrd.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = acmplwrd.cxx; path = ../../../sw/source/core/doc/acmplwrd.cxx; sourceTree = SOURCE_ROOT; };
		BE7C277318D1DDF600C4908C /* dbgoutsw.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dbgoutsw.cxx; path = ../../../sw/source/core/doc/dbgoutsw.cxx; sourceTree = SOURCE_ROOT; };
		BE7C277418D1DDF600C4908C /* doc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = doc.cxx; path = ../../../sw/source/core/doc/doc.cxx; sourceTree = SOURCE_ROOT; };
		BE7C277518D1DDF600C4908C /* docbasic.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docbasic.cxx; path = ../../../sw/source/core/doc/docbasic.cxx; sourceTree = SOURCE_ROOT; };
		BE7C277618D1DDF600C4908C /* docbm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docbm.cxx; path = ../../../sw/source/core/doc/docbm.cxx; sourceTree = SOURCE_ROOT; };
		BE7C277718D1DDF600C4908C /* docchart.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docchart.cxx; path = ../../../sw/source/core/doc/docchart.cxx; sourceTree = SOURCE_ROOT; };
		BE7C277818D1DDF600C4908C /* doccomp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = doccomp.cxx; path = ../../../sw/source/core/doc/doccomp.cxx; sourceTree = SOURCE_ROOT; };
		BE7C277918D1DDF600C4908C /* doccorr.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = doccorr.cxx; path = ../../../sw/source/core/doc/doccorr.cxx; sourceTree = SOURCE_ROOT; };
		BE7C277B18D1DDF600C4908C /* docdesc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docdesc.cxx; path = ../../../sw/source/core/doc/docdesc.cxx; sourceTree = SOURCE_ROOT; };
		BE7C277C18D1DDF600C4908C /* docdraw.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docdraw.cxx; path = ../../../sw/source/core/doc/docdraw.cxx; sourceTree = SOURCE_ROOT; };
		BE7C277D18D1DDF600C4908C /* docedt.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docedt.cxx; path = ../../../sw/source/core/doc/docedt.cxx; sourceTree = SOURCE_ROOT; };
		BE7C277E18D1DDF600C4908C /* docfld.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docfld.cxx; path = ../../../sw/source/core/doc/docfld.cxx; sourceTree = SOURCE_ROOT; };
		BE7C277F18D1DDF600C4908C /* docfly.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docfly.cxx; path = ../../../sw/source/core/doc/docfly.cxx; sourceTree = SOURCE_ROOT; };
		BE7C278018D1DDF600C4908C /* docfmt.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docfmt.cxx; path = ../../../sw/source/core/doc/docfmt.cxx; sourceTree = SOURCE_ROOT; };
		BE7C278118D1DDF600C4908C /* docftn.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docftn.cxx; path = ../../../sw/source/core/doc/docftn.cxx; sourceTree = SOURCE_ROOT; };
		BE7C278218D1DDF600C4908C /* docglbl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docglbl.cxx; path = ../../../sw/source/core/doc/docglbl.cxx; sourceTree = SOURCE_ROOT; };
		BE7C278318D1DDF600C4908C /* docglos.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docglos.cxx; path = ../../../sw/source/core/doc/docglos.cxx; sourceTree = SOURCE_ROOT; };
		BE7C278418D1DDF600C4908C /* doclay.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = doclay.cxx; path = ../../../sw/source/core/doc/doclay.cxx; sourceTree = SOURCE_ROOT; };
		BE7C278518D1DDF600C4908C /* docnew.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docnew.cxx; path = ../../../sw/source/core/doc/docnew.cxx; sourceTree = SOURCE_ROOT; };
		BE7C278618D1DDF600C4908C /* docnum.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docnum.cxx; path = ../../../sw/source/core/doc/docnum.cxx; sourceTree = SOURCE_ROOT; };
		BE7C278718D1DDF600C4908C /* docredln.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docredln.cxx; path = ../../../sw/source/core/doc/docredln.cxx; sourceTree = SOURCE_ROOT; };
		BE7C278818D1DDF600C4908C /* docruby.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docruby.cxx; path = ../../../sw/source/core/doc/docruby.cxx; sourceTree = SOURCE_ROOT; };
		BE7C278918D1DDF600C4908C /* docsort.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docsort.cxx; path = ../../../sw/source/core/doc/docsort.cxx; sourceTree = SOURCE_ROOT; };
		BE7C278A18D1DDF600C4908C /* docstat.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docstat.cxx; path = ../../../sw/source/core/doc/docstat.cxx; sourceTree = SOURCE_ROOT; };
		BE7C278B18D1DDF600C4908C /* doctxm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = doctxm.cxx; path = ../../../sw/source/core/doc/doctxm.cxx; sourceTree = SOURCE_ROOT; };
		BE7C278C18D1DDF600C4908C /* docxforms.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docxforms.cxx; path = ../../../sw/source/core/doc/docxforms.cxx; sourceTree = SOURCE_ROOT; };
		BE7C278D18D1DDF600C4908C /* extinput.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = extinput.cxx; path = ../../../sw/source/core/doc/extinput.cxx; sourceTree = SOURCE_ROOT; };
		BE7C278E18D1DDF600C4908C /* fmtcol.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fmtcol.cxx; path = ../../../sw/source/core/doc/fmtcol.cxx; sourceTree = SOURCE_ROOT; };
		BE7C278F18D1DDF600C4908C /* ftnidx.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ftnidx.cxx; path = ../../../sw/source/core/doc/ftnidx.cxx; sourceTree = SOURCE_ROOT; };
		BE7C279018D1DDF600C4908C /* gctable.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gctable.cxx; path = ../../../sw/source/core/doc/gctable.cxx; sourceTree = SOURCE_ROOT; };
		BE7C279118D1DDF600C4908C /* htmltbl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = htmltbl.cxx; path = ../../../sw/source/core/doc/htmltbl.cxx; sourceTree = SOURCE_ROOT; };
		BE7C279218D1DDF600C4908C /* lineinfo.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = lineinfo.cxx; path = ../../../sw/source/core/doc/lineinfo.cxx; sourceTree = SOURCE_ROOT; };
		BE7C279318D1DDF600C4908C /* list.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = list.cxx; path = ../../../sw/source/core/doc/list.cxx; sourceTree = SOURCE_ROOT; };
		BE7C279418D1DDF600C4908C /* notxtfrm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = notxtfrm.cxx; path = ../../../sw/source/core/doc/notxtfrm.cxx; sourceTree = SOURCE_ROOT; };
		BE7C279518D1DDF600C4908C /* number.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = number.cxx; path = ../../../sw/source/core/doc/number.cxx; sourceTree = SOURCE_ROOT; };
		BE7C279618D1DDF600C4908C /* poolfmt.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = poolfmt.cxx; path = ../../../sw/source/core/doc/poolfmt.cxx; sourceTree = SOURCE_ROOT; };
		BE7C279718D1DDF600C4908C /* sortopt.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sortopt.cxx; path = ../../../sw/source/core/doc/sortopt.cxx; sourceTree = SOURCE_ROOT; };
		BE7C279818D1DDF600C4908C /* swserv.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = swserv.cxx; path = ../../../sw/source/core/doc/swserv.cxx; sourceTree = SOURCE_ROOT; };
		BE7C279918D1DDF600C4908C /* swstylemanager.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = swstylemanager.cxx; path = ../../../sw/source/core/doc/swstylemanager.cxx; sourceTree = SOURCE_ROOT; };
		BE7C279A18D1DDF600C4908C /* SwStyleNameMapper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = SwStyleNameMapper.cxx; path = ../../../sw/source/core/doc/SwStyleNameMapper.cxx; sourceTree = SOURCE_ROOT; };
		BE7C279B18D1DDF600C4908C /* tblafmt.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tblafmt.cxx; path = ../../../sw/source/core/doc/tblafmt.cxx; sourceTree = SOURCE_ROOT; };
		BE7C279C18D1DDF600C4908C /* tblcpy.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tblcpy.cxx; path = ../../../sw/source/core/doc/tblcpy.cxx; sourceTree = SOURCE_ROOT; };
		BE7C279D18D1DDF600C4908C /* tblrwcl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tblrwcl.cxx; path = ../../../sw/source/core/doc/tblrwcl.cxx; sourceTree = SOURCE_ROOT; };
		BE7C279E18D1DDF600C4908C /* visiturl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = visiturl.cxx; path = ../../../sw/source/core/doc/visiturl.cxx; sourceTree = SOURCE_ROOT; };
		BE82BD7218218E2E00A447B5 /* Prototype.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Prototype.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 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; name = Info.plist; path = Prototype/Info.plist; sourceTree = SOURCE_ROOT; };
		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; name = main.m; path = Prototype/main.m; sourceTree = SOURCE_ROOT; };
		BE82BD8318218E2E00A447B5 /* Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = Prefix.pch; path = Prototype/Prefix.pch; sourceTree = SOURCE_ROOT; };
		BE82BD8418218E2E00A447B5 /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = Prototype/AppDelegate.h; sourceTree = SOURCE_ROOT; };
		BE82BD8518218E2E00A447B5 /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = Prototype/AppDelegate.m; sourceTree = SOURCE_ROOT; };
		BE82BD8A18218E2E00A447B5 /* ViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = ViewController.h; path = Prototype/ViewController.h; sourceTree = SOURCE_ROOT; };
		BE82BD8B18218E2E00A447B5 /* ViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = ViewController.m; path = Prototype/ViewController.m; sourceTree = SOURCE_ROOT; };
		BE82BD8D18218E2E00A447B5 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Assets.xcassets; path = Prototype/Assets.xcassets; sourceTree = SOURCE_ROOT; };
		BE82C42918CA18610050EB79 /* ActionDescriptionProvider.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ActionDescriptionProvider.cxx; path = ../../../svx/source/svdraw/ActionDescriptionProvider.cxx; sourceTree = SOURCE_ROOT; };
		BE82C42A18CA18610050EB79 /* charthelper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = charthelper.cxx; path = ../../../svx/source/svdraw/charthelper.cxx; sourceTree = SOURCE_ROOT; };
		BE82C42B18CA18610050EB79 /* clonelist.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = clonelist.cxx; path = ../../../svx/source/svdraw/clonelist.cxx; sourceTree = SOURCE_ROOT; };
		BE82C42C18CA18610050EB79 /* gradtrns.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gradtrns.cxx; path = ../../../svx/source/svdraw/gradtrns.cxx; sourceTree = SOURCE_ROOT; };
		BE82C42D18CA18610050EB79 /* gradtrns.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = gradtrns.hxx; path = ../../../svx/source/svdraw/gradtrns.hxx; sourceTree = SOURCE_ROOT; };
		BE82C42E18CA18610050EB79 /* polypolygoneditor.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = polypolygoneditor.cxx; path = ../../../svx/source/svdraw/polypolygoneditor.cxx; sourceTree = SOURCE_ROOT; };
		BE82C42F18CA18610050EB79 /* sdrhittesthelper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sdrhittesthelper.cxx; path = ../../../svx/source/svdraw/sdrhittesthelper.cxx; sourceTree = SOURCE_ROOT; };
		BE82C43018CA18610050EB79 /* sdrmasterpagedescriptor.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sdrmasterpagedescriptor.cxx; path = ../../../svx/source/svdraw/sdrmasterpagedescriptor.cxx; sourceTree = SOURCE_ROOT; };
		BE82C43118CA18610050EB79 /* sdrpagewindow.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sdrpagewindow.cxx; path = ../../../svx/source/svdraw/sdrpagewindow.cxx; sourceTree = SOURCE_ROOT; };
		BE82C43218CA18610050EB79 /* sdrpaintwindow.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sdrpaintwindow.cxx; path = ../../../svx/source/svdraw/sdrpaintwindow.cxx; sourceTree = SOURCE_ROOT; };
		BE82C43318CA18610050EB79 /* sdrundomanager.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sdrundomanager.cxx; path = ../../../svx/source/svdraw/sdrundomanager.cxx; sourceTree = SOURCE_ROOT; };
		BE82C43418CA18610050EB79 /* selectioncontroller.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = selectioncontroller.cxx; path = ../../../svx/source/svdraw/selectioncontroller.cxx; sourceTree = SOURCE_ROOT; };
		BE82C43518CA18610050EB79 /* svdattr.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdattr.cxx; path = ../../../svx/source/svdraw/svdattr.cxx; sourceTree = SOURCE_ROOT; };
		BE82C43618CA18610050EB79 /* svdcrtv.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdcrtv.cxx; path = ../../../svx/source/svdraw/svdcrtv.cxx; sourceTree = SOURCE_ROOT; };
		BE82C43718CA18610050EB79 /* svddrag.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svddrag.cxx; path = ../../../svx/source/svdraw/svddrag.cxx; sourceTree = SOURCE_ROOT; };
		BE82C43818CA18610050EB79 /* svddrgmt.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svddrgmt.cxx; path = ../../../svx/source/svdraw/svddrgmt.cxx; sourceTree = SOURCE_ROOT; };
		BE82C43918CA18610050EB79 /* svddrgv.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svddrgv.cxx; path = ../../../svx/source/svdraw/svddrgv.cxx; sourceTree = SOURCE_ROOT; };
		BE82C43A18CA18610050EB79 /* svdedtv.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdedtv.cxx; path = ../../../svx/source/svdraw/svdedtv.cxx; sourceTree = SOURCE_ROOT; };
		BE82C43B18CA18610050EB79 /* svdedtv1.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdedtv1.cxx; path = ../../../svx/source/svdraw/svdedtv1.cxx; sourceTree = SOURCE_ROOT; };
		BE82C43C18CA18610050EB79 /* svdedtv2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdedtv2.cxx; path = ../../../svx/source/svdraw/svdedtv2.cxx; sourceTree = SOURCE_ROOT; };
		BE82C43D18CA18610050EB79 /* svdedxv.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdedxv.cxx; path = ../../../svx/source/svdraw/svdedxv.cxx; sourceTree = SOURCE_ROOT; };
		BE82C43E18CA18610050EB79 /* svdetc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdetc.cxx; path = ../../../svx/source/svdraw/svdetc.cxx; sourceTree = SOURCE_ROOT; };
		BE82C43F18CA18610050EB79 /* svdfmtf.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdfmtf.cxx; path = ../../../svx/source/svdraw/svdfmtf.cxx; sourceTree = SOURCE_ROOT; };
		BE82C44018CA18610050EB79 /* svdglev.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdglev.cxx; path = ../../../svx/source/svdraw/svdglev.cxx; sourceTree = SOURCE_ROOT; };
		BE82C44118CA18610050EB79 /* svdglue.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdglue.cxx; path = ../../../svx/source/svdraw/svdglue.cxx; sourceTree = SOURCE_ROOT; };
		BE82C44218CA18610050EB79 /* svdhdl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdhdl.cxx; path = ../../../svx/source/svdraw/svdhdl.cxx; sourceTree = SOURCE_ROOT; };
		BE82C44318CA18610050EB79 /* svdhlpln.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdhlpln.cxx; path = ../../../svx/source/svdraw/svdhlpln.cxx; sourceTree = SOURCE_ROOT; };
		BE82C44418CA18610050EB79 /* svdibrow.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdibrow.cxx; path = ../../../svx/source/svdraw/svdibrow.cxx; sourceTree = SOURCE_ROOT; };
		BE82C44518CA18610050EB79 /* svditer.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svditer.cxx; path = ../../../svx/source/svdraw/svditer.cxx; sourceTree = SOURCE_ROOT; };
		BE82C44618CA18610050EB79 /* svdlayer.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdlayer.cxx; path = ../../../svx/source/svdraw/svdlayer.cxx; sourceTree = SOURCE_ROOT; };
		BE82C44718CA18610050EB79 /* svdmark.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdmark.cxx; path = ../../../svx/source/svdraw/svdmark.cxx; sourceTree = SOURCE_ROOT; };
		BE82C44818CA18610050EB79 /* svdmodel.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdmodel.cxx; path = ../../../svx/source/svdraw/svdmodel.cxx; sourceTree = SOURCE_ROOT; };
		BE82C44918CA18610050EB79 /* svdmrkv.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdmrkv.cxx; path = ../../../svx/source/svdraw/svdmrkv.cxx; sourceTree = SOURCE_ROOT; };
		BE82C44A18CA18610050EB79 /* svdmrkv1.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdmrkv1.cxx; path = ../../../svx/source/svdraw/svdmrkv1.cxx; sourceTree = SOURCE_ROOT; };
		BE82C44B18CA18610050EB79 /* svdoashp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdoashp.cxx; path = ../../../svx/source/svdraw/svdoashp.cxx; sourceTree = SOURCE_ROOT; };
		BE82C44C18CA18610050EB79 /* svdoattr.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdoattr.cxx; path = ../../../svx/source/svdraw/svdoattr.cxx; sourceTree = SOURCE_ROOT; };
		BE82C44D18CA18610050EB79 /* svdobj.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdobj.cxx; path = ../../../svx/source/svdraw/svdobj.cxx; sourceTree = SOURCE_ROOT; };
		BE82C44E18CA18610050EB79 /* svdocapt.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdocapt.cxx; path = ../../../svx/source/svdraw/svdocapt.cxx; sourceTree = SOURCE_ROOT; };
		BE82C44F18CA18610050EB79 /* svdocirc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdocirc.cxx; path = ../../../svx/source/svdraw/svdocirc.cxx; sourceTree = SOURCE_ROOT; };
		BE82C45018CA18610050EB79 /* svdoedge.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdoedge.cxx; path = ../../../svx/source/svdraw/svdoedge.cxx; sourceTree = SOURCE_ROOT; };
		BE82C45118CA18610050EB79 /* svdograf.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdograf.cxx; path = ../../../svx/source/svdraw/svdograf.cxx; sourceTree = SOURCE_ROOT; };
		BE82C45218CA18610050EB79 /* svdogrp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdogrp.cxx; path = ../../../svx/source/svdraw/svdogrp.cxx; sourceTree = SOURCE_ROOT; };
		BE82C45318CA18610050EB79 /* svdomeas.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdomeas.cxx; path = ../../../svx/source/svdraw/svdomeas.cxx; sourceTree = SOURCE_ROOT; };
		BE82C45418CA18610050EB79 /* svdomedia.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdomedia.cxx; path = ../../../svx/source/svdraw/svdomedia.cxx; sourceTree = SOURCE_ROOT; };
		BE82C45518CA18610050EB79 /* svdoole2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdoole2.cxx; path = ../../../svx/source/svdraw/svdoole2.cxx; sourceTree = SOURCE_ROOT; };
		BE82C45618CA18610050EB79 /* svdopage.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdopage.cxx; path = ../../../svx/source/svdraw/svdopage.cxx; sourceTree = SOURCE_ROOT; };
		BE82C45718CA18610050EB79 /* svdopath.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdopath.cxx; path = ../../../svx/source/svdraw/svdopath.cxx; sourceTree = SOURCE_ROOT; };
		BE82C45818CA18610050EB79 /* svdorect.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdorect.cxx; path = ../../../svx/source/svdraw/svdorect.cxx; sourceTree = SOURCE_ROOT; };
		BE82C45918CA18610050EB79 /* svdotext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdotext.cxx; path = ../../../svx/source/svdraw/svdotext.cxx; sourceTree = SOURCE_ROOT; };
		BE82C45A18CA18610050EB79 /* svdotextdecomposition.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdotextdecomposition.cxx; path = ../../../svx/source/svdraw/svdotextdecomposition.cxx; sourceTree = SOURCE_ROOT; };
		BE82C45B18CA18610050EB79 /* svdotextpathdecomposition.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdotextpathdecomposition.cxx; path = ../../../svx/source/svdraw/svdotextpathdecomposition.cxx; sourceTree = SOURCE_ROOT; };
		BE82C45C18CA18610050EB79 /* svdotxat.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdotxat.cxx; path = ../../../svx/source/svdraw/svdotxat.cxx; sourceTree = SOURCE_ROOT; };
		BE82C45D18CA18610050EB79 /* svdotxdr.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdotxdr.cxx; path = ../../../svx/source/svdraw/svdotxdr.cxx; sourceTree = SOURCE_ROOT; };
		BE82C45E18CA18610050EB79 /* svdotxed.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdotxed.cxx; path = ../../../svx/source/svdraw/svdotxed.cxx; sourceTree = SOURCE_ROOT; };
		BE82C45F18CA18610050EB79 /* svdotxfl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdotxfl.cxx; path = ../../../svx/source/svdraw/svdotxfl.cxx; sourceTree = SOURCE_ROOT; };
		BE82C46018CA18610050EB79 /* svdotxln.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdotxln.cxx; path = ../../../svx/source/svdraw/svdotxln.cxx; sourceTree = SOURCE_ROOT; };
		BE82C46118CA18610050EB79 /* svdotxtr.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdotxtr.cxx; path = ../../../svx/source/svdraw/svdotxtr.cxx; sourceTree = SOURCE_ROOT; };
		BE82C46218CA18610050EB79 /* svdouno.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdouno.cxx; path = ../../../svx/source/svdraw/svdouno.cxx; sourceTree = SOURCE_ROOT; };
		BE82C46318CA18610050EB79 /* svdoutl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdoutl.cxx; path = ../../../svx/source/svdraw/svdoutl.cxx; sourceTree = SOURCE_ROOT; };
		BE82C46418CA18610050EB79 /* svdoutlinercache.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdoutlinercache.cxx; path = ../../../svx/source/svdraw/svdoutlinercache.cxx; sourceTree = SOURCE_ROOT; };
		BE82C46518CA18610050EB79 /* svdovirt.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdovirt.cxx; path = ../../../svx/source/svdraw/svdovirt.cxx; sourceTree = SOURCE_ROOT; };
		BE82C46618CA18610050EB79 /* svdpage.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdpage.cxx; path = ../../../svx/source/svdraw/svdpage.cxx; sourceTree = SOURCE_ROOT; };
		BE82C46718CA18610050EB79 /* svdpagv.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdpagv.cxx; path = ../../../svx/source/svdraw/svdpagv.cxx; sourceTree = SOURCE_ROOT; };
		BE82C46818CA18610050EB79 /* svdpntv.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdpntv.cxx; path = ../../../svx/source/svdraw/svdpntv.cxx; sourceTree = SOURCE_ROOT; };
		BE82C46918CA18610050EB79 /* svdpoev.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdpoev.cxx; path = ../../../svx/source/svdraw/svdpoev.cxx; sourceTree = SOURCE_ROOT; };
		BE82C46A18CA18610050EB79 /* svdsnpv.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdsnpv.cxx; path = ../../../svx/source/svdraw/svdsnpv.cxx; sourceTree = SOURCE_ROOT; };
		BE82C46B18CA18610050EB79 /* svdtext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdtext.cxx; path = ../../../svx/source/svdraw/svdtext.cxx; sourceTree = SOURCE_ROOT; };
		BE82C46C18CA18610050EB79 /* svdtrans.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdtrans.cxx; path = ../../../svx/source/svdraw/svdtrans.cxx; sourceTree = SOURCE_ROOT; };
		BE82C46D18CA18610050EB79 /* svdundo.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdundo.cxx; path = ../../../svx/source/svdraw/svdundo.cxx; sourceTree = SOURCE_ROOT; };
		BE82C46E18CA18610050EB79 /* svdview.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdview.cxx; path = ../../../svx/source/svdraw/svdview.cxx; sourceTree = SOURCE_ROOT; };
		BE82C46F18CA18610050EB79 /* svdviter.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdviter.cxx; path = ../../../svx/source/svdraw/svdviter.cxx; sourceTree = SOURCE_ROOT; };
		BE82C47018CA18610050EB79 /* svdxcgv.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdxcgv.cxx; path = ../../../svx/source/svdraw/svdxcgv.cxx; sourceTree = SOURCE_ROOT; };
		BE82C47318CA192D0050EB79 /* baseprocessor2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = baseprocessor2d.cxx; path = ../../../drawinglayer/source/processor2d/baseprocessor2d.cxx; sourceTree = SOURCE_ROOT; };
		BE82C47418CA192D0050EB79 /* contourextractor2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = contourextractor2d.cxx; path = ../../../drawinglayer/source/processor2d/contourextractor2d.cxx; sourceTree = SOURCE_ROOT; };
		BE82C47518CA192D0050EB79 /* getdigitlanguage.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = getdigitlanguage.cxx; path = ../../../drawinglayer/source/processor2d/getdigitlanguage.cxx; sourceTree = SOURCE_ROOT; };
		BE82C47618CA192D0050EB79 /* helperwrongspellrenderer.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = helperwrongspellrenderer.cxx; path = ../../../drawinglayer/source/processor2d/helperwrongspellrenderer.cxx; sourceTree = SOURCE_ROOT; };
		BE82C47718CA192D0050EB79 /* hittestprocessor2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = hittestprocessor2d.cxx; path = ../../../drawinglayer/source/processor2d/hittestprocessor2d.cxx; sourceTree = SOURCE_ROOT; };
		BE82C47818CA192D0050EB79 /* linegeometryextractor2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = linegeometryextractor2d.cxx; path = ../../../drawinglayer/source/processor2d/linegeometryextractor2d.cxx; sourceTree = SOURCE_ROOT; };
		BE82C47918CA192D0050EB79 /* objectinfoextractor2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = objectinfoextractor2d.cxx; path = ../../../drawinglayer/source/processor2d/objectinfoextractor2d.cxx; sourceTree = SOURCE_ROOT; };
		BE82C47A18CA192D0050EB79 /* processor2dtools.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = processor2dtools.cxx; path = ../../../drawinglayer/source/processor2d/processor2dtools.cxx; sourceTree = SOURCE_ROOT; };
		BE82C47B18CA192D0050EB79 /* processorfromoutputdevice.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = processorfromoutputdevice.cxx; path = ../../../drawinglayer/source/processor2d/processorfromoutputdevice.cxx; sourceTree = SOURCE_ROOT; };
		BE82C47C18CA192D0050EB79 /* textaspolygonextractor2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textaspolygonextractor2d.cxx; path = ../../../drawinglayer/source/processor2d/textaspolygonextractor2d.cxx; sourceTree = SOURCE_ROOT; };
		BE82C47D18CA192D0050EB79 /* vclhelperbufferdevice.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vclhelperbufferdevice.cxx; path = ../../../drawinglayer/source/processor2d/vclhelperbufferdevice.cxx; sourceTree = SOURCE_ROOT; };
		BE82C47E18CA192D0050EB79 /* vclmetafileprocessor2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vclmetafileprocessor2d.cxx; path = ../../../drawinglayer/source/processor2d/vclmetafileprocessor2d.cxx; sourceTree = SOURCE_ROOT; };
		BE82C47F18CA192D0050EB79 /* vclpixelprocessor2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vclpixelprocessor2d.cxx; path = ../../../drawinglayer/source/processor2d/vclpixelprocessor2d.cxx; sourceTree = SOURCE_ROOT; };
		BE82C48018CA192D0050EB79 /* vclprocessor2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vclprocessor2d.cxx; path = ../../../drawinglayer/source/processor2d/vclprocessor2d.cxx; sourceTree = SOURCE_ROOT; };
		BE82C48218CA19920050EB79 /* animatedprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = animatedprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/animatedprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
		BE82C48318CA19920050EB79 /* backgroundcolorprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = backgroundcolorprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/backgroundcolorprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
		BE82C48418CA19920050EB79 /* baseprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = baseprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/baseprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
		BE82C48518CA19920050EB79 /* bitmapprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bitmapprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/bitmapprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
		BE82C48618CA19920050EB79 /* borderlineprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = borderlineprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/borderlineprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
		BE82C48718CA19920050EB79 /* clippedborderlineprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = clippedborderlineprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/clippedborderlineprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
		BE82C48818CA19920050EB79 /* controlprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = controlprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/controlprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
		BE82C48918CA19920050EB79 /* cropprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cropprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/cropprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
		BE82C48A18CA19920050EB79 /* discretebitmapprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = discretebitmapprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/discretebitmapprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
		BE82C48B18CA19920050EB79 /* discreteshadowprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = discreteshadowprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/discreteshadowprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
		BE82C48C18CA19920050EB79 /* embedded3dprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = embedded3dprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/embedded3dprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
		BE82C48D18CA19920050EB79 /* epsprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = epsprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/epsprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
		BE82C48E18CA19920050EB79 /* fillgradientprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fillgradientprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/fillgradientprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
		BE82C48F18CA19920050EB79 /* fillgraphicprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fillgraphicprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/fillgraphicprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
		BE82C49018CA19920050EB79 /* fillhatchprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fillhatchprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/fillhatchprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
		BE82C49118CA19920050EB79 /* graphicprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = graphicprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/graphicprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
		BE82C49218CA19920050EB79 /* graphicprimitivehelper2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = graphicprimitivehelper2d.cxx; path = ../../../drawinglayer/source/primitive2d/graphicprimitivehelper2d.cxx; sourceTree = SOURCE_ROOT; };
		BE82C49318CA19920050EB79 /* gridprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gridprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/gridprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
		BE82C49418CA19920050EB79 /* groupprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = groupprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/groupprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
		BE82C49518CA19920050EB79 /* helplineprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = helplineprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/helplineprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
		BE82C49618CA19920050EB79 /* hiddengeometryprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = hiddengeometryprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/hiddengeometryprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
		BE82C49718CA19920050EB79 /* invertprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = invertprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/invertprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
		BE82C49818CA19920050EB79 /* markerarrayprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = markerarrayprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/markerarrayprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
		BE82C49918CA19920050EB79 /* maskprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = maskprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/maskprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
		BE82C49A18CA19920050EB79 /* mediaprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = mediaprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/mediaprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
		BE82C49B18CA19920050EB79 /* metafileprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = metafileprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/metafileprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
		BE82C49C18CA19920050EB79 /* modifiedcolorprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = modifiedcolorprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/modifiedcolorprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
		BE82C49D18CA19920050EB79 /* objectinfoprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = objectinfoprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/objectinfoprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
		BE82C49E18CA19920050EB79 /* pagepreviewprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pagepreviewprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/pagepreviewprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
		BE82C49F18CA19920050EB79 /* patternfillprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = patternfillprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/patternfillprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
		BE82C4A018CA19920050EB79 /* pointarrayprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pointarrayprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/pointarrayprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
		BE82C4A118CA19920050EB79 /* polygonprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = polygonprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/polygonprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
		BE82C4A218CA19920050EB79 /* polypolygonprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = polypolygonprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/polypolygonprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
		BE82C4A318CA19920050EB79 /* primitivetools2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = primitivetools2d.cxx; path = ../../../drawinglayer/source/primitive2d/primitivetools2d.cxx; sourceTree = SOURCE_ROOT; };
		BE82C4A418CA19920050EB79 /* sceneprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sceneprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/sceneprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
		BE82C4A518CA19920050EB79 /* sdrdecompositiontools2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sdrdecompositiontools2d.cxx; path = ../../../drawinglayer/source/primitive2d/sdrdecompositiontools2d.cxx; sourceTree = SOURCE_ROOT; };
		BE82C4A618CA19920050EB79 /* shadowprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = shadowprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/shadowprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
		BE82C4A718CA19920050EB79 /* structuretagprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = structuretagprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/structuretagprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
		BE82C4A818CA19920050EB79 /* svggradientprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svggradientprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/svggradientprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
		BE82C4A918CA19920050EB79 /* textbreakuphelper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textbreakuphelper.cxx; path = ../../../drawinglayer/source/primitive2d/textbreakuphelper.cxx; sourceTree = SOURCE_ROOT; };
		BE82C4AA18CA19920050EB79 /* textdecoratedprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textdecoratedprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/textdecoratedprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
		BE82C4AB18CA19920050EB79 /* texteffectprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = texteffectprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/texteffectprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
		BE82C4AC18CA19920050EB79 /* textenumsprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textenumsprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/textenumsprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
		BE82C4AD18CA19920050EB79 /* texthierarchyprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = texthierarchyprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/texthierarchyprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
		BE82C4AE18CA19920050EB79 /* textlayoutdevice.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textlayoutdevice.cxx; path = ../../../drawinglayer/source/primitive2d/textlayoutdevice.cxx; sourceTree = SOURCE_ROOT; };
		BE82C4AF18CA19920050EB79 /* textlineprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textlineprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/textlineprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
		BE82C4B018CA19920050EB79 /* textprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/textprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
		BE82C4B118CA19920050EB79 /* textstrikeoutprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textstrikeoutprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/textstrikeoutprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
		BE82C4B218CA19920050EB79 /* transformprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = transformprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/transformprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
		BE82C4B318CA19920050EB79 /* transparenceprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = transparenceprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/transparenceprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
		BE82C4B418CA19920050EB79 /* unifiedtransparenceprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = unifiedtransparenceprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/unifiedtransparenceprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
		BE82C4B518CA19920050EB79 /* wallpaperprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = wallpaperprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/wallpaperprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
		BE82C4B618CA19920050EB79 /* wrongspellprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = wrongspellprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/wrongspellprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
		BE82C4BB18CDBCC50050EB79 /* pagepreviewlayout.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pagepreviewlayout.cxx; path = ../../../sw/source/core/view/pagepreviewlayout.cxx; sourceTree = SOURCE_ROOT; };
		BE82C4BC18CDBCC50050EB79 /* printdata.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = printdata.cxx; path = ../../../sw/source/core/view/printdata.cxx; sourceTree = SOURCE_ROOT; };
		BE82C4BD18CDBCC50050EB79 /* vdraw.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vdraw.cxx; path = ../../../sw/source/core/view/vdraw.cxx; sourceTree = SOURCE_ROOT; };
		BE82C4BE18CDBCC50050EB79 /* viewimp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewimp.cxx; path = ../../../sw/source/core/view/viewimp.cxx; sourceTree = SOURCE_ROOT; };
		BE82C4BF18CDBCC50050EB79 /* viewpg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewpg.cxx; path = ../../../sw/source/core/view/viewpg.cxx; sourceTree = SOURCE_ROOT; };
		BE82C4C018CDBCC50050EB79 /* viewsh.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewsh.cxx; path = ../../../sw/source/core/view/viewsh.cxx; sourceTree = SOURCE_ROOT; };
		BE82C4C118CDBCC50050EB79 /* vnew.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vnew.cxx; path = ../../../sw/source/core/view/vnew.cxx; sourceTree = SOURCE_ROOT; };
		BE82C4C218CDBCC50050EB79 /* vprint.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vprint.cxx; path = ../../../sw/source/core/view/vprint.cxx; sourceTree = SOURCE_ROOT; };
		BE82C4C418CE6DBE0050EB79 /* abstdlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = abstdlg.cxx; path = ../../../vcl/source/window/abstdlg.cxx; sourceTree = SOURCE_ROOT; };
		BE82C4C518CE6DBE0050EB79 /* accel.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = accel.cxx; path = ../../../vcl/source/window/accel.cxx; sourceTree = SOURCE_ROOT; };
		BE82C4C618CE6DBE0050EB79 /* accmgr.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = accmgr.cxx; path = ../../../vcl/source/window/accmgr.cxx; sourceTree = SOURCE_ROOT; };
		BE82C4C718CE6DBE0050EB79 /* brdwin.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = brdwin.cxx; path = ../../../vcl/source/window/brdwin.cxx; sourceTree = SOURCE_ROOT; };
		BE82C4C818CE6DBE0050EB79 /* btndlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = btndlg.cxx; path = ../../../vcl/source/window/btndlg.cxx; sourceTree = SOURCE_ROOT; };
		BE82C4C918CE6DBE0050EB79 /* builder.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = builder.cxx; path = ../../../vcl/source/window/builder.cxx; sourceTree = SOURCE_ROOT; };
		BE82C4CA18CE6DBE0050EB79 /* commandevent.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = commandevent.cxx; path = ../../../vcl/source/window/commandevent.cxx; sourceTree = SOURCE_ROOT; };
		BE82C4CB18CE6DBE0050EB79 /* cursor.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cursor.cxx; path = ../../../vcl/source/window/cursor.cxx; sourceTree = SOURCE_ROOT; };
		BE82C4CC18CE6DBE0050EB79 /* decoview.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = decoview.cxx; path = ../../../vcl/source/window/decoview.cxx; sourceTree = SOURCE_ROOT; };
		BE82C4CD18CE6DBE0050EB79 /* dialog.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dialog.cxx; path = ../../../vcl/source/window/dialog.cxx; sourceTree = SOURCE_ROOT; };
		BE82C4CE18CE6DBE0050EB79 /* dlgctrl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dlgctrl.cxx; path = ../../../vcl/source/window/dlgctrl.cxx; sourceTree = SOURCE_ROOT; };
		BE82C4D118CE6DBE0050EB79 /* dockingarea.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dockingarea.cxx; path = ../../../vcl/source/window/dockingarea.cxx; sourceTree = SOURCE_ROOT; };
		BE82C4D218CE6DBE0050EB79 /* dockmgr.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dockmgr.cxx; path = ../../../vcl/source/window/dockmgr.cxx; sourceTree = SOURCE_ROOT; };
		BE82C4D318CE6DBE0050EB79 /* dockwin.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dockwin.cxx; path = ../../../vcl/source/window/dockwin.cxx; sourceTree = SOURCE_ROOT; };
		BE82C4D418CE6DBE0050EB79 /* floatwin.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = floatwin.cxx; path = ../../../vcl/source/window/floatwin.cxx; sourceTree = SOURCE_ROOT; };
		BE82C4D518CE6DBE0050EB79 /* introwin.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = introwin.cxx; path = ../../../vcl/source/window/introwin.cxx; sourceTree = SOURCE_ROOT; };
		BE82C4D618CE6DBE0050EB79 /* keycod.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = keycod.cxx; path = ../../../vcl/source/window/keycod.cxx; sourceTree = SOURCE_ROOT; };
		BE82C4D718CE6DBE0050EB79 /* keyevent.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = keyevent.cxx; path = ../../../vcl/source/window/keyevent.cxx; sourceTree = SOURCE_ROOT; };
		BE82C4D818CE6DBE0050EB79 /* layout.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = layout.cxx; path = ../../../vcl/source/window/layout.cxx; sourceTree = SOURCE_ROOT; };
		BE82C4D918CE6DBE0050EB79 /* menu.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = menu.cxx; path = ../../../vcl/source/window/menu.cxx; sourceTree = SOURCE_ROOT; };
		BE82C4DA18CE6DBE0050EB79 /* mnemonic.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = mnemonic.cxx; path = ../../../vcl/source/window/mnemonic.cxx; sourceTree = SOURCE_ROOT; };
		BE82C4DB18CE6DBE0050EB79 /* mnemonicengine.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = mnemonicengine.cxx; path = ../../../vcl/source/window/mnemonicengine.cxx; sourceTree = SOURCE_ROOT; };
		BE82C4DD18CE6DBE0050EB79 /* msgbox.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = msgbox.cxx; path = ../../../vcl/source/window/msgbox.cxx; sourceTree = SOURCE_ROOT; };
		BE82C4DE18CE6DBE0050EB79 /* popupmenuwindow.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = popupmenuwindow.cxx; path = ../../../vcl/source/window/popupmenuwindow.cxx; sourceTree = SOURCE_ROOT; };
		BE82C4DF18CE6DBE0050EB79 /* printdlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = printdlg.cxx; path = ../../../vcl/source/window/printdlg.cxx; sourceTree = SOURCE_ROOT; };
		BE82C4E018CE6DBE0050EB79 /* scrwnd.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = scrwnd.cxx; path = ../../../vcl/source/window/scrwnd.cxx; sourceTree = SOURCE_ROOT; };
		BE82C4E118CE6DBE0050EB79 /* seleng.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = seleng.cxx; path = ../../../vcl/source/window/seleng.cxx; sourceTree = SOURCE_ROOT; };
		BE82C4E218CE6DBE0050EB79 /* split.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = split.cxx; path = ../../../vcl/source/window/split.cxx; sourceTree = SOURCE_ROOT; };
		BE82C4E318CE6DBE0050EB79 /* splitwin.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = splitwin.cxx; path = ../../../vcl/source/window/splitwin.cxx; sourceTree = SOURCE_ROOT; };
		BE82C4E418CE6DBE0050EB79 /* status.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = status.cxx; path = ../../../vcl/source/window/status.cxx; sourceTree = SOURCE_ROOT; };
		BE82C4E518CE6DBE0050EB79 /* syschild.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = syschild.cxx; path = ../../../vcl/source/window/syschild.cxx; sourceTree = SOURCE_ROOT; };
		BE82C4E618CE6DBE0050EB79 /* syswin.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = syswin.cxx; path = ../../../vcl/source/window/syswin.cxx; sourceTree = SOURCE_ROOT; };
		BE82C4E718CE6DBE0050EB79 /* tabdlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tabdlg.cxx; path = ../../../vcl/source/window/tabdlg.cxx; sourceTree = SOURCE_ROOT; };
		BE82C4E818CE6DBE0050EB79 /* tabpage.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tabpage.cxx; path = ../../../vcl/source/window/tabpage.cxx; sourceTree = SOURCE_ROOT; };
		BE82C4E918CE6DBE0050EB79 /* taskpanelist.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = taskpanelist.cxx; path = ../../../vcl/source/window/taskpanelist.cxx; sourceTree = SOURCE_ROOT; };
		BE82C4EA18CE6DBE0050EB79 /* toolbox.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = toolbox.cxx; path = ../../../vcl/source/window/toolbox.cxx; sourceTree = SOURCE_ROOT; };
		BE82C4EB18CE6DBE0050EB79 /* toolbox2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = toolbox2.cxx; path = ../../../vcl/source/window/toolbox2.cxx; sourceTree = SOURCE_ROOT; };
		BE82C4EC18CE6DBE0050EB79 /* window.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = window.cxx; path = ../../../vcl/source/window/window.cxx; sourceTree = SOURCE_ROOT; };
		BE82C4ED18CE6DBE0050EB79 /* window2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = window2.cxx; path = ../../../vcl/source/window/window2.cxx; sourceTree = SOURCE_ROOT; };
		BE82C4EE18CE6DBE0050EB79 /* window3.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = window3.cxx; path = ../../../vcl/source/window/window3.cxx; sourceTree = SOURCE_ROOT; };
		BE82C4EF18CE6DBE0050EB79 /* winproc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = winproc.cxx; path = ../../../vcl/source/window/winproc.cxx; sourceTree = SOURCE_ROOT; };
		BE82C4F018CE6DBE0050EB79 /* wrkwin.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = wrkwin.cxx; path = ../../../vcl/source/window/wrkwin.cxx; sourceTree = SOURCE_ROOT; };
		BE9931C5199A185D0008A364 /* accessiblecomponenthelper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = accessiblecomponenthelper.cxx; path = ../../../comphelper/source/misc/accessiblecomponenthelper.cxx; sourceTree = SOURCE_ROOT; };
		BE9931C6199A185D0008A364 /* accessiblecontexthelper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = accessiblecontexthelper.cxx; path = ../../../comphelper/source/misc/accessiblecontexthelper.cxx; sourceTree = SOURCE_ROOT; };
		BE9931C7199A185D0008A364 /* accessibleeventnotifier.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = accessibleeventnotifier.cxx; path = ../../../comphelper/source/misc/accessibleeventnotifier.cxx; sourceTree = SOURCE_ROOT; };
		BE9931C8199A185D0008A364 /* accessiblekeybindinghelper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = accessiblekeybindinghelper.cxx; path = ../../../comphelper/source/misc/accessiblekeybindinghelper.cxx; sourceTree = SOURCE_ROOT; };
		BE9931C9199A185D0008A364 /* accessibleselectionhelper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = accessibleselectionhelper.cxx; path = ../../../comphelper/source/misc/accessibleselectionhelper.cxx; sourceTree = SOURCE_ROOT; };
		BE9931CA199A185D0008A364 /* accessibletexthelper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = accessibletexthelper.cxx; path = ../../../comphelper/source/misc/accessibletexthelper.cxx; sourceTree = SOURCE_ROOT; };
		BE9931CB199A185D0008A364 /* accessiblewrapper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = accessiblewrapper.cxx; path = ../../../comphelper/source/misc/accessiblewrapper.cxx; sourceTree = SOURCE_ROOT; };
		BE9931CC199A185D0008A364 /* accimplaccess.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = accimplaccess.cxx; path = ../../../comphelper/source/misc/accimplaccess.cxx; sourceTree = SOURCE_ROOT; };
		BE9931CD199A185D0008A364 /* anycompare.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = anycompare.cxx; path = ../../../comphelper/source/misc/anycompare.cxx; sourceTree = SOURCE_ROOT; };
		BE9931CE199A185D0008A364 /* anytostring.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = anytostring.cxx; path = ../../../comphelper/source/misc/anytostring.cxx; sourceTree = SOURCE_ROOT; };
		BE9931CF199A185D0008A364 /* asyncnotification.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = asyncnotification.cxx; path = ../../../comphelper/source/misc/asyncnotification.cxx; sourceTree = SOURCE_ROOT; };
		BE9931D0199A185D0008A364 /* comphelper_module.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = comphelper_module.cxx; path = ../../../comphelper/source/misc/comphelper_module.cxx; sourceTree = SOURCE_ROOT; };
		BE9931D1199A185D0008A364 /* comphelper_services.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = comphelper_services.cxx; path = ../../../comphelper/source/misc/comphelper_services.cxx; sourceTree = SOURCE_ROOT; };
		BE9931D2199A185D0008A364 /* componentbase.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = componentbase.cxx; path = ../../../comphelper/source/misc/componentbase.cxx; sourceTree = SOURCE_ROOT; };
		BE9931D3199A185D0008A364 /* componentmodule.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = componentmodule.cxx; path = ../../../comphelper/source/misc/componentmodule.cxx; sourceTree = SOURCE_ROOT; };
		BE9931D4199A185D0008A364 /* configuration.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = configuration.cxx; path = ../../../comphelper/source/misc/configuration.cxx; sourceTree = SOURCE_ROOT; };
		BE9931D5199A185D0008A364 /* configurationhelper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = configurationhelper.cxx; path = ../../../comphelper/source/misc/configurationhelper.cxx; sourceTree = SOURCE_ROOT; };
		BE9931D6199A185D0008A364 /* docpasswordhelper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docpasswordhelper.cxx; path = ../../../comphelper/source/misc/docpasswordhelper.cxx; sourceTree = SOURCE_ROOT; };
		BE9931D7199A185D0008A364 /* docpasswordrequest.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docpasswordrequest.cxx; path = ../../../comphelper/source/misc/docpasswordrequest.cxx; sourceTree = SOURCE_ROOT; };
		BE9931D8199A185D0008A364 /* documentinfo.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = documentinfo.cxx; path = ../../../comphelper/source/misc/documentinfo.cxx; sourceTree = SOURCE_ROOT; };
		BE9931D9199A185D0008A364 /* documentiologring.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = documentiologring.cxx; path = ../../../comphelper/source/misc/documentiologring.cxx; sourceTree = SOURCE_ROOT; };
		BE9931DA199A185D0008A364 /* evtlistenerhlp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = evtlistenerhlp.cxx; path = ../../../comphelper/source/misc/evtlistenerhlp.cxx; sourceTree = SOURCE_ROOT; };
		BE9931DB199A185D0008A364 /* evtmethodhelper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = evtmethodhelper.cxx; path = ../../../comphelper/source/misc/evtmethodhelper.cxx; sourceTree = SOURCE_ROOT; };
		BE9931DD199A185D0008A364 /* instancelocker.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = instancelocker.cxx; path = ../../../comphelper/source/misc/instancelocker.cxx; sourceTree = SOURCE_ROOT; };
		BE9931DE199A185D0008A364 /* interaction.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = interaction.cxx; path = ../../../comphelper/source/misc/interaction.cxx; sourceTree = SOURCE_ROOT; };
		BE9931DF199A185D0008A364 /* listenernotification.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = listenernotification.cxx; path = ../../../comphelper/source/misc/listenernotification.cxx; sourceTree = SOURCE_ROOT; };
		BE9931E0199A185D0008A364 /* logging.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = logging.cxx; path = ../../../comphelper/source/misc/logging.cxx; sourceTree = SOURCE_ROOT; };
		BE9931E1199A185D0008A364 /* mimeconfighelper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = mimeconfighelper.cxx; path = ../../../comphelper/source/misc/mimeconfighelper.cxx; sourceTree = SOURCE_ROOT; };
		BE9931E2199A185D0008A364 /* namedvaluecollection.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = namedvaluecollection.cxx; path = ../../../comphelper/source/misc/namedvaluecollection.cxx; sourceTree = SOURCE_ROOT; };
		BE9931E3199A185D0008A364 /* numberedcollection.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = numberedcollection.cxx; path = ../../../comphelper/source/misc/numberedcollection.cxx; sourceTree = SOURCE_ROOT; };
		BE9931E4199A185D0008A364 /* numbers.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = numbers.cxx; path = ../../../comphelper/source/misc/numbers.cxx; sourceTree = SOURCE_ROOT; };
		BE9931E5199A185D0008A364 /* officeresourcebundle.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = officeresourcebundle.cxx; path = ../../../comphelper/source/misc/officeresourcebundle.cxx; sourceTree = SOURCE_ROOT; };
		BE9931E6199A185D0008A364 /* officerestartmanager.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = officerestartmanager.cxx; path = ../../../comphelper/source/misc/officerestartmanager.cxx; sourceTree = SOURCE_ROOT; };
		BE9931E7199A185D0008A364 /* proxyaggregation.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = proxyaggregation.cxx; path = ../../../comphelper/source/misc/proxyaggregation.cxx; sourceTree = SOURCE_ROOT; };
		BE9931E8199A185D0008A364 /* random.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = random.cxx; path = ../../../comphelper/source/misc/random.cxx; sourceTree = SOURCE_ROOT; };
		BE9931E9199A185D0008A364 /* scopeguard.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = scopeguard.cxx; path = ../../../comphelper/source/misc/scopeguard.cxx; sourceTree = SOURCE_ROOT; };
		BE9931EA199A185D0008A364 /* SelectionMultiplex.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = SelectionMultiplex.cxx; path = ../../../comphelper/source/misc/SelectionMultiplex.cxx; sourceTree = SOURCE_ROOT; };
		BE9931EB199A185D0008A364 /* sequence.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sequence.cxx; path = ../../../comphelper/source/misc/sequence.cxx; sourceTree = SOURCE_ROOT; };
		BE9931EC199A185D0008A364 /* sequenceashashmap.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sequenceashashmap.cxx; path = ../../../comphelper/source/misc/sequenceashashmap.cxx; sourceTree = SOURCE_ROOT; };
		BE9931ED199A185D0008A364 /* servicedecl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = servicedecl.cxx; path = ../../../comphelper/source/misc/servicedecl.cxx; sourceTree = SOURCE_ROOT; };
		BE9931EE199A185D0008A364 /* serviceinfohelper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = serviceinfohelper.cxx; path = ../../../comphelper/source/misc/serviceinfohelper.cxx; sourceTree = SOURCE_ROOT; };
		BE9931EF199A185D0008A364 /* sharedmutex.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sharedmutex.cxx; path = ../../../comphelper/source/misc/sharedmutex.cxx; sourceTree = SOURCE_ROOT; };
		BE9931F0199A185D0008A364 /* solarmutex.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = solarmutex.cxx; path = ../../../comphelper/source/misc/solarmutex.cxx; sourceTree = SOURCE_ROOT; };
		BE9931F1199A185D0008A364 /* stillreadwriteinteraction.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = stillreadwriteinteraction.cxx; path = ../../../comphelper/source/misc/stillreadwriteinteraction.cxx; sourceTree = SOURCE_ROOT; };
		BE9931F2199A185D0008A364 /* storagehelper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = storagehelper.cxx; path = ../../../comphelper/source/misc/storagehelper.cxx; sourceTree = SOURCE_ROOT; };
		BE9931F3199A185D0008A364 /* string.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = string.cxx; path = ../../../comphelper/source/misc/string.cxx; sourceTree = SOURCE_ROOT; };
		BE9931F4199A185D0008A364 /* synchronousdispatch.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = synchronousdispatch.cxx; path = ../../../comphelper/source/misc/synchronousdispatch.cxx; sourceTree = SOURCE_ROOT; };
		BE9931F5199A185D0008A364 /* syntaxhighlight.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = syntaxhighlight.cxx; path = ../../../comphelper/source/misc/syntaxhighlight.cxx; sourceTree = SOURCE_ROOT; };
		BE9931F6199A185D0008A364 /* types.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = types.cxx; path = ../../../comphelper/source/misc/types.cxx; sourceTree = SOURCE_ROOT; };
		BE9931F7199A185D0008A364 /* weak.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = weak.cxx; path = ../../../comphelper/source/misc/weak.cxx; sourceTree = SOURCE_ROOT; };
		BE9931F8199A185D0008A364 /* weakeventlistener.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = weakeventlistener.cxx; path = ../../../comphelper/source/misc/weakeventlistener.cxx; sourceTree = SOURCE_ROOT; };
		BE9931FC199A1BF00008A364 /* ciphercontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ciphercontext.cxx; path = ../../../xmlsecurity/source/xmlsec/nss/ciphercontext.cxx; sourceTree = SOURCE_ROOT; };
		BE9931FD199A1BF00008A364 /* digestcontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = digestcontext.cxx; path = ../../../xmlsecurity/source/xmlsec/nss/digestcontext.cxx; sourceTree = SOURCE_ROOT; };
		BE9931FE199A1BF00008A364 /* nssinitializer.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = nssinitializer.cxx; path = ../../../xmlsecurity/source/xmlsec/nss/nssinitializer.cxx; sourceTree = SOURCE_ROOT; };
		BE9931FF199A1BF00008A364 /* sanextension_nssimpl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sanextension_nssimpl.cxx; path = ../../../xmlsecurity/source/xmlsec/nss/sanextension_nssimpl.cxx; sourceTree = SOURCE_ROOT; };
		BE993200199A1BF00008A364 /* secerror.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = secerror.cxx; path = ../../../xmlsecurity/source/xmlsec/nss/secerror.cxx; sourceTree = SOURCE_ROOT; };
		BE993201199A1BF00008A364 /* securityenvironment_nssimpl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = securityenvironment_nssimpl.cxx; path = ../../../xmlsecurity/source/xmlsec/nss/securityenvironment_nssimpl.cxx; sourceTree = SOURCE_ROOT; };
		BE993202199A1BF00008A364 /* seinitializer_nssimpl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = seinitializer_nssimpl.cxx; path = ../../../xmlsecurity/source/xmlsec/nss/seinitializer_nssimpl.cxx; sourceTree = SOURCE_ROOT; };
		BE993203199A1BF00008A364 /* x509certificate_nssimpl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = x509certificate_nssimpl.cxx; path = ../../../xmlsecurity/source/xmlsec/nss/x509certificate_nssimpl.cxx; sourceTree = SOURCE_ROOT; };
		BE993204199A1BF00008A364 /* xmlencryption_nssimpl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xmlencryption_nssimpl.cxx; path = ../../../xmlsecurity/source/xmlsec/nss/xmlencryption_nssimpl.cxx; sourceTree = SOURCE_ROOT; };
		BE993205199A1BF00008A364 /* xmlsecuritycontext_nssimpl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xmlsecuritycontext_nssimpl.cxx; path = ../../../xmlsecurity/source/xmlsec/nss/xmlsecuritycontext_nssimpl.cxx; sourceTree = SOURCE_ROOT; };
		BE993206199A1BF00008A364 /* xmlsignature_nssimpl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xmlsignature_nssimpl.cxx; path = ../../../xmlsecurity/source/xmlsec/nss/xmlsignature_nssimpl.cxx; sourceTree = SOURCE_ROOT; };
		BE993207199A1BF00008A364 /* xsec_nss.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xsec_nss.cxx; path = ../../../xmlsecurity/source/xmlsec/nss/xsec_nss.cxx; sourceTree = SOURCE_ROOT; };
		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 = SOURCE_ROOT; };
		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 = SOURCE_ROOT; };
		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 = SOURCE_ROOT; };
		BE9F45FC1868396500B8BE69 /* cpp2uno.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cpp2uno.cxx; path = ../../../bridges/source/cpp_uno/gcc3_ios_arm/cpp2uno.cxx; sourceTree = SOURCE_ROOT; };
		BE9F45FD1868396500B8BE69 /* except.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = except.cxx; path = ../../../bridges/source/cpp_uno/gcc3_ios_arm/except.cxx; sourceTree = SOURCE_ROOT; };
		BE9F45FE1868396500B8BE69 /* helper.s */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; name = helper.s; path = ../../../bridges/source/cpp_uno/gcc3_ios_arm/helper.s; sourceTree = SOURCE_ROOT; };
		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 = SOURCE_ROOT; };
		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 = SOURCE_ROOT; };
		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 = SOURCE_ROOT; };
		BE9F46031868396500B8BE69 /* uno2cpp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = uno2cpp.cxx; path = ../../../bridges/source/cpp_uno/gcc3_ios_arm/uno2cpp.cxx; sourceTree = SOURCE_ROOT; };
		BE9F4604186839C100B8BE69 /* bridge.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bridge.cxx; path = ../../../bridges/source/cpp_uno/shared/bridge.cxx; sourceTree = SOURCE_ROOT; };
		BE9F4605186839C100B8BE69 /* component.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = component.cxx; path = ../../../bridges/source/cpp_uno/shared/component.cxx; sourceTree = SOURCE_ROOT; };
		BE9F4606186839C100B8BE69 /* cppinterfaceproxy.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cppinterfaceproxy.cxx; path = ../../../bridges/source/cpp_uno/shared/cppinterfaceproxy.cxx; sourceTree = SOURCE_ROOT; };
		BE9F4607186839C100B8BE69 /* guardedarray.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = guardedarray.hxx; path = ../../../bridges/source/cpp_uno/shared/guardedarray.hxx; sourceTree = SOURCE_ROOT; };
		BE9F4608186839C100B8BE69 /* types.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = types.cxx; path = ../../../bridges/source/cpp_uno/shared/types.cxx; sourceTree = SOURCE_ROOT; };
		BE9F4609186839C100B8BE69 /* unointerfaceproxy.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = unointerfaceproxy.cxx; path = ../../../bridges/source/cpp_uno/shared/unointerfaceproxy.cxx; sourceTree = SOURCE_ROOT; };
		BE9F460A186839C100B8BE69 /* vtablefactory.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vtablefactory.cxx; path = ../../../bridges/source/cpp_uno/shared/vtablefactory.cxx; sourceTree = SOURCE_ROOT; };
		BE9F460B186839C100B8BE69 /* vtables.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vtables.cxx; path = ../../../bridges/source/cpp_uno/shared/vtables.cxx; sourceTree = SOURCE_ROOT; };
		BEAB8059194604400083BBB6 /* button.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = button.cxx; path = ../../../vcl/source/control/button.cxx; sourceTree = SOURCE_ROOT; };
		BEAB805A194604400083BBB6 /* combobox.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = combobox.cxx; path = ../../../vcl/source/control/combobox.cxx; sourceTree = SOURCE_ROOT; };
		BEAB805B194604400083BBB6 /* ctrl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ctrl.cxx; path = ../../../vcl/source/control/ctrl.cxx; sourceTree = SOURCE_ROOT; };
		BEAB805C194604400083BBB6 /* edit.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = edit.cxx; path = ../../../vcl/source/control/edit.cxx; sourceTree = SOURCE_ROOT; };
		BEAB805D194604400083BBB6 /* field.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = field.cxx; path = ../../../vcl/source/control/field.cxx; sourceTree = SOURCE_ROOT; };
		BEAB805E194604400083BBB6 /* field2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = field2.cxx; path = ../../../vcl/source/control/field2.cxx; sourceTree = SOURCE_ROOT; };
		BEAB805F194604400083BBB6 /* fixed.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fixed.cxx; path = ../../../vcl/source/control/fixed.cxx; sourceTree = SOURCE_ROOT; };
		BEAB8060194604400083BBB6 /* fixedhyper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fixedhyper.cxx; path = ../../../vcl/source/control/fixedhyper.cxx; sourceTree = SOURCE_ROOT; };
		BEAB8061194604400083BBB6 /* group.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = group.cxx; path = ../../../vcl/source/control/group.cxx; sourceTree = SOURCE_ROOT; };
		BEAB8063194604400083BBB6 /* imgctrl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = imgctrl.cxx; path = ../../../vcl/source/control/imgctrl.cxx; sourceTree = SOURCE_ROOT; };
		BEAB8064194604400083BBB6 /* longcurr.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = longcurr.cxx; path = ../../../vcl/source/control/longcurr.cxx; sourceTree = SOURCE_ROOT; };
		BEAB8066194604400083BBB6 /* menubtn.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = menubtn.cxx; path = ../../../vcl/source/control/menubtn.cxx; sourceTree = SOURCE_ROOT; };
		BEAB8067194604400083BBB6 /* morebtn.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = morebtn.cxx; path = ../../../vcl/source/control/morebtn.cxx; sourceTree = SOURCE_ROOT; };
		BEAB8068194604400083BBB6 /* prgsbar.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = prgsbar.cxx; path = ../../../vcl/source/control/prgsbar.cxx; sourceTree = SOURCE_ROOT; };
		BEAB8069194604400083BBB6 /* quickselectionengine.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = quickselectionengine.cxx; path = ../../../vcl/source/control/quickselectionengine.cxx; sourceTree = SOURCE_ROOT; };
		BEAB806A194604400083BBB6 /* scrbar.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = scrbar.cxx; path = ../../../vcl/source/control/scrbar.cxx; sourceTree = SOURCE_ROOT; };
		BEAB806B194604400083BBB6 /* slider.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = slider.cxx; path = ../../../vcl/source/control/slider.cxx; sourceTree = SOURCE_ROOT; };
		BEAB806C194604400083BBB6 /* spinbtn.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = spinbtn.cxx; path = ../../../vcl/source/control/spinbtn.cxx; sourceTree = SOURCE_ROOT; };
		BEAB806D194604400083BBB6 /* spinfld.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = spinfld.cxx; path = ../../../vcl/source/control/spinfld.cxx; sourceTree = SOURCE_ROOT; };
		BEAB806E194604400083BBB6 /* tabctrl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tabctrl.cxx; path = ../../../vcl/source/control/tabctrl.cxx; sourceTree = SOURCE_ROOT; };
		BEAB806F194604400083BBB6 /* throbber.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = throbber.cxx; path = ../../../vcl/source/control/throbber.cxx; sourceTree = SOURCE_ROOT; };
		BEAB807119460AE10083BBB6 /* textdata.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textdata.cxx; path = ../../../vcl/source/edit/textdata.cxx; sourceTree = SOURCE_ROOT; };
		BEAB807219460AE10083BBB6 /* textdoc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textdoc.cxx; path = ../../../vcl/source/edit/textdoc.cxx; sourceTree = SOURCE_ROOT; };
		BEAB807319460AE10083BBB6 /* texteng.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = texteng.cxx; path = ../../../vcl/source/edit/texteng.cxx; sourceTree = SOURCE_ROOT; };
		BEAB807419460AE10083BBB6 /* textundo.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textundo.cxx; path = ../../../vcl/source/edit/textundo.cxx; sourceTree = SOURCE_ROOT; };
		BEAB807519460AE10083BBB6 /* textview.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textview.cxx; path = ../../../vcl/source/edit/textview.cxx; sourceTree = SOURCE_ROOT; };
		BEAB807619460AE10083BBB6 /* txtattr.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = txtattr.cxx; path = ../../../vcl/source/edit/txtattr.cxx; sourceTree = SOURCE_ROOT; };
		BEAB807719460AE10083BBB6 /* vclmedit.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vclmedit.cxx; path = ../../../vcl/source/edit/vclmedit.cxx; sourceTree = SOURCE_ROOT; };
		BEAB807819460AE10083BBB6 /* xtextedt.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xtextedt.cxx; path = ../../../vcl/source/edit/xtextedt.cxx; sourceTree = SOURCE_ROOT; };
		BECA60DB1910271F00B24A7E /* autorecovery.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = autorecovery.cxx; path = ../../../framework/source/services/autorecovery.cxx; sourceTree = SOURCE_ROOT; };
		BECA60DC1910271F00B24A7E /* ContextChangeEventMultiplexer.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ContextChangeEventMultiplexer.cxx; path = ../../../framework/source/services/ContextChangeEventMultiplexer.cxx; sourceTree = SOURCE_ROOT; };
		BECA60DD1910271F00B24A7E /* desktop.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = desktop.cxx; path = ../../../framework/source/services/desktop.cxx; sourceTree = SOURCE_ROOT; };
		BECA60DE1910271F00B24A7E /* dispatchhelper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dispatchhelper.cxx; path = ../../../framework/source/services/dispatchhelper.cxx; sourceTree = SOURCE_ROOT; };
		BECA60DF1910271F00B24A7E /* frame.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = frame.cxx; path = ../../../framework/source/services/frame.cxx; sourceTree = SOURCE_ROOT; };
		BECA60E01910271F00B24A7E /* mediatypedetectionhelper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = mediatypedetectionhelper.cxx; path = ../../../framework/source/services/mediatypedetectionhelper.cxx; sourceTree = SOURCE_ROOT; };
		BECA60E11910271F00B24A7E /* modulemanager.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = modulemanager.cxx; path = ../../../framework/source/services/modulemanager.cxx; sourceTree = SOURCE_ROOT; };
		BECA60E21910271F00B24A7E /* pathsettings.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pathsettings.cxx; path = ../../../framework/source/services/pathsettings.cxx; sourceTree = SOURCE_ROOT; };
		BECA60E31910271F00B24A7E /* sessionlistener.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sessionlistener.cxx; path = ../../../framework/source/services/sessionlistener.cxx; sourceTree = SOURCE_ROOT; };
		BECA60E41910271F00B24A7E /* substitutepathvars.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = substitutepathvars.cxx; path = ../../../framework/source/services/substitutepathvars.cxx; sourceTree = SOURCE_ROOT; };
		BECA60E61910271F00B24A7E /* taskcreatorsrv.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = taskcreatorsrv.cxx; path = ../../../framework/source/services/taskcreatorsrv.cxx; sourceTree = SOURCE_ROOT; };
		BECA60E71910271F00B24A7E /* uriabbreviation.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = uriabbreviation.cxx; path = ../../../framework/source/services/uriabbreviation.cxx; sourceTree = SOURCE_ROOT; };
		BECA60E81910271F00B24A7E /* urltransformer.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = urltransformer.cxx; path = ../../../framework/source/services/urltransformer.cxx; sourceTree = SOURCE_ROOT; };
		BECAB371186054DE00F814F9 /* lo.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = lo.mm; path = Prototype/lo.mm; sourceTree = SOURCE_ROOT; };
		BED2593E18F6B87900C94C72 /* ImageIO.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ImageIO.framework; path = System/Library/Frameworks/ImageIO.framework; sourceTree = SDKROOT; };
		BED2594018F6B89000C94C72 /* MobileCoreServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MobileCoreServices.framework; path = System/Library/Frameworks/MobileCoreServices.framework; sourceTree = SDKROOT; };
		BED53168193738D800830918 /* bitmapaction.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bitmapaction.cxx; path = ../../../cppcanvas/source/mtfrenderer/bitmapaction.cxx; sourceTree = SOURCE_ROOT; };
		BED53169193738D800830918 /* cachedprimitivebase.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cachedprimitivebase.cxx; path = ../../../cppcanvas/source/mtfrenderer/cachedprimitivebase.cxx; sourceTree = SOURCE_ROOT; };
		BED5316A193738D800830918 /* emfplus.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = emfplus.cxx; path = ../../../cppcanvas/source/mtfrenderer/emfplus.cxx; sourceTree = SOURCE_ROOT; };
		BED5316B193738D800830918 /* implrenderer.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = implrenderer.cxx; path = ../../../cppcanvas/source/mtfrenderer/implrenderer.cxx; sourceTree = SOURCE_ROOT; };
		BED5316C193738D800830918 /* lineaction.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = lineaction.cxx; path = ../../../cppcanvas/source/mtfrenderer/lineaction.cxx; sourceTree = SOURCE_ROOT; };
		BED5316D193738D800830918 /* mtftools.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = mtftools.cxx; path = ../../../cppcanvas/source/mtfrenderer/mtftools.cxx; sourceTree = SOURCE_ROOT; };
		BED5316E193738D800830918 /* pointaction.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pointaction.cxx; path = ../../../cppcanvas/source/mtfrenderer/pointaction.cxx; sourceTree = SOURCE_ROOT; };
		BED5316F193738D800830918 /* polypolyaction.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = polypolyaction.cxx; path = ../../../cppcanvas/source/mtfrenderer/polypolyaction.cxx; sourceTree = SOURCE_ROOT; };
		BED53170193738D800830918 /* textaction.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textaction.cxx; path = ../../../cppcanvas/source/mtfrenderer/textaction.cxx; sourceTree = SOURCE_ROOT; };
		BED53171193738D800830918 /* transparencygroupaction.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = transparencygroupaction.cxx; path = ../../../cppcanvas/source/mtfrenderer/transparencygroupaction.cxx; sourceTree = SOURCE_ROOT; };
		BEDB0F08185B7537009A6F26 /* lo.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = lo.xcconfig; path = "../../../../ios-work/workdir/ios/generated/lo.xcconfig"; sourceTree = SOURCE_ROOT; };
		BEEE02CE1860ABB700FBDE67 /* program */ = {isa = PBXFileReference; lastKnownFileType = folder; name = program; path = ../../ioswork/ios/resources/program; sourceTree = SOURCE_ROOT; };
		BEEE02CF1860ABB700FBDE67 /* share */ = {isa = PBXFileReference; lastKnownFileType = folder; name = share; path = ../../ioswork/ios/resources/share; sourceTree = SOURCE_ROOT; };
		BEEE02D01860ABB700FBDE67 /* services */ = {isa = PBXFileReference; lastKnownFileType = folder; name = services; path = ../../ioswork/ios/resources/services; sourceTree = SOURCE_ROOT; };
		BEEEF96D1860A82900FBDE67 /* fundamentalrc */ = {isa = PBXFileReference; lastKnownFileType = text; name = fundamentalrc; path = ../../ioswork/ios/resources/fundamentalrc; sourceTree = SOURCE_ROOT; };
		BEEEF96E1860A82900FBDE67 /* offapi.rdb */ = {isa = PBXFileReference; lastKnownFileType = file; name = offapi.rdb; path = ../../ioswork/ios/resources/offapi.rdb; sourceTree = SOURCE_ROOT; };
		BEEEF96F1860A82900FBDE67 /* oovbaapi.rdb */ = {isa = PBXFileReference; lastKnownFileType = file; name = oovbaapi.rdb; path = ../../ioswork/ios/resources/oovbaapi.rdb; sourceTree = SOURCE_ROOT; };
		BEEEF9AA1860A82900FBDE67 /* rc */ = {isa = PBXFileReference; lastKnownFileType = text; name = rc; path = ../../ioswork/ios/resources/rc; sourceTree = SOURCE_ROOT; };
		BEEEF9AB1860A82900FBDE67 /* services.rdb */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = services.rdb; path = ../../ioswork/ios/resources/services.rdb; sourceTree = SOURCE_ROOT; };
		BEEEFDFD1860A82C00FBDE67 /* udkapi.rdb */ = {isa = PBXFileReference; lastKnownFileType = file; name = udkapi.rdb; path = ../../ioswork/ios/resources/udkapi.rdb; sourceTree = SOURCE_ROOT; };
		BEEEFDFE1860A82C00FBDE67 /* unorc */ = {isa = PBXFileReference; lastKnownFileType = text; name = unorc; path = ../../ioswork/ios/resources/unorc; sourceTree = SOURCE_ROOT; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
		BE82BD6F18218E2E00A447B5 /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				BED2594118F6B89000C94C72 /* MobileCoreServices.framework in Frameworks */,
				BED2593F18F6B87900C94C72 /* ImageIO.framework 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 */
		399857431E56322300F2DA60 /* en.lproj */ = {
			isa = PBXGroup;
			children = (
				399857441E56322300F2DA60 /* InfoPlist.strings */,
			);
			path = en.lproj;
			sourceTree = "<group>";
		};
		BE03BF8F18F9641D00620DC7 /* External library sources */ = {
			isa = PBXGroup;
			children = (
				BE03BF9018F9642F00620DC7 /* icu */,
			);
			name = "External library sources";
			sourceTree = SOURCE_ROOT;
		};
		BE03BF9018F9642F00620DC7 /* icu */ = {
			isa = PBXGroup;
			children = (
				BE03BF9118F9648F00620DC7 /* udata.cpp */,
			);
			name = icu;
			sourceTree = SOURCE_ROOT;
		};
		BE03BF9418FC199B00620DC7 /* i18npool */ = {
			isa = PBXGroup;
			children = (
				BE03BF9518FC1A1C00620DC7 /* xdictionary.cxx */,
			);
			name = i18npool;
			sourceTree = SOURCE_ROOT;
		};
		BE0898E61860D3CD0021A679 /* LibreOffice source files */ = {
			isa = PBXGroup;
			children = (
				BE9F45F81868393D00B8BE69 /* bridges */,
				BE9931C3199A17E90008A364 /* comphelper */,
				BE55B10518DAD85E00950228 /* cppu */,
				BE35B58A188FFA43001B7439 /* cppuhelper */,
				BED531661937389B00830918 /* cppcanvas */,
				BE82C47118CA18D70050EB79 /* drawinglayer */,
				BE6DC8EB19D9A66B00AFB393 /* desktop */,
				BECA60D9191026BA00B24A7E /* framework */,
				BE03BF9418FC199B00620DC7 /* i18npool */,
				BE55B10818DB673300950228 /* oox */,
				BE82C38818C752760050EB79 /* sal */,
				BE35B5A6189051F7001B7439 /* sfx2 */,
				BE82C42718CA17A60050EB79 /* svx */,
				BE82C4B918CDBC5B0050EB79 /* sw */,
				BE0898E71860D3DA0021A679 /* vcl */,
				BE9931F9199A1B750008A364 /* xmlsecurity */,
			);
			name = "LibreOffice source files";
			sourceTree = SOURCE_ROOT;
		};
		BE0898E71860D3DA0021A679 /* vcl */ = {
			isa = PBXGroup;
			children = (
				BE0899121860D78B0021A679 /* app */,
				BEAB8058194603EC0083BBB6 /* control */,
				BEAB807019460A920083BBB6 /* edit */,
				BE6F3D7B192E287400D6FCC0 /* filter */,
				BE35B5431886C4CC001B7439 /* gdi */,
				BE35B53B18869D2B001B7439 /* headless */,
				BE35B53818868ECD001B7439 /* ios */,
				BE6F3D66192E283300D6FCC0 /* outdev */,
				BE0899131860F6100021A679 /* quartz */,
				BE82C4C318CE6D860050EB79 /* window */,
				BE6F3D86192E28BF00D6FCC0 /* wmf */,
			);
			name = vcl;
			sourceTree = SOURCE_ROOT;
		};
		BE0899121860D78B0021A679 /* app */ = {
			isa = PBXGroup;
			children = (
				BE0898E81860D42B0021A679 /* brand.cxx */,
				BE0898E91860D42B0021A679 /* dbggui.cxx */,
				BE0898EA1860D42B0021A679 /* dndhelp.cxx */,
				BE0898EB1860D42B0021A679 /* help.cxx */,
				BE0898EC1860D42B0021A679 /* i18nhelp.cxx */,
				BE6DC8FD19D9AF6100AFB393 /* IconThemeInfo.cxx */,
				BE6DC8FE19D9AF6100AFB393 /* IconThemeScanner.cxx */,
				BE6DC8FF19D9AF6100AFB393 /* IconThemeSelector.cxx */,
				BE0898EE1860D42B0021A679 /* salvtables.cxx */,
				BE0898EF1860D42B0021A679 /* session.cxx */,
				BE0898F01860D42B0021A679 /* settings.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 = SOURCE_ROOT;
		};
		BE0899131860F6100021A679 /* quartz */ = {
			isa = PBXGroup;
			children = (
				BE0899141860F6450021A679 /* ctfonts.cxx */,
				BE0899161860F6450021A679 /* salbmp.cxx */,
				BE0899171860F6450021A679 /* salgdi.cxx */,
				BE0899181860F6450021A679 /* salgdicommon.cxx */,
				BE08991B1860F6450021A679 /* salvd.cxx */,
				BE08991C1860F6450021A679 /* utils.cxx */,
			);
			name = quartz;
			sourceTree = SOURCE_ROOT;
		};
		BE35B53818868ECD001B7439 /* ios */ = {
			isa = PBXGroup;
			children = (
				BE35B53918868EFD001B7439 /* dummies.cxx */,
				BE35B53A18868EFD001B7439 /* iosinst.cxx */,
			);
			name = ios;
			sourceTree = SOURCE_ROOT;
		};
		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 = SOURCE_ROOT;
		};
		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 */,
				BE35B5521886C50A001B7439 /* dibtools.cxx */,
				BE35B5531886C50A001B7439 /* embeddedfontshelper.cxx */,
				BE35B5541886C50A001B7439 /* extoutdevdata.cxx */,
				BE35B5561886C50A001B7439 /* gdimetafiletools.cxx */,
				BE35B5571886C50A001B7439 /* gdimtf.cxx */,
				BE35B5581886C50A001B7439 /* gfxlink.cxx */,
				BE35B5591886C50A001B7439 /* gradient.cxx */,
				BE35B55A1886C50A001B7439 /* graph.cxx */,
				BE35B55B1886C50A001B7439 /* graphictools.cxx */,
				BE35B55C1886C50A001B7439 /* hatch.cxx */,
				BE35B55F1886C50A001B7439 /* impanmvw.cxx */,
				BE35B5601886C50A001B7439 /* impbmp.cxx */,
				BE35B5621886C50A001B7439 /* impgraph.cxx */,
				BE35B5651886C50A001B7439 /* impvect.cxx */,
				BE35B5661886C50A001B7439 /* jobset.cxx */,
				BE35B5671886C50A001B7439 /* lineinfo.cxx */,
				BE35B5681886C50A001B7439 /* mapmod.cxx */,
				BE35B5691886C50A001B7439 /* metaact.cxx */,
				BE35B56B1886C50A001B7439 /* octree.cxx */,
				BE35B56C1886C50A001B7439 /* oldprintadaptor.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 = SOURCE_ROOT;
		};
		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 = SOURCE_ROOT;
		};
		BE35B5A6189051F7001B7439 /* sfx2 */ = {
			isa = PBXGroup;
			children = (
				BE55B0DD18D9AB1600950228 /* appl */,
				BE55B0C418D9AAE300950228 /* control */,
			);
			name = sfx2;
			sourceTree = SOURCE_ROOT;
		};
		BE55B06E18D96F5B00950228 /* sdr */ = {
			isa = PBXGroup;
			children = (
				BE55B06F18D96FB000950228 /* displayinfo.cxx */,
				BE55B07018D96FB000950228 /* objectcontact.cxx */,
				BE55B07118D96FB000950228 /* objectcontactofobjlistpainter.cxx */,
				BE55B07218D96FB000950228 /* objectcontactofpageview.cxx */,
				BE55B07318D96FB000950228 /* sdrmediawindow.cxx */,
				BE55B07418D96FB000950228 /* viewcontact.cxx */,
				BE55B07518D96FB000950228 /* viewcontactofe3d.cxx */,
				BE55B07618D96FB000950228 /* viewcontactofe3dcube.cxx */,
				BE55B07718D96FB000950228 /* viewcontactofe3dextrude.cxx */,
				BE55B07818D96FB000950228 /* viewcontactofe3dlathe.cxx */,
				BE55B07918D96FB000950228 /* viewcontactofe3dpolygon.cxx */,
				BE55B07A18D96FB000950228 /* viewcontactofe3dscene.cxx */,
				BE55B07B18D96FB000950228 /* viewcontactofe3dsphere.cxx */,
				BE55B07C18D96FB000950228 /* viewcontactofgraphic.cxx */,
				BE55B07D18D96FB000950228 /* viewcontactofgroup.cxx */,
				BE55B07E18D96FB000950228 /* viewcontactofmasterpagedescriptor.cxx */,
				BE55B08018D96FB000950228 /* viewcontactofpageobj.cxx */,
				BE55B08118D96FB000950228 /* viewcontactofsdrcaptionobj.cxx */,
				BE55B08218D96FB000950228 /* viewcontactofsdrcircobj.cxx */,
				BE55B08318D96FB000950228 /* viewcontactofsdredgeobj.cxx */,
				BE55B08418D96FB000950228 /* viewcontactofsdrmeasureobj.cxx */,
				BE55B08518D96FB000950228 /* viewcontactofsdrmediaobj.cxx */,
				BE55B08618D96FB000950228 /* viewcontactofsdrobj.cxx */,
				BE55B08718D96FB000950228 /* viewcontactofsdrobjcustomshape.cxx */,
				BE55B08818D96FB000950228 /* viewcontactofsdrole2obj.cxx */,
				BE55B08918D96FB000950228 /* viewcontactofsdrpage.cxx */,
				BE55B08A18D96FB000950228 /* viewcontactofsdrpathobj.cxx */,
				BE55B08B18D96FB000950228 /* viewcontactofsdrrectobj.cxx */,
				BE55B08C18D96FB000950228 /* viewcontactoftextobj.cxx */,
				BE55B08D18D96FB000950228 /* viewcontactofunocontrol.cxx */,
				BE55B08E18D96FB000950228 /* viewcontactofvirtobj.cxx */,
				BE55B08F18D96FB000950228 /* viewobjectcontact.cxx */,
				BE55B09018D96FB000950228 /* viewobjectcontactofe3d.cxx */,
				BE55B09118D96FB000950228 /* viewobjectcontactofe3dscene.cxx */,
				BE55B09218D96FB000950228 /* viewobjectcontactofgraphic.cxx */,
				BE55B09318D96FB000950228 /* viewobjectcontactofgroup.cxx */,
				BE55B09418D96FB000950228 /* viewobjectcontactofmasterpagedescriptor.cxx */,
				BE55B09518D96FB000950228 /* viewobjectcontactofpageobj.cxx */,
				BE55B09618D96FB000950228 /* viewobjectcontactofsdrmediaobj.cxx */,
				BE55B09718D96FB000950228 /* viewobjectcontactofsdrobj.cxx */,
				BE55B09818D96FB000950228 /* viewobjectcontactofsdrole2obj.cxx */,
				BE55B09918D96FB000950228 /* viewobjectcontactofsdrpage.cxx */,
				BE55B09A18D96FB000950228 /* viewobjectcontactofunocontrol.cxx */,
				BE55B09B18D96FB000950228 /* viewobjectcontactredirector.cxx */,
			);
			name = sdr;
			sourceTree = SOURCE_ROOT;
		};
		BE55B09C18D97DCC00950228 /* layout */ = {
			isa = PBXGroup;
			children = (
				BE55B09D18D97E2700950228 /* anchoreddrawobject.cxx */,
				BE55B09E18D97E2700950228 /* anchoredobject.cxx */,
				BE55B09F18D97E2700950228 /* atrfrm.cxx */,
				BE55B0A018D97E2700950228 /* calcmove.cxx */,
				BE55B0A118D97E2700950228 /* colfrm.cxx */,
				BE55B0A218D97E2700950228 /* dbg_lay.cxx */,
				BE55B0A318D97E2700950228 /* dumpfilter.cxx */,
				BE55B0A418D97E2700950228 /* findfrm.cxx */,
				BE55B0A518D97E2700950228 /* flowfrm.cxx */,
				BE55B0A618D97E2700950228 /* fly.cxx */,
				BE55B0A718D97E2700950228 /* flycnt.cxx */,
				BE55B0A818D97E2700950228 /* flyincnt.cxx */,
				BE55B0A918D97E2700950228 /* flylay.cxx */,
				BE55B0AA18D97E2700950228 /* flypos.cxx */,
				BE55B0AB18D97E2700950228 /* frmtool.cxx */,
				BE55B0AC18D97E2700950228 /* ftnfrm.cxx */,
				BE55B0AD18D97E2700950228 /* hffrm.cxx */,
				BE55B0AE18D97E2700950228 /* layact.cxx */,
				BE55B0AF18D97E2700950228 /* laycache.cxx */,
				BE55B0B018D97E2700950228 /* layouter.cxx */,
				BE55B0B118D97E2700950228 /* movedfwdfrmsbyobjpos.cxx */,
				BE55B0B218D97E2700950228 /* newfrm.cxx */,
				BE55B0B318D97E2700950228 /* objectformatter.cxx */,
				BE55B0B418D97E2700950228 /* objectformatterlayfrm.cxx */,
				BE55B0B518D97E2700950228 /* objectformattertxtfrm.cxx */,
				BE55B0B618D97E2700950228 /* objstmpconsiderwrapinfl.cxx */,
				BE55B0B718D97E2700950228 /* pagechg.cxx */,
				BE55B0B818D97E2700950228 /* pagedesc.cxx */,
				BE55B0B918D97E2700950228 /* paintfrm.cxx */,
				BE55B0BA18D97E2700950228 /* sectfrm.cxx */,
				BE55B0BB18D97E2700950228 /* softpagebreak.cxx */,
				BE55B0BC18D97E2700950228 /* sortedobjs.cxx */,
				BE55B0BD18D97E2700950228 /* ssfrm.cxx */,
				BE55B0BE18D97E2700950228 /* swselectionlist.cxx */,
				BE55B0BF18D97E2700950228 /* tabfrm.cxx */,
				BE55B0C018D97E2700950228 /* trvlfrm.cxx */,
				BE55B0C118D97E2700950228 /* unusedf.cxx */,
				BE55B0C218D97E2700950228 /* virtoutp.cxx */,
				BE55B0C318D97E2700950228 /* wsfrm.cxx */,
			);
			name = layout;
			sourceTree = SOURCE_ROOT;
		};
		BE55B0C418D9AAE300950228 /* control */ = {
			isa = PBXGroup;
			children = (
				BE55B0C518D9AB0A00950228 /* bindings.cxx */,
				BE55B0C618D9AB0A00950228 /* ctrlitem.cxx */,
				BE55B0C718D9AB0A00950228 /* dispatch.cxx */,
				BE55B0C818D9AB0A00950228 /* minfitem.cxx */,
				BE55B0C918D9AB0A00950228 /* msg.cxx */,
				BE55B0CA18D9AB0A00950228 /* msgpool.cxx */,
				BE35B5A71890520E001B7439 /* objface.cxx */,
				BE55B0CC18D9AB0A00950228 /* recentdocsview.cxx */,
				BE55B0CD18D9AB0A00950228 /* recentdocsviewitem.cxx */,
				BE55B0CE18D9AB0A00950228 /* request.cxx */,
				BE55B0CF18D9AB0A00950228 /* sfxstatuslistener.cxx */,
				BE55B0D018D9AB0A00950228 /* shell.cxx */,
				BE55B0D118D9AB0A00950228 /* sorgitm.cxx */,
				BE55B0D218D9AB0A00950228 /* statcach.cxx */,
				BE55B0D418D9AB0A00950228 /* templatecontaineritem.cxx */,
				BE55B0D518D9AB0A00950228 /* templatelocalview.cxx */,
				BE55B0D718D9AB0A00950228 /* templatesearchview.cxx */,
				BE55B0D818D9AB0A00950228 /* templateviewitem.cxx */,
				BE55B0D918D9AB0A00950228 /* thumbnailview.cxx */,
				BE55B0DA18D9AB0A00950228 /* thumbnailviewacc.cxx */,
				BE55B0DB18D9AB0A00950228 /* thumbnailviewitem.cxx */,
				BE55B0DC18D9AB0A00950228 /* unoctitm.cxx */,
			);
			name = control;
			sourceTree = SOURCE_ROOT;
		};
		BE55B0DD18D9AB1600950228 /* appl */ = {
			isa = PBXGroup;
			children = (
				BE55B0DE18D9AB5400950228 /* app.cxx */,
				BE55B0DF18D9AB5400950228 /* appbas.cxx */,
				BE55B0E018D9AB5400950228 /* appbaslib.cxx */,
				BE55B0E118D9AB5400950228 /* appcfg.cxx */,
				BE55B0E218D9AB5400950228 /* appchild.cxx */,
				BE55B0E318D9AB5400950228 /* appdata.cxx */,
				BE55B0E418D9AB5400950228 /* appdde.cxx */,
				BE55B0E518D9AB5400950228 /* appdispatchprovider.cxx */,
				BE55B0E618D9AB5400950228 /* appinit.cxx */,
				BE55B0E718D9AB5400950228 /* appmain.cxx */,
				BE55B0E818D9AB5400950228 /* appmisc.cxx */,
				BE55B0E918D9AB5400950228 /* appopen.cxx */,
				BE55B0EA18D9AB5400950228 /* appquit.cxx */,
				BE55B0EB18D9AB5400950228 /* appreg.cxx */,
				BE55B0EC18D9AB5400950228 /* appserv.cxx */,
				BE55B0ED18D9AB5400950228 /* appuno.cxx */,
				BE55B0EE18D9AB5400950228 /* childwin.cxx */,
				BE55B0EF18D9AB5400950228 /* fileobj.cxx */,
				BE55B0F018D9AB5400950228 /* fwkhelper.cxx */,
				BE55B0F118D9AB5400950228 /* helpdispatch.cxx */,
				BE55B0F218D9AB5400950228 /* helpinterceptor.cxx */,
				BE55B0F318D9AB5400950228 /* imagemgr.cxx */,
				BE55B0F418D9AB5400950228 /* imestatuswindow.cxx */,
				BE55B0F518D9AB5400950228 /* impldde.cxx */,
				BE55B0F618D9AB5400950228 /* linkmgr2.cxx */,
				BE55B0F718D9AB5400950228 /* linksrc.cxx */,
				BE55B0F818D9AB5400950228 /* lnkbase2.cxx */,
				BE55B0F918D9AB5400950228 /* macroloader.cxx */,
				BE55B0FA18D9AB5400950228 /* module.cxx */,
				BE55B0FB18D9AB5400950228 /* newhelp.cxx */,
				BE55B0FC18D9AB5400950228 /* opengrf.cxx */,
				BE55B0FD18D9AB5400950228 /* openuriexternally.cxx */,
				BE55B0FF18D9AB5400950228 /* sfxhelp.cxx */,
				BE55B10018D9AB5400950228 /* sfxpicklist.cxx */,
				BE55B10118D9AB5400950228 /* shutdownicon.cxx */,
				BE55B10218D9AB5400950228 /* shutdowniconaqua.mm */,
				BE55B10318D9AB5400950228 /* workwin.cxx */,
				BE55B10418D9AB5400950228 /* xpackcreator.cxx */,
			);
			name = appl;
			sourceTree = SOURCE_ROOT;
		};
		BE55B10518DAD85E00950228 /* cppu */ = {
			isa = PBXGroup;
			children = (
				BE55B10618DAD89800950228 /* compat.cxx */,
				BE55B10718DAD89800950228 /* cppu_opt.cxx */,
			);
			name = cppu;
			sourceTree = SOURCE_ROOT;
		};
		BE55B10818DB673300950228 /* oox */ = {
			isa = PBXGroup;
			children = (
				BE55B10918DB674E00950228 /* drawingml */,
			);
			name = oox;
			sourceTree = SOURCE_ROOT;
		};
		BE55B10918DB674E00950228 /* drawingml */ = {
			isa = PBXGroup;
			children = (
				BE55B10A18DB67A900950228 /* chart */,
				BE55B10B18DB67A900950228 /* clrscheme.cxx */,
				BE55B10C18DB67A900950228 /* clrschemecontext.cxx */,
				BE55B10D18DB67A900950228 /* color.cxx */,
				BE55B10E18DB67A900950228 /* colorchoicecontext.cxx */,
				BE55B10F18DB67A900950228 /* connectorshapecontext.cxx */,
				BE55B11018DB67A900950228 /* customshapegeometry.cxx */,
				BE55B11718DB67A900950228 /* customshapeproperties.cxx */,
				BE55B11918DB67A900950228 /* diagram */,
				BE55B11A18DB67A900950228 /* drawingmltypes.cxx */,
				BE55B11B18DB67A900950228 /* effectproperties.cxx */,
				BE55B11C18DB67A900950228 /* effectpropertiescontext.cxx */,
				BE55B11D18DB67A900950228 /* embeddedwavaudiofile.cxx */,
				BE55B11E18DB67A900950228 /* fillproperties.cxx */,
				BE55B11F18DB67A900950228 /* fillpropertiesgroupcontext.cxx */,
				BE55B12018DB67A900950228 /* graphicshapecontext.cxx */,
				BE55B12118DB67A900950228 /* guidcontext.cxx */,
				BE55B12218DB67A900950228 /* hyperlinkcontext.cxx */,
				BE55B12318DB67A900950228 /* lineproperties.cxx */,
				BE55B12418DB67A900950228 /* linepropertiescontext.cxx */,
				BE55B12518DB67A900950228 /* objectdefaultcontext.cxx */,
				BE55B12618DB67A900950228 /* scene3dcontext.cxx */,
				BE55B12718DB67A900950228 /* shape.cxx */,
				BE55B12818DB67A900950228 /* shape3dproperties.cxx */,
				BE55B12918DB67A900950228 /* shapecontext.cxx */,
				BE55B12A18DB67A900950228 /* shapegroupcontext.cxx */,
				BE55B12B18DB67A900950228 /* shapepropertiescontext.cxx */,
				BE55B12C18DB67A900950228 /* shapepropertymap.cxx */,
				BE55B12D18DB67A900950228 /* shapestylecontext.cxx */,
				BE55B12E18DB67A900950228 /* spdefcontext.cxx */,
				BE55B12F18DB67A900950228 /* table */,
				BE55B13018DB67A900950228 /* textbody.cxx */,
				BE55B13118DB67A900950228 /* textbodycontext.cxx */,
				BE55B13218DB67A900950228 /* textbodyproperties.cxx */,
				BE55B13318DB67A900950228 /* textbodypropertiescontext.cxx */,
				BE55B13418DB67A900950228 /* textcharacterproperties.cxx */,
				BE55B13518DB67A900950228 /* textcharacterpropertiescontext.cxx */,
				BE55B13618DB67A900950228 /* texteffectscontext.cxx */,
				BE55B13718DB67A900950228 /* textfield.cxx */,
				BE55B13818DB67A900950228 /* textfieldcontext.cxx */,
				BE55B13918DB67A900950228 /* textfont.cxx */,
				BE55B13A18DB67A900950228 /* textliststyle.cxx */,
				BE55B13B18DB67A900950228 /* textliststylecontext.cxx */,
				BE55B13C18DB67A900950228 /* textparagraph.cxx */,
				BE55B13D18DB67A900950228 /* textparagraphproperties.cxx */,
				BE55B13E18DB67A900950228 /* textparagraphpropertiescontext.cxx */,
				BE55B13F18DB67A900950228 /* textrun.cxx */,
				BE55B14018DB67A900950228 /* textspacingcontext.cxx */,
				BE55B14118DB67A900950228 /* textspacingcontext.hxx */,
				BE55B14218DB67A900950228 /* texttabstoplistcontext.cxx */,
				BE55B14318DB67A900950228 /* texttabstoplistcontext.hxx */,
				BE55B14418DB67A900950228 /* theme.cxx */,
				BE55B14518DB67A900950228 /* themeelementscontext.cxx */,
				BE55B14618DB67A900950228 /* themefragmenthandler.cxx */,
				BE55B14718DB67A900950228 /* transform2dcontext.cxx */,
			);
			name = drawingml;
			sourceTree = SOURCE_ROOT;
		};
		BE55B14818DB6DC200950228 /* customshapes */ = {
			isa = PBXGroup;
			children = (
				BE55B14918DB6DE700950228 /* EnhancedCustomShape2d.cxx */,
				BE55B14A18DB6DE700950228 /* EnhancedCustomShape3d.cxx */,
				BE55B14B18DB6DE700950228 /* EnhancedCustomShapeEngine.cxx */,
				BE55B14C18DB6DE700950228 /* EnhancedCustomShapeFontWork.cxx */,
				BE55B14D18DB6DE700950228 /* EnhancedCustomShapeFunctionParser.cxx */,
				BE55B14E18DB6DE700950228 /* EnhancedCustomShapeGeometry.cxx */,
				BE55B14F18DB6DE700950228 /* EnhancedCustomShapeHandle.cxx */,
				BE55B15018DB6DE700950228 /* EnhancedCustomShapeTypeNames.cxx */,
			);
			name = customshapes;
			sourceTree = SOURCE_ROOT;
		};
		BE6DC8EB19D9A66B00AFB393 /* desktop */ = {
			isa = PBXGroup;
			children = (
				BE6DC8EC19D9A6AD00AFB393 /* app */,
			);
			name = desktop;
			sourceTree = SOURCE_ROOT;
		};
		BE6DC8EC19D9A6AD00AFB393 /* app */ = {
			isa = PBXGroup;
			children = (
				BE6DC8ED19D9A6E500AFB393 /* app.cxx */,
				BE6DC8EE19D9A6E500AFB393 /* appinit.cxx */,
				BE6DC8EF19D9A6E500AFB393 /* check_ext_deps.cxx */,
				BE6DC8F019D9A6E500AFB393 /* cmdlineargs.cxx */,
				BE6DC8F119D9A6E500AFB393 /* cmdlinehelp.cxx */,
				BE6DC8F319D9A6E500AFB393 /* desktopcontext.cxx */,
				BE6DC8F419D9A6E500AFB393 /* desktopcontext.hxx */,
				BE6DC8F519D9A6E500AFB393 /* desktopresid.cxx */,
				BE6DC8F619D9A6E500AFB393 /* dispatchwatcher.cxx */,
				BE6DC8F719D9A6E500AFB393 /* langselect.cxx */,
				BE6DC8F819D9A6E500AFB393 /* lockfile2.cxx */,
				BE6DC8F919D9A6E500AFB393 /* main.c */,
				BE6DC8FA19D9A6E500AFB393 /* officeipcthread.cxx */,
				BE6DC8FB19D9A6E500AFB393 /* sofficemain.cxx */,
				BE6DC8FC19D9A6E500AFB393 /* userinstall.cxx */,
			);
			name = app;
			sourceTree = SOURCE_ROOT;
		};
		BE6DC90019D9B50C00AFB393 /* rtl */ = {
			isa = PBXGroup;
			children = (
				BE6DC90119D9B55E00AFB393 /* alloc_arena.cxx */,
				BE6DC90219D9B55E00AFB393 /* alloc_cache.cxx */,
				BE6DC90319D9B55E00AFB393 /* alloc_fini.cxx */,
				BE6DC90419D9B55E00AFB393 /* alloc_global.cxx */,
				BE6DC90519D9B55E00AFB393 /* bootstrap.cxx */,
				BE6DC90619D9B55E00AFB393 /* byteseq.cxx */,
				BE6DC90719D9B55E00AFB393 /* cipher.cxx */,
				BE6DC90819D9B55E00AFB393 /* cmdargs.cxx */,
				BE6DC90919D9B55E00AFB393 /* crc.cxx */,
				BE6DC90A19D9B55E00AFB393 /* digest.cxx */,
				BE6DC90B19D9B55E00AFB393 /* hash.cxx */,
				BE6DC90C19D9B55E00AFB393 /* locale.cxx */,
				BE6DC90E19D9B55E00AFB393 /* math.cxx */,
				BE6DC90F19D9B55E00AFB393 /* random.cxx */,
				BE6DC91019D9B55E00AFB393 /* rtl_process.cxx */,
				BE6DC91119D9B55E00AFB393 /* strbuf.cxx */,
				BE6DC91219D9B55E00AFB393 /* strimp.cxx */,
				BE6DC91319D9B55E00AFB393 /* string.cxx */,
				BE6DC91419D9B55E00AFB393 /* strtmpl.cxx */,
				BE6DC91519D9B55E00AFB393 /* unload.cxx */,
				BE6DC91619D9B55E00AFB393 /* uri.cxx */,
				BE6DC91719D9B55E00AFB393 /* ustrbuf.cxx */,
				BE6DC91819D9B55E00AFB393 /* ustring.cxx */,
				BE6DC91919D9B55E00AFB393 /* uuid.cxx */,
			);
			name = rtl;
			sourceTree = SOURCE_ROOT;
		};
		BE6DC91A19D9B57200AFB393 /* all */ = {
			isa = PBXGroup;
			children = (
				BE6DC91B19D9B59400AFB393 /* compat.cxx */,
				BE6DC91C19D9B59400AFB393 /* debugbase.cxx */,
				BE6DC91E19D9B59400AFB393 /* loadmodulerelative.cxx */,
				BE6DC91F19D9B59400AFB393 /* log.cxx */,
				BE6DC92019D9B59400AFB393 /* utility.cxx */,
			);
			name = all;
			sourceTree = SOURCE_ROOT;
		};
		BE6DC92119D9B59D00AFB393 /* unx */ = {
			isa = PBXGroup;
			children = (
				BE6DC92219D9B5DD00AFB393 /* backtrace.c */,
				BE6DC92319D9B5DD00AFB393 /* conditn.cxx */,
				BE6DC92419D9B5DD00AFB393 /* file_error_transl.cxx */,
				BE6DC92519D9B5DD00AFB393 /* file_misc.cxx */,
				BE6DC92619D9B5DD00AFB393 /* file_path_helper.cxx */,
				BE6DC92719D9B5DD00AFB393 /* file_stat.cxx */,
				BE6DC92819D9B5DD00AFB393 /* file_url.cxx */,
				BE6DC92919D9B5DD00AFB393 /* file_volume.cxx */,
				BE6DC92A19D9B5DD00AFB393 /* file.cxx */,
				BE6DC92D19D9B5DD00AFB393 /* module.cxx */,
				BE6DC93019D9B5DD00AFB393 /* osxlocale.cxx */,
				BE6DC93119D9B5DD00AFB393 /* pipe.cxx */,
				BE6DC93219D9B5DD00AFB393 /* process_impl.cxx */,
				BE6DC93319D9B5DD00AFB393 /* process.cxx */,
				BE6DC93419D9B5DD00AFB393 /* profile.cxx */,
				BE6DC93619D9B5DD00AFB393 /* salinit.cxx */,
				BE6DC93719D9B5DD00AFB393 /* security.cxx */,
				BE6DC93B19D9B5DD00AFB393 /* tempfile.cxx */,
				BE6DC93E19D9B5DD00AFB393 /* uunxapi.cxx */,
				BE6DC93F19D9B5DD00AFB393 /* uunxapi.mm */,
			);
			name = unx;
			sourceTree = SOURCE_ROOT;
		};
		BE6F3D66192E283300D6FCC0 /* outdev */ = {
			isa = PBXGroup;
			children = (
				BE6F3D67192E286B00D6FCC0 /* bitmap.cxx */,
				BE6F3D68192E286B00D6FCC0 /* clipping.cxx */,
				BE6F3D69192E286B00D6FCC0 /* curvedshapes.cxx */,
				BE6F3D6A192E286B00D6FCC0 /* font.cxx */,
				BE6F3D6B192E286B00D6FCC0 /* gradient.cxx */,
				BE6F3D6C192E286B00D6FCC0 /* hatch.cxx */,
				BE6F3D6D192E286B00D6FCC0 /* line.cxx */,
				BE6F3D6E192E286B00D6FCC0 /* map.cxx */,
				BE6F3D6F192E286B00D6FCC0 /* mask.cxx */,
				BE6F3D70192E286B00D6FCC0 /* nativecontrols.cxx */,
				BE6F3D71192E286B00D6FCC0 /* outdev.cxx */,
				BE6F3D72192E286B00D6FCC0 /* outdevstate.cxx */,
				BE6F3D73192E286B00D6FCC0 /* pixel.cxx */,
				BE6F3D74192E286B00D6FCC0 /* polygon.cxx */,
				BE6F3D75192E286B00D6FCC0 /* polyline.cxx */,
				BE6F3D76192E286B00D6FCC0 /* rect.cxx */,
				BE6F3D77192E286B00D6FCC0 /* text.cxx */,
				BE6F3D78192E286B00D6FCC0 /* textline.cxx */,
				BE6F3D79192E286B00D6FCC0 /* transparent.cxx */,
				BE6F3D7A192E286B00D6FCC0 /* wallpaper.cxx */,
			);
			name = outdev;
			sourceTree = SOURCE_ROOT;
		};
		BE6F3D7B192E287400D6FCC0 /* filter */ = {
			isa = PBXGroup;
			children = (
				BE6F3D7C192E28B300D6FCC0 /* FilterConfigCache.cxx */,
				BE6F3D7D192E28B300D6FCC0 /* FilterConfigItem.cxx */,
				BE6F3D7E192E28B300D6FCC0 /* graphicfilter.cxx */,
				BE6F3D7F192E28B300D6FCC0 /* graphicfilter2.cxx */,
				BE6F3D80192E28B300D6FCC0 /* GraphicNativeMetadata.cxx */,
				BE6F3D81192E28B300D6FCC0 /* GraphicNativeTransform.cxx */,
				BE6F3D82192E28B300D6FCC0 /* sgfbram.cxx */,
				BE6F3D83192E28B300D6FCC0 /* sgvmain.cxx */,
				BE6F3D84192E28B300D6FCC0 /* sgvspln.cxx */,
				BE6F3D85192E28B300D6FCC0 /* sgvtext.cxx */,
			);
			name = filter;
			sourceTree = SOURCE_ROOT;
		};
		BE6F3D86192E28BF00D6FCC0 /* wmf */ = {
			isa = PBXGroup;
			children = (
				BE6F3D87192E28E400D6FCC0 /* emfwr.cxx */,
				BE6F3D88192E28E400D6FCC0 /* enhwmf.cxx */,
				BE6F3D89192E28E400D6FCC0 /* winmtf.cxx */,
				BE6F3D8A192E28E400D6FCC0 /* winwmf.cxx */,
				BE6F3D8B192E28E400D6FCC0 /* wmf.cxx */,
				BE6F3D8C192E28E400D6FCC0 /* wmfwr.cxx */,
			);
			name = wmf;
			sourceTree = SOURCE_ROOT;
		};
		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 */,
				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 = SOURCE_ROOT;
		};
		BE82BD6918218E2E00A447B5 = {
			isa = PBXGroup;
			children = (
				BE82BD7C18218E2E00A447B5 /* Supporting Files */,
				BE03BF8F18F9641D00620DC7 /* External library sources */,
				BE0898E61860D3CD0021A679 /* LibreOffice source files */,
				BE82BD7B18218E2E00A447B5 /* Prototype */,
				BEEEF9681860A21F00FBDE67 /* Resources */,
				BE82BD7418218E2E00A447B5 /* Frameworks */,
				BE82BD7318218E2E00A447B5 /* Products */,
			);
			sourceTree = "<group>";
		};
		BE82BD7318218E2E00A447B5 /* Products */ = {
			isa = PBXGroup;
			children = (
				BE82BD7218218E2E00A447B5 /* Prototype.app */,
			);
			name = Products;
			sourceTree = SOURCE_ROOT;
		};
		BE82BD7418218E2E00A447B5 /* Frameworks */ = {
			isa = PBXGroup;
			children = (
				BED2594018F6B89000C94C72 /* MobileCoreServices.framework */,
				BED2593E18F6B87900C94C72 /* ImageIO.framework */,
				BE82BD7518218E2E00A447B5 /* Foundation.framework */,
				BE82BD7718218E2E00A447B5 /* CoreGraphics.framework */,
				BE82BD7918218E2E00A447B5 /* UIKit.framework */,
			);
			name = Frameworks;
			sourceTree = SOURCE_ROOT;
		};
		BE82BD7B18218E2E00A447B5 /* Prototype */ = {
			isa = PBXGroup;
			children = (
				BECAB371186054DE00F814F9 /* lo.mm */,
				399857421E5631FC00F2DA60 /* lo.h */,
				BE82BD8418218E2E00A447B5 /* AppDelegate.h */,
				BE82BD8518218E2E00A447B5 /* AppDelegate.m */,
				BE82BD8A18218E2E00A447B5 /* ViewController.h */,
				BE82BD8B18218E2E00A447B5 /* ViewController.m */,
				BE82BD8D18218E2E00A447B5 /* Assets.xcassets */,
			);
			path = Prototype;
			sourceTree = SOURCE_ROOT;
		};
		BE82BD7C18218E2E00A447B5 /* Supporting Files */ = {
			isa = PBXGroup;
			children = (
				399857431E56322300F2DA60 /* en.lproj */,
				BEDB0F08185B7537009A6F26 /* lo.xcconfig */,
				BE82BD7D18218E2E00A447B5 /* Info.plist */,
				BE82BD7E18218E2E00A447B5 /* InfoPlist.strings */,
				BE82BD8118218E2E00A447B5 /* main.m */,
				BE82BD8318218E2E00A447B5 /* Prefix.pch */,
			);
			name = "Supporting Files";
			path = Prototype;
			sourceTree = SOURCE_ROOT;
		};
		BE82C38818C752760050EB79 /* sal */ = {
			isa = PBXGroup;
			children = (
				BE6DC91A19D9B57200AFB393 /* all */,
				BE6DC90019D9B50C00AFB393 /* rtl */,
				BE6DC92119D9B59D00AFB393 /* unx */,
			);
			name = sal;
			sourceTree = SOURCE_ROOT;
		};
		BE82C42718CA17A60050EB79 /* svx */ = {
			isa = PBXGroup;
			children = (
				BE55B14818DB6DC200950228 /* customshapes */,
				BE55B06E18D96F5B00950228 /* sdr */,
				BE82C42818CA184E0050EB79 /* svdraw */,
			);
			name = svx;
			sourceTree = SOURCE_ROOT;
		};
		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 = SOURCE_ROOT;
		};
		BE82C47118CA18D70050EB79 /* drawinglayer */ = {
			isa = PBXGroup;
			children = (
				BE82C48118CA19660050EB79 /* primitive2d */,
				BE82C47218CA18F60050EB79 /* processor2d */,
			);
			name = drawinglayer;
			sourceTree = SOURCE_ROOT;
		};
		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 = SOURCE_ROOT;
		};
		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 = SOURCE_ROOT;
		};
		BE82C4B918CDBC5B0050EB79 /* sw */ = {
			isa = PBXGroup;
			children = (
				BE7C277118D1DDC500C4908C /* doc */,
				BE55B09C18D97DCC00950228 /* layout */,
				BE82C4BA18CDBCB00050EB79 /* view */,
			);
			name = sw;
			sourceTree = SOURCE_ROOT;
		};
		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 = SOURCE_ROOT;
		};
		BE82C4C318CE6D860050EB79 /* window */ = {
			isa = PBXGroup;
			children = (
				BE82C4C418CE6DBE0050EB79 /* abstdlg.cxx */,
				BE82C4C518CE6DBE0050EB79 /* accel.cxx */,
				BE82C4C618CE6DBE0050EB79 /* accmgr.cxx */,
				BE82C4C718CE6DBE0050EB79 /* brdwin.cxx */,
				BE82C4C818CE6DBE0050EB79 /* btndlg.cxx */,
				BE82C4C918CE6DBE0050EB79 /* builder.cxx */,
				BE82C4CA18CE6DBE0050EB79 /* commandevent.cxx */,
				BE82C4CB18CE6DBE0050EB79 /* cursor.cxx */,
				BE82C4CC18CE6DBE0050EB79 /* decoview.cxx */,
				BE82C4CD18CE6DBE0050EB79 /* dialog.cxx */,
				BE82C4CE18CE6DBE0050EB79 /* dlgctrl.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 */,
				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 = SOURCE_ROOT;
		};
		BE9931C3199A17E90008A364 /* comphelper */ = {
			isa = PBXGroup;
			children = (
				BE9931C4199A182D0008A364 /* misc */,
			);
			name = comphelper;
			sourceTree = SOURCE_ROOT;
		};
		BE9931C4199A182D0008A364 /* misc */ = {
			isa = PBXGroup;
			children = (
				BE9931C5199A185D0008A364 /* accessiblecomponenthelper.cxx */,
				BE9931C6199A185D0008A364 /* accessiblecontexthelper.cxx */,
				BE9931C7199A185D0008A364 /* accessibleeventnotifier.cxx */,
				BE9931C8199A185D0008A364 /* accessiblekeybindinghelper.cxx */,
				BE9931C9199A185D0008A364 /* accessibleselectionhelper.cxx */,
				BE9931CA199A185D0008A364 /* accessibletexthelper.cxx */,
				BE9931CB199A185D0008A364 /* accessiblewrapper.cxx */,
				BE9931CC199A185D0008A364 /* accimplaccess.cxx */,
				BE9931CD199A185D0008A364 /* anycompare.cxx */,
				BE9931CE199A185D0008A364 /* anytostring.cxx */,
				BE9931CF199A185D0008A364 /* asyncnotification.cxx */,
				BE9931D0199A185D0008A364 /* comphelper_module.cxx */,
				BE9931D1199A185D0008A364 /* comphelper_services.cxx */,
				BE9931D2199A185D0008A364 /* componentbase.cxx */,
				BE9931D3199A185D0008A364 /* componentmodule.cxx */,
				BE9931D4199A185D0008A364 /* configuration.cxx */,
				BE9931D5199A185D0008A364 /* configurationhelper.cxx */,
				BE9931D6199A185D0008A364 /* docpasswordhelper.cxx */,
				BE9931D7199A185D0008A364 /* docpasswordrequest.cxx */,
				BE9931D8199A185D0008A364 /* documentinfo.cxx */,
				BE9931D9199A185D0008A364 /* documentiologring.cxx */,
				BE9931DA199A185D0008A364 /* evtlistenerhlp.cxx */,
				BE9931DB199A185D0008A364 /* evtmethodhelper.cxx */,
				BE9931DD199A185D0008A364 /* instancelocker.cxx */,
				BE9931DE199A185D0008A364 /* interaction.cxx */,
				BE9931DF199A185D0008A364 /* listenernotification.cxx */,
				BE9931E0199A185D0008A364 /* logging.cxx */,
				BE9931E1199A185D0008A364 /* mimeconfighelper.cxx */,
				BE9931E2199A185D0008A364 /* namedvaluecollection.cxx */,
				BE9931E3199A185D0008A364 /* numberedcollection.cxx */,
				BE9931E4199A185D0008A364 /* numbers.cxx */,
				BE9931E5199A185D0008A364 /* officeresourcebundle.cxx */,
				BE9931E6199A185D0008A364 /* officerestartmanager.cxx */,
				BE9931E7199A185D0008A364 /* proxyaggregation.cxx */,
				BE9931E8199A185D0008A364 /* random.cxx */,
				BE9931E9199A185D0008A364 /* scopeguard.cxx */,
				BE9931EA199A185D0008A364 /* SelectionMultiplex.cxx */,
				BE9931EB199A185D0008A364 /* sequence.cxx */,
				BE9931EC199A185D0008A364 /* sequenceashashmap.cxx */,
				BE9931ED199A185D0008A364 /* servicedecl.cxx */,
				BE9931EE199A185D0008A364 /* serviceinfohelper.cxx */,
				BE9931EF199A185D0008A364 /* sharedmutex.cxx */,
				BE9931F0199A185D0008A364 /* solarmutex.cxx */,
				BE9931F1199A185D0008A364 /* stillreadwriteinteraction.cxx */,
				BE9931F2199A185D0008A364 /* storagehelper.cxx */,
				BE9931F3199A185D0008A364 /* string.cxx */,
				BE9931F4199A185D0008A364 /* synchronousdispatch.cxx */,
				BE9931F5199A185D0008A364 /* syntaxhighlight.cxx */,
				BE9931F6199A185D0008A364 /* types.cxx */,
				BE9931F7199A185D0008A364 /* weak.cxx */,
				BE9931F8199A185D0008A364 /* weakeventlistener.cxx */,
			);
			name = misc;
			sourceTree = SOURCE_ROOT;
		};
		BE9931F9199A1B750008A364 /* xmlsecurity */ = {
			isa = PBXGroup;
			children = (
				BE9931FB199A1BC20008A364 /* xmlsec */,
			);
			name = xmlsecurity;
			sourceTree = SOURCE_ROOT;
		};
		BE9931FA199A1B920008A364 /* nss */ = {
			isa = PBXGroup;
			children = (
				BE9931FC199A1BF00008A364 /* ciphercontext.cxx */,
				BE9931FD199A1BF00008A364 /* digestcontext.cxx */,
				BE9931FE199A1BF00008A364 /* nssinitializer.cxx */,
				BE9931FF199A1BF00008A364 /* sanextension_nssimpl.cxx */,
				BE993200199A1BF00008A364 /* secerror.cxx */,
				BE993201199A1BF00008A364 /* securityenvironment_nssimpl.cxx */,
				BE993202199A1BF00008A364 /* seinitializer_nssimpl.cxx */,
				BE993203199A1BF00008A364 /* x509certificate_nssimpl.cxx */,
				BE993204199A1BF00008A364 /* xmlencryption_nssimpl.cxx */,
				BE993205199A1BF00008A364 /* xmlsecuritycontext_nssimpl.cxx */,
				BE993206199A1BF00008A364 /* xmlsignature_nssimpl.cxx */,
				BE993207199A1BF00008A364 /* xsec_nss.cxx */,
			);
			name = nss;
			sourceTree = SOURCE_ROOT;
		};
		BE9931FB199A1BC20008A364 /* xmlsec */ = {
			isa = PBXGroup;
			children = (
				BE9931FA199A1B920008A364 /* nss */,
			);
			name = xmlsec;
			sourceTree = SOURCE_ROOT;
		};
		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 = SOURCE_ROOT;
		};
		BEAB8058194603EC0083BBB6 /* control */ = {
			isa = PBXGroup;
			children = (
				BEAB8059194604400083BBB6 /* button.cxx */,
				BEAB805A194604400083BBB6 /* combobox.cxx */,
				BEAB805B194604400083BBB6 /* ctrl.cxx */,
				BEAB805C194604400083BBB6 /* edit.cxx */,
				BEAB805D194604400083BBB6 /* field.cxx */,
				BEAB805E194604400083BBB6 /* field2.cxx */,
				BEAB805F194604400083BBB6 /* fixed.cxx */,
				BEAB8060194604400083BBB6 /* fixedhyper.cxx */,
				BEAB8061194604400083BBB6 /* group.cxx */,
				BEAB8063194604400083BBB6 /* imgctrl.cxx */,
				BEAB8064194604400083BBB6 /* longcurr.cxx */,
				BEAB8066194604400083BBB6 /* menubtn.cxx */,
				BEAB8067194604400083BBB6 /* morebtn.cxx */,
				BEAB8068194604400083BBB6 /* prgsbar.cxx */,
				BEAB8069194604400083BBB6 /* quickselectionengine.cxx */,
				BEAB806A194604400083BBB6 /* scrbar.cxx */,
				BEAB806B194604400083BBB6 /* slider.cxx */,
				BEAB806C194604400083BBB6 /* spinbtn.cxx */,
				BEAB806D194604400083BBB6 /* spinfld.cxx */,
				BEAB806E194604400083BBB6 /* tabctrl.cxx */,
				BEAB806F194604400083BBB6 /* throbber.cxx */,
			);
			name = control;
			sourceTree = SOURCE_ROOT;
		};
		BEAB807019460A920083BBB6 /* edit */ = {
			isa = PBXGroup;
			children = (
				BEAB807119460AE10083BBB6 /* textdata.cxx */,
				BEAB807219460AE10083BBB6 /* textdoc.cxx */,
				BEAB807319460AE10083BBB6 /* texteng.cxx */,
				BEAB807419460AE10083BBB6 /* textundo.cxx */,
				BEAB807519460AE10083BBB6 /* textview.cxx */,
				BEAB807619460AE10083BBB6 /* txtattr.cxx */,
				BEAB807719460AE10083BBB6 /* vclmedit.cxx */,
				BEAB807819460AE10083BBB6 /* xtextedt.cxx */,
			);
			name = edit;
			sourceTree = SOURCE_ROOT;
		};
		BECA60D9191026BA00B24A7E /* framework */ = {
			isa = PBXGroup;
			children = (
				BECA60DA191026FA00B24A7E /* services */,
			);
			name = framework;
			sourceTree = SOURCE_ROOT;
		};
		BECA60DA191026FA00B24A7E /* services */ = {
			isa = PBXGroup;
			children = (
				BECA60DB1910271F00B24A7E /* autorecovery.cxx */,
				BECA60DC1910271F00B24A7E /* ContextChangeEventMultiplexer.cxx */,
				BECA60DD1910271F00B24A7E /* desktop.cxx */,
				BECA60DE1910271F00B24A7E /* dispatchhelper.cxx */,
				BECA60DF1910271F00B24A7E /* frame.cxx */,
				BECA60E01910271F00B24A7E /* mediatypedetectionhelper.cxx */,
				BECA60E11910271F00B24A7E /* modulemanager.cxx */,
				BECA60E21910271F00B24A7E /* pathsettings.cxx */,
				BECA60E31910271F00B24A7E /* sessionlistener.cxx */,
				BECA60E41910271F00B24A7E /* substitutepathvars.cxx */,
				BECA60E61910271F00B24A7E /* taskcreatorsrv.cxx */,
				BECA60E71910271F00B24A7E /* uriabbreviation.cxx */,
				BECA60E81910271F00B24A7E /* urltransformer.cxx */,
			);
			name = services;
			sourceTree = SOURCE_ROOT;
		};
		BED531661937389B00830918 /* cppcanvas */ = {
			isa = PBXGroup;
			children = (
				BED53167193738B000830918 /* mtfrenderer */,
			);
			name = cppcanvas;
			sourceTree = SOURCE_ROOT;
		};
		BED53167193738B000830918 /* mtfrenderer */ = {
			isa = PBXGroup;
			children = (
				BED53168193738D800830918 /* bitmapaction.cxx */,
				BED53169193738D800830918 /* cachedprimitivebase.cxx */,
				BED5316A193738D800830918 /* emfplus.cxx */,
				BED5316B193738D800830918 /* implrenderer.cxx */,
				BED5316C193738D800830918 /* lineaction.cxx */,
				BED5316D193738D800830918 /* mtftools.cxx */,
				BED5316E193738D800830918 /* pointaction.cxx */,
				BED5316F193738D800830918 /* polypolyaction.cxx */,
				BED53170193738D800830918 /* textaction.cxx */,
				BED53171193738D800830918 /* transparencygroupaction.cxx */,
			);
			name = mtfrenderer;
			sourceTree = SOURCE_ROOT;
		};
		BEEEF9681860A21F00FBDE67 /* Resources */ = {
			isa = PBXGroup;
			children = (
				BEEEF96D1860A82900FBDE67 /* fundamentalrc */,
				BEEEF96E1860A82900FBDE67 /* offapi.rdb */,
				BEEEF96F1860A82900FBDE67 /* oovbaapi.rdb */,
				BEEE02CE1860ABB700FBDE67 /* program */,
				BEEEF9AA1860A82900FBDE67 /* rc */,
				BEEEF9AB1860A82900FBDE67 /* services.rdb */,
				BEEE02CF1860ABB700FBDE67 /* share */,
				BEEEFDFD1860A82C00FBDE67 /* udkapi.rdb */,
				BEEEFDFE1860A82C00FBDE67 /* unorc */,
				BEEE02D01860ABB700FBDE67 /* services */,
			);
			name = Resources;
			path = Prototype;
			sourceTree = SOURCE_ROOT;
		};
/* End PBXGroup section */

/* Begin PBXNativeTarget section */
		BE82BD7118218E2E00A447B5 /* Prototype */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = BE82BDA418218E2E00A447B5 /* Build configuration list for PBXNativeTarget "Prototype" */;
			buildPhases = (
				BE82BD6E18218E2E00A447B5 /* Sources */,
				BE82BD6F18218E2E00A447B5 /* Frameworks */,
				BE82BD7018218E2E00A447B5 /* Resources */,
			);
			buildRules = (
			);
			dependencies = (
			);
			name = Prototype;
			productName = Prototype;
			productReference = BE82BD7218218E2E00A447B5 /* Prototype.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 "Prototype" */;
			compatibilityVersion = "Xcode 3.2";
			developmentRegion = English;
			hasScannedForEncodings = 0;
			knownRegions = (
				en,
				Base,
			);
			mainGroup = BE82BD6918218E2E00A447B5;
			productRefGroup = BE82BD7318218E2E00A447B5 /* Products */;
			projectDirPath = "";
			projectRoot = "";
			targets = (
				BE82BD7118218E2E00A447B5 /* Prototype */,
			);
		};
/* End PBXProject section */

/* Begin PBXResourcesBuildPhase section */
		BE82BD7018218E2E00A447B5 /* Resources */ = {
			isa = PBXResourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				BE82BD8E18218E2E00A447B5 /* Assets.xcassets in Resources */,
				BE82BD8018218E2E00A447B5 /* InfoPlist.strings in Resources */,
				BEEEFE011860A89100FBDE67 /* fundamentalrc in Resources */,
				BEEEFE021860A89100FBDE67 /* offapi.rdb in Resources */,
				399857461E56322300F2DA60 /* InfoPlist.strings 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 /* udkapi.rdb in Resources */,
				BEEEFE071860A89100FBDE67 /* unorc in Resources */,
				BEEE02D31860ABDB00FBDE67 /* services in Resources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXResourcesBuildPhase section */

/* Begin PBXSourcesBuildPhase section */
		BE82BD6E18218E2E00A447B5 /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				BECAB372186054DE00F814F9 /* lo.mm 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 */
		399857441E56322300F2DA60 /* InfoPlist.strings */ = {
			isa = PBXVariantGroup;
			children = (
				399857451E56322300F2DA60 /* en */,
			);
			name = InfoPlist.strings;
			sourceTree = "<group>";
		};
		BE82BD7E18218E2E00A447B5 /* InfoPlist.strings */ = {
			isa = PBXVariantGroup;
			children = (
				BE82BD7F18218E2E00A447B5 /* en */,
			);
			name = InfoPlist.strings;
			path = Prototype;
			sourceTree = SOURCE_ROOT;
		};
/* 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",
					"$(LO_WORKDIR)/UnpackedTarball/icu/source/common",
					"$(LO_WORKDIR)/ios/generated",
				);
				"HEADER_SEARCH_PATHS[arch=*]" = (
					"$(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",
					"$(LO_WORKDIR)/UnpackedTarball/icu/source/common",
					"$(LO_WORKDIR)/ios/generated",
				);
				IPHONEOS_DEPLOYMENT_TARGET = 9.3;
				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",
					"$(LO_WORKDIR)/UnpackedTarball/icu/source/common",
				);
				IPHONEOS_DEPLOYMENT_TARGET = 9.3;
				ONLY_ACTIVE_ARCH = YES;
				OTHER_LDFLAGS = "$(LINK_LDFLAGS)";
				SDKROOT = iphoneos;
				TARGETED_DEVICE_FAMILY = 2;
				VALIDATE_PRODUCT = YES;
			};
			name = Release;
		};
		BE82BDA518218E2E00A447B5 /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ARCHS = (
					i386,
					"$(ARCHS_STANDARD)",
				);
				ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
				ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
				ENABLE_BITCODE = NO;
				GCC_PRECOMPILE_PREFIX_HEADER = YES;
				GCC_PREFIX_HEADER = Prototype/Prefix.pch;
				INFOPLIST_FILE = Prototype/Info.plist;
				PRODUCT_NAME = "$(TARGET_NAME)";
				VALID_ARCHS = "i386 $(ARCHS_STANDARD)";
				WRAPPER_EXTENSION = app;
			};
			name = Debug;
		};
		BE82BDA618218E2E00A447B5 /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ARCHS = (
					i386,
					"$(ARCHS_STANDARD)",
				);
				ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
				ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
				ENABLE_BITCODE = NO;
				GCC_PRECOMPILE_PREFIX_HEADER = YES;
				GCC_PREFIX_HEADER = Prototype/Prefix.pch;
				INFOPLIST_FILE = Prototype/Info.plist;
				PRODUCT_NAME = "$(TARGET_NAME)";
				VALID_ARCHS = "i386 $(ARCHS_STANDARD)";
				WRAPPER_EXTENSION = app;
			};
			name = Release;
		};
/* End XCBuildConfiguration section */

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