summaryrefslogtreecommitdiffstats
path: root/osx/soffice.xcodeproj/project.pbxproj
blob: cb8298358d22579eec3e336cd6a41e5648becd81 (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
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
// !$*UTF8*$!
{
	archiveVersion = 1;
	classes = {
	};
	objectVersion = 46;
	objects = {

/* Begin PBXFileReference section */
		BE017B8725AF2ABE00244ED8 /* autostyl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = autostyl.cxx; path = ../sc/source/ui/docshell/autostyl.cxx; sourceTree = "<group>"; };
		BE017B8825AF2ABE00244ED8 /* servobj.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = servobj.cxx; path = ../sc/source/ui/docshell/servobj.cxx; sourceTree = "<group>"; };
		BE017B8925AF2ABE00244ED8 /* docsh4.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docsh4.cxx; path = ../sc/source/ui/docshell/docsh4.cxx; sourceTree = "<group>"; };
		BE017B8A25AF2ABE00244ED8 /* editable.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = editable.cxx; path = ../sc/source/ui/docshell/editable.cxx; sourceTree = "<group>"; };
		BE017B8B25AF2ABE00244ED8 /* docfunc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docfunc.cxx; path = ../sc/source/ui/docshell/docfunc.cxx; sourceTree = "<group>"; };
		BE017B8C25AF2ABE00244ED8 /* pagedata.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pagedata.cxx; path = ../sc/source/ui/docshell/pagedata.cxx; sourceTree = "<group>"; };
		BE017B8D25AF2ABE00244ED8 /* docsh3.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docsh3.cxx; path = ../sc/source/ui/docshell/docsh3.cxx; sourceTree = "<group>"; };
		BE017B8E25AF2ABE00244ED8 /* documentlinkmgr.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = documentlinkmgr.cxx; path = ../sc/source/ui/docshell/documentlinkmgr.cxx; sourceTree = "<group>"; };
		BE017B8F25AF2ABE00244ED8 /* tpstat.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tpstat.cxx; path = ../sc/source/ui/docshell/tpstat.cxx; sourceTree = "<group>"; };
		BE017B9025AF2ABE00244ED8 /* externalrefmgr.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = externalrefmgr.cxx; path = ../sc/source/ui/docshell/externalrefmgr.cxx; sourceTree = "<group>"; };
		BE017B9125AF2ABE00244ED8 /* datastream.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = datastream.cxx; path = ../sc/source/ui/docshell/datastream.cxx; sourceTree = "<group>"; };
		BE017B9225AF2ABE00244ED8 /* docsh6.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docsh6.cxx; path = ../sc/source/ui/docshell/docsh6.cxx; sourceTree = "<group>"; };
		BE017B9325AF2ABF00244ED8 /* arealink.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = arealink.cxx; path = ../sc/source/ui/docshell/arealink.cxx; sourceTree = "<group>"; };
		BE017B9425AF2ABF00244ED8 /* docshimp.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = docshimp.hxx; path = ../sc/source/ui/docshell/docshimp.hxx; sourceTree = "<group>"; };
		BE017B9525AF2ABF00244ED8 /* dbdocimp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dbdocimp.cxx; path = ../sc/source/ui/docshell/dbdocimp.cxx; sourceTree = "<group>"; };
		BE017B9625AF2ABF00244ED8 /* pntlock.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pntlock.cxx; path = ../sc/source/ui/docshell/pntlock.cxx; sourceTree = "<group>"; };
		BE017B9725AF2ABF00244ED8 /* docsh8.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docsh8.cxx; path = ../sc/source/ui/docshell/docsh8.cxx; sourceTree = "<group>"; };
		BE017B9825AF2ABF00244ED8 /* docsh.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docsh.cxx; path = ../sc/source/ui/docshell/docsh.cxx; sourceTree = "<group>"; };
		BE017B9925AF2ABF00244ED8 /* olinefun.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = olinefun.cxx; path = ../sc/source/ui/docshell/olinefun.cxx; sourceTree = "<group>"; };
		BE017B9A25AF2ABF00244ED8 /* docsh5.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docsh5.cxx; path = ../sc/source/ui/docshell/docsh5.cxx; sourceTree = "<group>"; };
		BE017B9B25AF2ABF00244ED8 /* impex.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = impex.cxx; path = ../sc/source/ui/docshell/impex.cxx; sourceTree = "<group>"; };
		BE017B9C25AF2ABF00244ED8 /* docsh2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docsh2.cxx; path = ../sc/source/ui/docshell/docsh2.cxx; sourceTree = "<group>"; };
		BE017B9D25AF2ABF00244ED8 /* dbdocfun.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dbdocfun.cxx; path = ../sc/source/ui/docshell/dbdocfun.cxx; sourceTree = "<group>"; };
		BE017B9E25AF2ABF00244ED8 /* tablink.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tablink.cxx; path = ../sc/source/ui/docshell/tablink.cxx; sourceTree = "<group>"; };
		BE017B9F25AF2ABF00244ED8 /* sizedev.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sizedev.cxx; path = ../sc/source/ui/docshell/sizedev.cxx; sourceTree = "<group>"; };
		BE017BA025AF2ABF00244ED8 /* macromgr.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = macromgr.cxx; path = ../sc/source/ui/docshell/macromgr.cxx; sourceTree = "<group>"; };
		BE017BA125AF2ABF00244ED8 /* docfuncutil.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docfuncutil.cxx; path = ../sc/source/ui/docshell/docfuncutil.cxx; sourceTree = "<group>"; };
		BE017BA325AF2B3B00244ED8 /* formatsh.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = formatsh.cxx; path = ../sc/source/ui/view/formatsh.cxx; sourceTree = "<group>"; };
		BE017BA425AF2B3B00244ED8 /* cellsh2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cellsh2.cxx; path = ../sc/source/ui/view/cellsh2.cxx; sourceTree = "<group>"; };
		BE017BA525AF2B3B00244ED8 /* imapwrap.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = imapwrap.cxx; path = ../sc/source/ui/view/imapwrap.cxx; sourceTree = "<group>"; };
		BE017BA625AF2B3B00244ED8 /* prevwsh2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = prevwsh2.cxx; path = ../sc/source/ui/view/prevwsh2.cxx; sourceTree = "<group>"; };
		BE017BA725AF2B3B00244ED8 /* tabvwshb.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tabvwshb.cxx; path = ../sc/source/ui/view/tabvwshb.cxx; sourceTree = "<group>"; };
		BE017BA825AF2B3B00244ED8 /* dbfunc3.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dbfunc3.cxx; path = ../sc/source/ui/view/dbfunc3.cxx; sourceTree = "<group>"; };
		BE017BA925AF2B3B00244ED8 /* cellsh.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cellsh.cxx; path = ../sc/source/ui/view/cellsh.cxx; sourceTree = "<group>"; };
		BE017BAA25AF2B3B00244ED8 /* notemark.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = notemark.cxx; path = ../sc/source/ui/view/notemark.cxx; sourceTree = "<group>"; };
		BE017BAB25AF2B3B00244ED8 /* drawvie3.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = drawvie3.cxx; path = ../sc/source/ui/view/drawvie3.cxx; sourceTree = "<group>"; };
		BE017BAC25AF2B3B00244ED8 /* tabvwshd.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tabvwshd.cxx; path = ../sc/source/ui/view/tabvwshd.cxx; sourceTree = "<group>"; };
		BE017BAD25AF2B3B00244ED8 /* editsh.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = editsh.cxx; path = ../sc/source/ui/view/editsh.cxx; sourceTree = "<group>"; };
		BE017BAE25AF2B3B00244ED8 /* cliputil.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cliputil.cxx; path = ../sc/source/ui/view/cliputil.cxx; sourceTree = "<group>"; };
		BE017BAF25AF2B3B00244ED8 /* tabvwsh3.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tabvwsh3.cxx; path = ../sc/source/ui/view/tabvwsh3.cxx; sourceTree = "<group>"; };
		BE017BB025AF2B3B00244ED8 /* output3.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = output3.cxx; path = ../sc/source/ui/view/output3.cxx; sourceTree = "<group>"; };
		BE017BB125AF2B3B00244ED8 /* gridwin_dbgutil.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gridwin_dbgutil.cxx; path = ../sc/source/ui/view/gridwin_dbgutil.cxx; sourceTree = "<group>"; };
		BE017BB225AF2B3B00244ED8 /* cellsh4.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cellsh4.cxx; path = ../sc/source/ui/view/cellsh4.cxx; sourceTree = "<group>"; };
		BE017BB325AF2B3B00244ED8 /* tabvwsh.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tabvwsh.cxx; path = ../sc/source/ui/view/tabvwsh.cxx; sourceTree = "<group>"; };
		BE017BB425AF2B3B00244ED8 /* tabvwsh5.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tabvwsh5.cxx; path = ../sc/source/ui/view/tabvwsh5.cxx; sourceTree = "<group>"; };
		BE017BB525AF2B3B00244ED8 /* tabview.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tabview.cxx; path = ../sc/source/ui/view/tabview.cxx; sourceTree = "<group>"; };
		BE017BB625AF2B3B00244ED8 /* tabvwshc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tabvwshc.cxx; path = ../sc/source/ui/view/tabvwshc.cxx; sourceTree = "<group>"; };
		BE017BB725AF2B3B00244ED8 /* viewfunc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewfunc.cxx; path = ../sc/source/ui/view/viewfunc.cxx; sourceTree = "<group>"; };
		BE017BB825AF2B3B00244ED8 /* tabvwshe.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tabvwshe.cxx; path = ../sc/source/ui/view/tabvwshe.cxx; sourceTree = "<group>"; };
		BE017BB925AF2B3C00244ED8 /* output.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = output.cxx; path = ../sc/source/ui/view/output.cxx; sourceTree = "<group>"; };
		BE017BBA25AF2B3C00244ED8 /* gridmerg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gridmerg.cxx; path = ../sc/source/ui/view/gridmerg.cxx; sourceTree = "<group>"; };
		BE017BBB25AF2B3C00244ED8 /* dbfunc4.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dbfunc4.cxx; path = ../sc/source/ui/view/dbfunc4.cxx; sourceTree = "<group>"; };
		BE017BBC25AF2B3C00244ED8 /* drawvie4.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = drawvie4.cxx; path = ../sc/source/ui/view/drawvie4.cxx; sourceTree = "<group>"; };
		BE017BBD25AF2B3C00244ED8 /* tabsplit.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tabsplit.cxx; path = ../sc/source/ui/view/tabsplit.cxx; sourceTree = "<group>"; };
		BE017BBE25AF2B3C00244ED8 /* tabview3.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tabview3.cxx; path = ../sc/source/ui/view/tabview3.cxx; sourceTree = "<group>"; };
		BE017BBF25AF2B3C00244ED8 /* viewfun2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewfun2.cxx; path = ../sc/source/ui/view/viewfun2.cxx; sourceTree = "<group>"; };
		BE017BC025AF2B3C00244ED8 /* prevloc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = prevloc.cxx; path = ../sc/source/ui/view/prevloc.cxx; sourceTree = "<group>"; };
		BE017BC125AF2B3C00244ED8 /* tabvwsh4.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tabvwsh4.cxx; path = ../sc/source/ui/view/tabvwsh4.cxx; sourceTree = "<group>"; };
		BE017BC225AF2B3C00244ED8 /* pivotsh.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pivotsh.cxx; path = ../sc/source/ui/view/pivotsh.cxx; sourceTree = "<group>"; };
		BE017BC325AF2B3C00244ED8 /* waitoff.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = waitoff.cxx; path = ../sc/source/ui/view/waitoff.cxx; sourceTree = "<group>"; };
		BE017BC425AF2B3C00244ED8 /* dbfunc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dbfunc.cxx; path = ../sc/source/ui/view/dbfunc.cxx; sourceTree = "<group>"; };
		BE017BC525AF2B3C00244ED8 /* tabview4.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tabview4.cxx; path = ../sc/source/ui/view/tabview4.cxx; sourceTree = "<group>"; };
		BE017BC625AF2B3C00244ED8 /* hintwin.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = hintwin.cxx; path = ../sc/source/ui/view/hintwin.cxx; sourceTree = "<group>"; };
		BE017BC725AF2B3C00244ED8 /* tabview5.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tabview5.cxx; path = ../sc/source/ui/view/tabview5.cxx; sourceTree = "<group>"; };
		BE017BC825AF2B3C00244ED8 /* tabvwshf.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tabvwshf.cxx; path = ../sc/source/ui/view/tabvwshf.cxx; sourceTree = "<group>"; };
		BE017BC925AF2B3C00244ED8 /* prevwsh.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = prevwsh.cxx; path = ../sc/source/ui/view/prevwsh.cxx; sourceTree = "<group>"; };
		BE017BCA25AF2B3C00244ED8 /* tabview2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tabview2.cxx; path = ../sc/source/ui/view/tabview2.cxx; sourceTree = "<group>"; };
		BE017BCB25AF2B3C00244ED8 /* tabvwsh8.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tabvwsh8.cxx; path = ../sc/source/ui/view/tabvwsh8.cxx; sourceTree = "<group>"; };
		BE017BCC25AF2B3C00244ED8 /* viewdata.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewdata.cxx; path = ../sc/source/ui/view/viewdata.cxx; sourceTree = "<group>"; };
		BE017BCD25AF2B3C00244ED8 /* viewfun5.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewfun5.cxx; path = ../sc/source/ui/view/viewfun5.cxx; sourceTree = "<group>"; };
		BE017BCE25AF2B3C00244ED8 /* drawview.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = drawview.cxx; path = ../sc/source/ui/view/drawview.cxx; sourceTree = "<group>"; };
		BE017BCF25AF2B3C00244ED8 /* output2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = output2.cxx; path = ../sc/source/ui/view/output2.cxx; sourceTree = "<group>"; };
		BE017BD025AF2B3C00244ED8 /* olinewin.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = olinewin.cxx; path = ../sc/source/ui/view/olinewin.cxx; sourceTree = "<group>"; };
		BE017BD125AF2B3C00244ED8 /* viewutil.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewutil.cxx; path = ../sc/source/ui/view/viewutil.cxx; sourceTree = "<group>"; };
		BE017BD225AF2B3C00244ED8 /* dbfunc2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dbfunc2.cxx; path = ../sc/source/ui/view/dbfunc2.cxx; sourceTree = "<group>"; };
		BE017BD325AF2B3D00244ED8 /* gridwin3.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gridwin3.cxx; path = ../sc/source/ui/view/gridwin3.cxx; sourceTree = "<group>"; };
		BE017BD425AF2B3D00244ED8 /* viewfun3.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewfun3.cxx; path = ../sc/source/ui/view/viewfun3.cxx; sourceTree = "<group>"; };
		BE017BD525AF2B3D00244ED8 /* cellsh3.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cellsh3.cxx; path = ../sc/source/ui/view/cellsh3.cxx; sourceTree = "<group>"; };
		BE017BD625AF2B3D00244ED8 /* drawutil.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = drawutil.cxx; path = ../sc/source/ui/view/drawutil.cxx; sourceTree = "<group>"; };
		BE017BD725AF2B3D00244ED8 /* gridwin4.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gridwin4.cxx; path = ../sc/source/ui/view/gridwin4.cxx; sourceTree = "<group>"; };
		BE017BD825AF2B3D00244ED8 /* scextopt.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = scextopt.cxx; path = ../sc/source/ui/view/scextopt.cxx; sourceTree = "<group>"; };
		BE017BD925AF2B3D00244ED8 /* cellsh1.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cellsh1.cxx; path = ../sc/source/ui/view/cellsh1.cxx; sourceTree = "<group>"; };
		BE017BDA25AF2B3D00244ED8 /* cellmergeoption.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cellmergeoption.cxx; path = ../sc/source/ui/view/cellmergeoption.cxx; sourceTree = "<group>"; };
		BE017BDB25AF2B3D00244ED8 /* tabvwsha.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tabvwsha.cxx; path = ../sc/source/ui/view/tabvwsha.cxx; sourceTree = "<group>"; };
		BE017BDC25AF2B3D00244ED8 /* hdrcont.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = hdrcont.cxx; path = ../sc/source/ui/view/hdrcont.cxx; sourceTree = "<group>"; };
		BE017BDD25AF2B3D00244ED8 /* printfun.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = printfun.cxx; path = ../sc/source/ui/view/printfun.cxx; sourceTree = "<group>"; };
		BE017BDE25AF2B3D00244ED8 /* colrowba.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = colrowba.cxx; path = ../sc/source/ui/view/colrowba.cxx; sourceTree = "<group>"; };
		BE017BDF25AF2B3D00244ED8 /* spelleng.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = spelleng.cxx; path = ../sc/source/ui/view/spelleng.cxx; sourceTree = "<group>"; };
		BE017BE025AF2B3D00244ED8 /* gridwin2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gridwin2.cxx; path = ../sc/source/ui/view/gridwin2.cxx; sourceTree = "<group>"; };
		BE017BE125AF2B3D00244ED8 /* overlayobject.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = overlayobject.cxx; path = ../sc/source/ui/view/overlayobject.cxx; sourceTree = "<group>"; };
		BE017BE225AF2B3D00244ED8 /* pfuncache.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pfuncache.cxx; path = ../sc/source/ui/view/pfuncache.cxx; sourceTree = "<group>"; };
		BE017BE325AF2B3D00244ED8 /* pgbrksh.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pgbrksh.cxx; path = ../sc/source/ui/view/pgbrksh.cxx; sourceTree = "<group>"; };
		BE017BE425AF2B3D00244ED8 /* auditsh.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = auditsh.cxx; path = ../sc/source/ui/view/auditsh.cxx; sourceTree = "<group>"; };
		BE017BE525AF2B3D00244ED8 /* tabvwsh2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tabvwsh2.cxx; path = ../sc/source/ui/view/tabvwsh2.cxx; sourceTree = "<group>"; };
		BE017BE625AF2B3D00244ED8 /* tabvwshg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tabvwshg.cxx; path = ../sc/source/ui/view/tabvwshg.cxx; sourceTree = "<group>"; };
		BE017BE725AF2B3D00244ED8 /* tabvwshh.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tabvwshh.cxx; path = ../sc/source/ui/view/tabvwshh.cxx; sourceTree = "<group>"; };
		BE017BE825AF2B3D00244ED8 /* select.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = select.cxx; path = ../sc/source/ui/view/select.cxx; sourceTree = "<group>"; };
		BE017BE925AF2B3D00244ED8 /* viewfun6.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewfun6.cxx; path = ../sc/source/ui/view/viewfun6.cxx; sourceTree = "<group>"; };
		BE017BEA25AF2B3D00244ED8 /* viewfun4.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewfun4.cxx; path = ../sc/source/ui/view/viewfun4.cxx; sourceTree = "<group>"; };
		BE017BEB25AF2B3D00244ED8 /* spellcheckcontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = spellcheckcontext.cxx; path = ../sc/source/ui/view/spellcheckcontext.cxx; sourceTree = "<group>"; };
		BE017BEC25AF2B3D00244ED8 /* tabvwsh9.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tabvwsh9.cxx; path = ../sc/source/ui/view/tabvwsh9.cxx; sourceTree = "<group>"; };
		BE017BED25AF2B3D00244ED8 /* viewfun7.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewfun7.cxx; path = ../sc/source/ui/view/viewfun7.cxx; sourceTree = "<group>"; };
		BE017BEE25AF2B3E00244ED8 /* tabcont.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tabcont.cxx; path = ../sc/source/ui/view/tabcont.cxx; sourceTree = "<group>"; };
		BE017BEF25AF2B3E00244ED8 /* gridwin.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gridwin.cxx; path = ../sc/source/ui/view/gridwin.cxx; sourceTree = "<group>"; };
		BE017BF025AF2B3E00244ED8 /* spelldialog.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = spelldialog.cxx; path = ../sc/source/ui/view/spelldialog.cxx; sourceTree = "<group>"; };
		BE017BF125AF2B3E00244ED8 /* reffact.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = reffact.cxx; path = ../sc/source/ui/view/reffact.cxx; sourceTree = "<group>"; };
		BE017BF225AF2B3E00244ED8 /* preview.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = preview.cxx; path = ../sc/source/ui/view/preview.cxx; sourceTree = "<group>"; };
		BE017BF325AF2B3E00244ED8 /* imapwrap.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = imapwrap.hxx; path = ../sc/source/ui/view/imapwrap.hxx; sourceTree = "<group>"; };
		BE017BF425AF2B3E00244ED8 /* invmerge.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = invmerge.cxx; path = ../sc/source/ui/view/invmerge.cxx; sourceTree = "<group>"; };
		BE017BF525AF2B3E00244ED8 /* gridwin5.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gridwin5.cxx; path = ../sc/source/ui/view/gridwin5.cxx; sourceTree = "<group>"; };
		BE017BF625AF2B3E00244ED8 /* selectionstate.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = selectionstate.cxx; path = ../sc/source/ui/view/selectionstate.cxx; sourceTree = "<group>"; };
		BE017BF825AF568900244ED8 /* solveroptions.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = solveroptions.cxx; path = ../sc/source/ui/miscdlgs/solveroptions.cxx; sourceTree = "<group>"; };
		BE017BF925AF568900244ED8 /* mtrindlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = mtrindlg.cxx; path = ../sc/source/ui/miscdlgs/mtrindlg.cxx; sourceTree = "<group>"; };
		BE017BFA25AF568900244ED8 /* linkarea.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = linkarea.cxx; path = ../sc/source/ui/miscdlgs/linkarea.cxx; sourceTree = "<group>"; };
		BE017BFB25AF568900244ED8 /* shtabdlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = shtabdlg.cxx; path = ../sc/source/ui/miscdlgs/shtabdlg.cxx; sourceTree = "<group>"; };
		BE017BFC25AF568900244ED8 /* inscodlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = inscodlg.cxx; path = ../sc/source/ui/miscdlgs/inscodlg.cxx; sourceTree = "<group>"; };
		BE017BFD25AF568A00244ED8 /* crdlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = crdlg.cxx; path = ../sc/source/ui/miscdlgs/crdlg.cxx; sourceTree = "<group>"; };
		BE017BFE25AF568A00244ED8 /* datafdlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = datafdlg.cxx; path = ../sc/source/ui/miscdlgs/datafdlg.cxx; sourceTree = "<group>"; };
		BE017BFF25AF568A00244ED8 /* highred.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = highred.cxx; path = ../sc/source/ui/miscdlgs/highred.cxx; sourceTree = "<group>"; };
		BE017C0025AF568A00244ED8 /* strindlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = strindlg.cxx; path = ../sc/source/ui/miscdlgs/strindlg.cxx; sourceTree = "<group>"; };
		BE017C0125AF568A00244ED8 /* scuiautofmt.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = scuiautofmt.cxx; path = ../sc/source/ui/miscdlgs/scuiautofmt.cxx; sourceTree = "<group>"; };
		BE017C0225AF568A00244ED8 /* datastreamdlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = datastreamdlg.cxx; path = ../sc/source/ui/miscdlgs/datastreamdlg.cxx; sourceTree = "<group>"; };
		BE017C0325AF568A00244ED8 /* autofmt.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = autofmt.cxx; path = ../sc/source/ui/miscdlgs/autofmt.cxx; sourceTree = "<group>"; };
		BE017C0425AF568A00244ED8 /* mergecellsdialog.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = mergecellsdialog.cxx; path = ../sc/source/ui/miscdlgs/mergecellsdialog.cxx; sourceTree = "<group>"; };
		BE017C0525AF568A00244ED8 /* solvrdlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = solvrdlg.cxx; path = ../sc/source/ui/miscdlgs/solvrdlg.cxx; sourceTree = "<group>"; };
		BE017C0625AF568A00244ED8 /* tabopdlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tabopdlg.cxx; path = ../sc/source/ui/miscdlgs/tabopdlg.cxx; sourceTree = "<group>"; };
		BE017C0725AF568A00244ED8 /* delcodlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = delcodlg.cxx; path = ../sc/source/ui/miscdlgs/delcodlg.cxx; sourceTree = "<group>"; };
		BE017C0825AF568A00244ED8 /* mvtabdlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = mvtabdlg.cxx; path = ../sc/source/ui/miscdlgs/mvtabdlg.cxx; sourceTree = "<group>"; };
		BE017C0925AF568A00244ED8 /* optsolver.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = optsolver.cxx; path = ../sc/source/ui/miscdlgs/optsolver.cxx; sourceTree = "<group>"; };
		BE017C0A25AF568A00244ED8 /* filldlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = filldlg.cxx; path = ../sc/source/ui/miscdlgs/filldlg.cxx; sourceTree = "<group>"; };
		BE017C0B25AF568A00244ED8 /* namecrea.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = namecrea.cxx; path = ../sc/source/ui/miscdlgs/namecrea.cxx; sourceTree = "<group>"; };
		BE017C0C25AF568A00244ED8 /* solverutil.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = solverutil.cxx; path = ../sc/source/ui/miscdlgs/solverutil.cxx; sourceTree = "<group>"; };
		BE017C0D25AF568A00244ED8 /* redcom.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = redcom.cxx; path = ../sc/source/ui/miscdlgs/redcom.cxx; sourceTree = "<group>"; };
		BE017C0E25AF568A00244ED8 /* textdlgs.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textdlgs.cxx; path = ../sc/source/ui/miscdlgs/textdlgs.cxx; sourceTree = "<group>"; };
		BE017C0F25AF568A00244ED8 /* anyrefdg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = anyrefdg.cxx; path = ../sc/source/ui/miscdlgs/anyrefdg.cxx; sourceTree = "<group>"; };
		BE017C1025AF568A00244ED8 /* inscldlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = inscldlg.cxx; path = ../sc/source/ui/miscdlgs/inscldlg.cxx; sourceTree = "<group>"; };
		BE017C1125AF568A00244ED8 /* dataproviderdlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dataproviderdlg.cxx; path = ../sc/source/ui/miscdlgs/dataproviderdlg.cxx; sourceTree = "<group>"; };
		BE017C1225AF568A00244ED8 /* groupdlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = groupdlg.cxx; path = ../sc/source/ui/miscdlgs/groupdlg.cxx; sourceTree = "<group>"; };
		BE017C1325AF568A00244ED8 /* lbseldlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = lbseldlg.cxx; path = ../sc/source/ui/miscdlgs/lbseldlg.cxx; sourceTree = "<group>"; };
		BE017C1425AF568A00244ED8 /* warnbox.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = warnbox.cxx; path = ../sc/source/ui/miscdlgs/warnbox.cxx; sourceTree = "<group>"; };
		BE017C1525AF568A00244ED8 /* tabbgcolordlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tabbgcolordlg.cxx; path = ../sc/source/ui/miscdlgs/tabbgcolordlg.cxx; sourceTree = "<group>"; };
		BE017C1625AF568A00244ED8 /* datatableview.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = datatableview.cxx; path = ../sc/source/ui/miscdlgs/datatableview.cxx; sourceTree = "<group>"; };
		BE017C1725AF568A00244ED8 /* crnrdlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = crnrdlg.cxx; path = ../sc/source/ui/miscdlgs/crnrdlg.cxx; sourceTree = "<group>"; };
		BE017C1825AF568B00244ED8 /* protectiondlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = protectiondlg.cxx; path = ../sc/source/ui/miscdlgs/protectiondlg.cxx; sourceTree = "<group>"; };
		BE017C1925AF568B00244ED8 /* acredlin.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = acredlin.cxx; path = ../sc/source/ui/miscdlgs/acredlin.cxx; sourceTree = "<group>"; };
		BE017C1A25AF568B00244ED8 /* delcldlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = delcldlg.cxx; path = ../sc/source/ui/miscdlgs/delcldlg.cxx; sourceTree = "<group>"; };
		BE017C1B25AF568B00244ED8 /* instbdlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = instbdlg.cxx; path = ../sc/source/ui/miscdlgs/instbdlg.cxx; sourceTree = "<group>"; };
		BE017C1C25AF568B00244ED8 /* sharedocdlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sharedocdlg.cxx; path = ../sc/source/ui/miscdlgs/sharedocdlg.cxx; sourceTree = "<group>"; };
		BE017C1D25AF568B00244ED8 /* retypepassdlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = retypepassdlg.cxx; path = ../sc/source/ui/miscdlgs/retypepassdlg.cxx; sourceTree = "<group>"; };
		BE017C1E25AF568B00244ED8 /* conflictsdlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = conflictsdlg.cxx; path = ../sc/source/ui/miscdlgs/conflictsdlg.cxx; sourceTree = "<group>"; };
		BE017C1F25AF568B00244ED8 /* simpref.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = simpref.cxx; path = ../sc/source/ui/miscdlgs/simpref.cxx; sourceTree = "<group>"; };
		BE017C2125AF57F800244ED8 /* colorpicker.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = colorpicker.cxx; path = ../cui/source/dialogs/colorpicker.cxx; sourceTree = "<group>"; };
		BE017C2225AF57F800244ED8 /* hldocntp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = hldocntp.cxx; path = ../cui/source/dialogs/hldocntp.cxx; sourceTree = "<group>"; };
		BE017C2325AF57F800244ED8 /* cuitbxform.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cuitbxform.cxx; path = ../cui/source/dialogs/cuitbxform.cxx; sourceTree = "<group>"; };
		BE017C2425AF57F800244ED8 /* SignSignatureLineDialog.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = SignSignatureLineDialog.cxx; path = ../cui/source/dialogs/SignSignatureLineDialog.cxx; sourceTree = "<group>"; };
		BE017C2525AF57F800244ED8 /* hlinettp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = hlinettp.cxx; path = ../cui/source/dialogs/hlinettp.cxx; sourceTree = "<group>"; };
		BE017C2625AF57F800244ED8 /* DiagramDialog.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = DiagramDialog.cxx; path = ../cui/source/dialogs/DiagramDialog.cxx; sourceTree = "<group>"; };
		BE017C2725AF57F800244ED8 /* insdlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = insdlg.cxx; path = ../cui/source/dialogs/insdlg.cxx; sourceTree = "<group>"; };
		BE017C2825AF57F800244ED8 /* about.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = about.cxx; path = ../cui/source/dialogs/about.cxx; sourceTree = "<group>"; };
		BE017C2925AF57F800244ED8 /* multipat.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = multipat.cxx; path = ../cui/source/dialogs/multipat.cxx; sourceTree = "<group>"; };
		BE017C2A25AF57F800244ED8 /* newtabledlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = newtabledlg.cxx; path = ../cui/source/dialogs/newtabledlg.cxx; sourceTree = "<group>"; };
		BE017C2B25AF57F800244ED8 /* linkdlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = linkdlg.cxx; path = ../cui/source/dialogs/linkdlg.cxx; sourceTree = "<group>"; };
		BE017C2C25AF57F800244ED8 /* pastedlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pastedlg.cxx; path = ../cui/source/dialogs/pastedlg.cxx; sourceTree = "<group>"; };
		BE017C2D25AF57F900244ED8 /* postdlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = postdlg.cxx; path = ../cui/source/dialogs/postdlg.cxx; sourceTree = "<group>"; };
		BE017C2E25AF57F900244ED8 /* hangulhanjadlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = hangulhanjadlg.cxx; path = ../cui/source/dialogs/hangulhanjadlg.cxx; sourceTree = "<group>"; };
		BE017C2F25AF57F900244ED8 /* hltpbase.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = hltpbase.cxx; path = ../cui/source/dialogs/hltpbase.cxx; sourceTree = "<group>"; };
		BE017C3025AF57F900244ED8 /* cuigaldlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cuigaldlg.cxx; path = ../cui/source/dialogs/cuigaldlg.cxx; sourceTree = "<group>"; };
		BE017C3125AF57F900244ED8 /* splitcelldlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = splitcelldlg.cxx; path = ../cui/source/dialogs/splitcelldlg.cxx; sourceTree = "<group>"; };
		BE017C3225AF57F900244ED8 /* hlmailtp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = hlmailtp.cxx; path = ../cui/source/dialogs/hlmailtp.cxx; sourceTree = "<group>"; };
		BE017C3325AF57F900244ED8 /* hldoctp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = hldoctp.cxx; path = ../cui/source/dialogs/hldoctp.cxx; sourceTree = "<group>"; };
		BE017C3425AF57F900244ED8 /* cuifmsearch.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cuifmsearch.cxx; path = ../cui/source/dialogs/cuifmsearch.cxx; sourceTree = "<group>"; };
		BE017C3525AF57F900244ED8 /* AdditionsDialog.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = AdditionsDialog.cxx; path = ../cui/source/dialogs/AdditionsDialog.cxx; sourceTree = "<group>"; };
		BE017C3625AF57F900244ED8 /* SignatureLineDialogBase.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = SignatureLineDialogBase.cxx; path = ../cui/source/dialogs/SignatureLineDialogBase.cxx; sourceTree = "<group>"; };
		BE017C3725AF57F900244ED8 /* thesdlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = thesdlg.cxx; path = ../cui/source/dialogs/thesdlg.cxx; sourceTree = "<group>"; };
		BE017C3825AF57F900244ED8 /* screenshotannotationdlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = screenshotannotationdlg.cxx; path = ../cui/source/dialogs/screenshotannotationdlg.cxx; sourceTree = "<group>"; };
		BE017C3925AF57F900244ED8 /* srchxtra.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = srchxtra.cxx; path = ../cui/source/dialogs/srchxtra.cxx; sourceTree = "<group>"; };
		BE017C3A25AF57F900244ED8 /* QrCodeGenDialog.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = QrCodeGenDialog.cxx; path = ../cui/source/dialogs/QrCodeGenDialog.cxx; sourceTree = "<group>"; };
		BE017C3B25AF57F900244ED8 /* cuicharmap.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cuicharmap.cxx; path = ../cui/source/dialogs/cuicharmap.cxx; sourceTree = "<group>"; };
		BE017C3C25AF57F900244ED8 /* cuigrfflt.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cuigrfflt.cxx; path = ../cui/source/dialogs/cuigrfflt.cxx; sourceTree = "<group>"; };
		BE017C3D25AF57F900244ED8 /* scriptdlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = scriptdlg.cxx; path = ../cui/source/dialogs/scriptdlg.cxx; sourceTree = "<group>"; };
		BE017C3E25AF57F900244ED8 /* zoom.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = zoom.cxx; path = ../cui/source/dialogs/zoom.cxx; sourceTree = "<group>"; };
		BE017C3F25AF57F900244ED8 /* signature-line-draw.svg */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = "signature-line-draw.svg"; path = "../cui/source/dialogs/signature-line-draw.svg"; sourceTree = "<group>"; };
		BE017C4025AF57F900244ED8 /* showcols.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = showcols.cxx; path = ../cui/source/dialogs/showcols.cxx; sourceTree = "<group>"; };
		BE017C4125AF57F900244ED8 /* SpellDialog.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = SpellDialog.cxx; path = ../cui/source/dialogs/SpellDialog.cxx; sourceTree = "<group>"; };
		BE017C4225AF57F900244ED8 /* cuihyperdlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cuihyperdlg.cxx; path = ../cui/source/dialogs/cuihyperdlg.cxx; sourceTree = "<group>"; };
		BE017C4325AF57F900244ED8 /* passwdomdlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = passwdomdlg.cxx; path = ../cui/source/dialogs/passwdomdlg.cxx; sourceTree = "<group>"; };
		BE017C4425AF57F900244ED8 /* hyphen.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = hyphen.cxx; path = ../cui/source/dialogs/hyphen.cxx; sourceTree = "<group>"; };
		BE017C4525AF57F900244ED8 /* signature-line.svg */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = "signature-line.svg"; path = "../cui/source/dialogs/signature-line.svg"; sourceTree = "<group>"; };
		BE017C4625AF57F900244ED8 /* SpellAttrib.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = SpellAttrib.hxx; path = ../cui/source/dialogs/SpellAttrib.hxx; sourceTree = "<group>"; };
		BE017C4725AF57F900244ED8 /* insrc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = insrc.cxx; path = ../cui/source/dialogs/insrc.cxx; sourceTree = "<group>"; };
		BE017C4825AF57F900244ED8 /* dlgname.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dlgname.cxx; path = ../cui/source/dialogs/dlgname.cxx; sourceTree = "<group>"; };
		BE017C4925AF57FA00244ED8 /* FontFeaturesDialog.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = FontFeaturesDialog.cxx; path = ../cui/source/dialogs/FontFeaturesDialog.cxx; sourceTree = "<group>"; };
		BE017C4A25AF57FA00244ED8 /* iconcdlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = iconcdlg.cxx; path = ../cui/source/dialogs/iconcdlg.cxx; sourceTree = "<group>"; };
		BE017C4B25AF57FA00244ED8 /* toolbarmodedlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = toolbarmodedlg.cxx; path = ../cui/source/dialogs/toolbarmodedlg.cxx; sourceTree = "<group>"; };
		BE017C4C25AF57FA00244ED8 /* cuiimapwnd.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cuiimapwnd.cxx; path = ../cui/source/dialogs/cuiimapwnd.cxx; sourceTree = "<group>"; };
		BE017C4D25AF57FA00244ED8 /* hlmarkwn.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = hlmarkwn.cxx; path = ../cui/source/dialogs/hlmarkwn.cxx; sourceTree = "<group>"; };
		BE017C4E25AF57FA00244ED8 /* SignatureLineDialog.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = SignatureLineDialog.cxx; path = ../cui/source/dialogs/SignatureLineDialog.cxx; sourceTree = "<group>"; };
		BE017C4F25AF57FA00244ED8 /* tipofthedaydlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tipofthedaydlg.cxx; path = ../cui/source/dialogs/tipofthedaydlg.cxx; sourceTree = "<group>"; };
		BE017C5025AF57FA00244ED8 /* sdrcelldlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sdrcelldlg.cxx; path = ../cui/source/dialogs/sdrcelldlg.cxx; sourceTree = "<group>"; };
		BE017C5325AFCC4300244ED8 /* formats.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = formats.cxx; path = ../sot/source/base/formats.cxx; sourceTree = "<group>"; };
		BE017C5425AFCC4300244ED8 /* object.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = object.cxx; path = ../sot/source/base/object.cxx; sourceTree = "<group>"; };
		BE017C5525AFCC4300244ED8 /* filelist.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = filelist.cxx; path = ../sot/source/base/filelist.cxx; sourceTree = "<group>"; };
		BE017C5625AFCC4300244ED8 /* exchange.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = exchange.cxx; path = ../sot/source/base/exchange.cxx; sourceTree = "<group>"; };
		BE026468237973D7008D3E52 /* viewshe3.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewshe3.cxx; path = ../sd/source/ui/view/viewshe3.cxx; sourceTree = "<group>"; };
		BE026469237973D7008D3E52 /* drtxtob.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = drtxtob.cxx; path = ../sd/source/ui/view/drtxtob.cxx; sourceTree = "<group>"; };
		BE02646A237973D7008D3E52 /* ViewShellBase.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ViewShellBase.cxx; path = ../sd/source/ui/view/ViewShellBase.cxx; sourceTree = "<group>"; };
		BE02646B237973D7008D3E52 /* drviewsj.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = drviewsj.cxx; path = ../sd/source/ui/view/drviewsj.cxx; sourceTree = "<group>"; };
		BE02646C237973D7008D3E52 /* ToolBarManager.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ToolBarManager.cxx; path = ../sd/source/ui/view/ToolBarManager.cxx; sourceTree = "<group>"; };
		BE02646D237973D7008D3E52 /* ViewShellHint.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ViewShellHint.cxx; path = ../sd/source/ui/view/ViewShellHint.cxx; sourceTree = "<group>"; };
		BE02646E237973D7008D3E52 /* ViewShellManager.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ViewShellManager.cxx; path = ../sd/source/ui/view/ViewShellManager.cxx; sourceTree = "<group>"; };
		BE02646F237973D7008D3E52 /* viewoverlaymanager.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewoverlaymanager.cxx; path = ../sd/source/ui/view/viewoverlaymanager.cxx; sourceTree = "<group>"; };
		BE026470237973D7008D3E52 /* WindowUpdater.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = WindowUpdater.cxx; path = ../sd/source/ui/view/WindowUpdater.cxx; sourceTree = "<group>"; };
		BE026471237973D7008D3E52 /* zoomlist.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = zoomlist.cxx; path = ../sd/source/ui/view/zoomlist.cxx; sourceTree = "<group>"; };
		BE026472237973D7008D3E52 /* drviewsi.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = drviewsi.cxx; path = ../sd/source/ui/view/drviewsi.cxx; sourceTree = "<group>"; };
		BE026473237973D7008D3E52 /* drviewsd.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = drviewsd.cxx; path = ../sd/source/ui/view/drviewsd.cxx; sourceTree = "<group>"; };
		BE026474237973D7008D3E52 /* OutlinerIterator.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = OutlinerIterator.cxx; path = ../sd/source/ui/view/OutlinerIterator.cxx; sourceTree = "<group>"; };
		BE026475237973D7008D3E52 /* ViewTabBar.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ViewTabBar.cxx; path = ../sd/source/ui/view/ViewTabBar.cxx; sourceTree = "<group>"; };
		BE026476237973D7008D3E52 /* drviewsa.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = drviewsa.cxx; path = ../sd/source/ui/view/drviewsa.cxx; sourceTree = "<group>"; };
		BE026477237973D7008D3E52 /* outlnvs2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = outlnvs2.cxx; path = ../sd/source/ui/view/outlnvs2.cxx; sourceTree = "<group>"; };
		BE026478237973D7008D3E52 /* OutlineViewShellBase.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = OutlineViewShellBase.cxx; path = ../sd/source/ui/view/OutlineViewShellBase.cxx; sourceTree = "<group>"; };
		BE026479237973D7008D3E52 /* tabcontr.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tabcontr.cxx; path = ../sd/source/ui/view/tabcontr.cxx; sourceTree = "<group>"; };
		BE02647A237973D7008D3E52 /* drviews1.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = drviews1.cxx; path = ../sd/source/ui/view/drviews1.cxx; sourceTree = "<group>"; };
		BE02647B237973D7008D3E52 /* ViewClipboard.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ViewClipboard.cxx; path = ../sd/source/ui/view/ViewClipboard.cxx; sourceTree = "<group>"; };
		BE02647C237973D7008D3E52 /* drviews6.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = drviews6.cxx; path = ../sd/source/ui/view/drviews6.cxx; sourceTree = "<group>"; };
		BE02647D237973D8008D3E52 /* drtxtob1.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = drtxtob1.cxx; path = ../sd/source/ui/view/drtxtob1.cxx; sourceTree = "<group>"; };
		BE02647E237973D8008D3E52 /* frmview.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = frmview.cxx; path = ../sd/source/ui/view/frmview.cxx; sourceTree = "<group>"; };
		BE02647F237973D8008D3E52 /* drviewsk.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = drviewsk.cxx; path = ../sd/source/ui/view/drviewsk.cxx; sourceTree = "<group>"; };
		BE026480237973D8008D3E52 /* drbezob.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = drbezob.cxx; path = ../sd/source/ui/view/drbezob.cxx; sourceTree = "<group>"; };
		BE026481237973D8008D3E52 /* sdview2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sdview2.cxx; path = ../sd/source/ui/view/sdview2.cxx; sourceTree = "<group>"; };
		BE026482237973D8008D3E52 /* sdview.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sdview.cxx; path = ../sd/source/ui/view/sdview.cxx; sourceTree = "<group>"; };
		BE026483237973D8008D3E52 /* drviews8.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = drviews8.cxx; path = ../sd/source/ui/view/drviews8.cxx; sourceTree = "<group>"; };
		BE026484237973D8008D3E52 /* Outliner.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Outliner.cxx; path = ../sd/source/ui/view/Outliner.cxx; sourceTree = "<group>"; };
		BE026485237973D8008D3E52 /* drviews3.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = drviews3.cxx; path = ../sd/source/ui/view/drviews3.cxx; sourceTree = "<group>"; };
		BE026486237973D8008D3E52 /* drviewsg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = drviewsg.cxx; path = ../sd/source/ui/view/drviewsg.cxx; sourceTree = "<group>"; };
		BE026487237973D8008D3E52 /* drviews5.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = drviews5.cxx; path = ../sd/source/ui/view/drviews5.cxx; sourceTree = "<group>"; };
		BE026488237973D8008D3E52 /* drviews4.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = drviews4.cxx; path = ../sd/source/ui/view/drviews4.cxx; sourceTree = "<group>"; };
		BE026489237973D8008D3E52 /* sdview5.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sdview5.cxx; path = ../sd/source/ui/view/sdview5.cxx; sourceTree = "<group>"; };
		BE02648A237973D8008D3E52 /* drviews7.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = drviews7.cxx; path = ../sd/source/ui/view/drviews7.cxx; sourceTree = "<group>"; };
		BE02648B237973D8008D3E52 /* outlview.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = outlview.cxx; path = ../sd/source/ui/view/outlview.cxx; sourceTree = "<group>"; };
		BE02648C237973D8008D3E52 /* PresentationViewShellBase.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = PresentationViewShellBase.cxx; path = ../sd/source/ui/view/PresentationViewShellBase.cxx; sourceTree = "<group>"; };
		BE02648D237973D8008D3E52 /* ViewShellImplementation.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ViewShellImplementation.cxx; path = ../sd/source/ui/view/ViewShellImplementation.cxx; sourceTree = "<group>"; };
		BE02648E237973D8008D3E52 /* FormShellManager.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = FormShellManager.cxx; path = ../sd/source/ui/view/FormShellManager.cxx; sourceTree = "<group>"; };
		BE02648F237973D8008D3E52 /* drviewsb.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = drviewsb.cxx; path = ../sd/source/ui/view/drviewsb.cxx; sourceTree = "<group>"; };
		BE026490237973D8008D3E52 /* unmodpg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = unmodpg.cxx; path = ../sd/source/ui/view/unmodpg.cxx; sourceTree = "<group>"; };
		BE026491237973D8008D3E52 /* drvwshrg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = drvwshrg.cxx; path = ../sd/source/ui/view/drvwshrg.cxx; sourceTree = "<group>"; };
		BE026492237973D8008D3E52 /* drviewsh.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = drviewsh.cxx; path = ../sd/source/ui/view/drviewsh.cxx; sourceTree = "<group>"; };
		BE026493237973D8008D3E52 /* drviews9.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = drviews9.cxx; path = ../sd/source/ui/view/drviews9.cxx; sourceTree = "<group>"; };
		BE026494237973D8008D3E52 /* MediaObjectBar.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = MediaObjectBar.cxx; path = ../sd/source/ui/view/MediaObjectBar.cxx; sourceTree = "<group>"; };
		BE026495237973D8008D3E52 /* viewshe2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewshe2.cxx; path = ../sd/source/ui/view/viewshe2.cxx; sourceTree = "<group>"; };
		BE026496237973D9008D3E52 /* DocumentRenderer.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = DocumentRenderer.cxx; path = ../sd/source/ui/view/DocumentRenderer.cxx; sourceTree = "<group>"; };
		BE026497237973D9008D3E52 /* drviewsf.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = drviewsf.cxx; path = ../sd/source/ui/view/drviewsf.cxx; sourceTree = "<group>"; };
		BE026498237973D9008D3E52 /* sdview3.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sdview3.cxx; path = ../sd/source/ui/view/sdview3.cxx; sourceTree = "<group>"; };
		BE026499237973D9008D3E52 /* GraphicObjectBar.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = GraphicObjectBar.cxx; path = ../sd/source/ui/view/GraphicObjectBar.cxx; sourceTree = "<group>"; };
		BE02649A237973D9008D3E52 /* GraphicViewShellBase.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = GraphicViewShellBase.cxx; path = ../sd/source/ui/view/GraphicViewShellBase.cxx; sourceTree = "<group>"; };
		BE02649B237973D9008D3E52 /* grviewsh.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = grviewsh.cxx; path = ../sd/source/ui/view/grviewsh.cxx; sourceTree = "<group>"; };
		BE02649C237973D9008D3E52 /* clview.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = clview.cxx; path = ../sd/source/ui/view/clview.cxx; sourceTree = "<group>"; };
		BE02649D237973D9008D3E52 /* ImpressViewShellBase.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ImpressViewShellBase.cxx; path = ../sd/source/ui/view/ImpressViewShellBase.cxx; sourceTree = "<group>"; };
		BE02649E237973D9008D3E52 /* sdwindow.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sdwindow.cxx; path = ../sd/source/ui/view/sdwindow.cxx; sourceTree = "<group>"; };
		BE02649F237973D9008D3E52 /* SlideSorterViewShellBase.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = SlideSorterViewShellBase.cxx; path = ../sd/source/ui/view/SlideSorterViewShellBase.cxx; sourceTree = "<group>"; };
		BE0264A0237973D9008D3E52 /* sdruler.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sdruler.cxx; path = ../sd/source/ui/view/sdruler.cxx; sourceTree = "<group>"; };
		BE0264A1237973D9008D3E52 /* viewshel.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewshel.cxx; path = ../sd/source/ui/view/viewshel.cxx; sourceTree = "<group>"; };
		BE0264A2237973D9008D3E52 /* drviews2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = drviews2.cxx; path = ../sd/source/ui/view/drviews2.cxx; sourceTree = "<group>"; };
		BE0264A3237973D9008D3E52 /* drviewse.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = drviewse.cxx; path = ../sd/source/ui/view/drviewse.cxx; sourceTree = "<group>"; };
		BE0264A4237973D9008D3E52 /* drviewsc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = drviewsc.cxx; path = ../sd/source/ui/view/drviewsc.cxx; sourceTree = "<group>"; };
		BE0264A5237973D9008D3E52 /* drawview.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = drawview.cxx; path = ../sd/source/ui/view/drawview.cxx; sourceTree = "<group>"; };
		BE0264A6237973D9008D3E52 /* outlnvsh.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = outlnvsh.cxx; path = ../sd/source/ui/view/outlnvsh.cxx; sourceTree = "<group>"; };
		BE0264A7237973D9008D3E52 /* sdview4.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sdview4.cxx; path = ../sd/source/ui/view/sdview4.cxx; sourceTree = "<group>"; };
		BE0264A8237973D9008D3E52 /* presvish.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = presvish.cxx; path = ../sd/source/ui/view/presvish.cxx; sourceTree = "<group>"; };
		BE0264AA237975E7008D3E52 /* iconviewimpl.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = iconviewimpl.hxx; path = ../vcl/source/treelist/iconviewimpl.hxx; sourceTree = "<group>"; };
		BE0264AB237975E8008D3E52 /* svlbitm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svlbitm.cxx; path = ../vcl/source/treelist/svlbitm.cxx; sourceTree = "<group>"; };
		BE0264AC237975E8008D3E52 /* svtabbx.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svtabbx.cxx; path = ../vcl/source/treelist/svtabbx.cxx; sourceTree = "<group>"; };
		BE0264AD237975E8008D3E52 /* iconviewimpl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = iconviewimpl.cxx; path = ../vcl/source/treelist/iconviewimpl.cxx; sourceTree = "<group>"; };
		BE0264AE237975E8008D3E52 /* uiobject.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = uiobject.cxx; path = ../vcl/source/treelist/uiobject.cxx; sourceTree = "<group>"; };
		BE0264AF237975E8008D3E52 /* inetimg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = inetimg.cxx; path = ../vcl/source/treelist/inetimg.cxx; sourceTree = "<group>"; };
		BE0264B0237975E8008D3E52 /* viewdataentry.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewdataentry.cxx; path = ../vcl/source/treelist/viewdataentry.cxx; sourceTree = "<group>"; };
		BE0264B1237975E8008D3E52 /* imap3.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = imap3.cxx; path = ../vcl/source/treelist/imap3.cxx; sourceTree = "<group>"; };
		BE0264B2237975E8008D3E52 /* transfer.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = transfer.cxx; path = ../vcl/source/treelist/transfer.cxx; sourceTree = "<group>"; };
		BE0264B3237975E8008D3E52 /* transfer2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = transfer2.cxx; path = ../vcl/source/treelist/transfer2.cxx; sourceTree = "<group>"; };
		BE0264B4237975E8008D3E52 /* imap2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = imap2.cxx; path = ../vcl/source/treelist/imap2.cxx; sourceTree = "<group>"; };
		BE0264B5237975E8008D3E52 /* iconview.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = iconview.cxx; path = ../vcl/source/treelist/iconview.cxx; sourceTree = "<group>"; };
		BE0264B6237975E8008D3E52 /* headbar.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = headbar.cxx; path = ../vcl/source/treelist/headbar.cxx; sourceTree = "<group>"; };
		BE0264B7237975E8008D3E52 /* imap.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = imap.cxx; path = ../vcl/source/treelist/imap.cxx; sourceTree = "<group>"; };
		BE0264B8237975E8008D3E52 /* treelistbox.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = treelistbox.cxx; path = ../vcl/source/treelist/treelistbox.cxx; sourceTree = "<group>"; };
		BE0264B9237975E8008D3E52 /* svimpbox.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svimpbox.cxx; path = ../vcl/source/treelist/svimpbox.cxx; sourceTree = "<group>"; };
		BE0264BA237975E8008D3E52 /* treelist.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = treelist.cxx; path = ../vcl/source/treelist/treelist.cxx; sourceTree = "<group>"; };
		BE0264BB237975E8008D3E52 /* treelistentry.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = treelistentry.cxx; path = ../vcl/source/treelist/treelistentry.cxx; sourceTree = "<group>"; };
		BE02FCE5171328D20069F37F /* javacontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = javacontext.cxx; path = ../svtools/source/java/javacontext.cxx; sourceTree = "<group>"; };
		BE02FCE6171328D20069F37F /* javainteractionhandler.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = javainteractionhandler.cxx; path = ../svtools/source/java/javainteractionhandler.cxx; sourceTree = "<group>"; };
		BE02FCE7171335B80069F37F /* otherjre.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = otherjre.cxx; path = ../jvmfwk/plugins/sunmajor/pluginlib/otherjre.cxx; sourceTree = "<group>"; };
		BE02FCE8171335B80069F37F /* sunjre.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sunjre.cxx; path = ../jvmfwk/plugins/sunmajor/pluginlib/sunjre.cxx; sourceTree = "<group>"; };
		BE02FCE9171335B80069F37F /* sunversion.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sunversion.cxx; path = ../jvmfwk/plugins/sunmajor/pluginlib/sunversion.cxx; sourceTree = "<group>"; };
		BE02FCEA171335B80069F37F /* util.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = util.cxx; path = ../jvmfwk/plugins/sunmajor/pluginlib/util.cxx; sourceTree = "<group>"; };
		BE02FCEB171335B80069F37F /* vendorbase.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vendorbase.cxx; path = ../jvmfwk/plugins/sunmajor/pluginlib/vendorbase.cxx; sourceTree = "<group>"; };
		BE02FCEC171335B80069F37F /* vendorlist.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vendorlist.cxx; path = ../jvmfwk/plugins/sunmajor/pluginlib/vendorlist.cxx; sourceTree = "<group>"; };
		BE145F5C17B24BA4004CBBBA /* sunjavaplugin.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sunjavaplugin.cxx; path = ../jvmfwk/plugins/sunmajor/pluginlib/sunjavaplugin.cxx; sourceTree = "<group>"; };
		BE286950257D06C5000E863E /* TokenWriter.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = TokenWriter.cxx; path = ../dbaccess/source/ui/misc/TokenWriter.cxx; sourceTree = "<group>"; };
		BE286951257D06C5000E863E /* WNameMatch.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = WNameMatch.cxx; path = ../dbaccess/source/ui/misc/WNameMatch.cxx; sourceTree = "<group>"; };
		BE286952257D06C5000E863E /* singledoccontroller.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = singledoccontroller.cxx; path = ../dbaccess/source/ui/misc/singledoccontroller.cxx; sourceTree = "<group>"; };
		BE286953257D06C5000E863E /* DExport.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = DExport.cxx; path = ../dbaccess/source/ui/misc/DExport.cxx; sourceTree = "<group>"; };
		BE286954257D06C5000E863E /* WTypeSelect.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = WTypeSelect.cxx; path = ../dbaccess/source/ui/misc/WTypeSelect.cxx; sourceTree = "<group>"; };
		BE286955257D06C5000E863E /* dsmeta.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dsmeta.cxx; path = ../dbaccess/source/ui/misc/dsmeta.cxx; sourceTree = "<group>"; };
		BE286956257D06C5000E863E /* HtmlReader.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = HtmlReader.cxx; path = ../dbaccess/source/ui/misc/HtmlReader.cxx; sourceTree = "<group>"; };
		BE286957257D06C5000E863E /* WExtendPages.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = WExtendPages.cxx; path = ../dbaccess/source/ui/misc/WExtendPages.cxx; sourceTree = "<group>"; };
		BE286958257D06C5000E863E /* charsets.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = charsets.cxx; path = ../dbaccess/source/ui/misc/charsets.cxx; sourceTree = "<group>"; };
		BE286959257D06C5000E863E /* linkeddocuments.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = linkeddocuments.cxx; path = ../dbaccess/source/ui/misc/linkeddocuments.cxx; sourceTree = "<group>"; };
		BE28695A257D06C5000E863E /* UpdateHelperImpl.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = UpdateHelperImpl.hxx; path = ../dbaccess/source/ui/misc/UpdateHelperImpl.hxx; sourceTree = "<group>"; };
		BE28695B257D06C5000E863E /* imageprovider.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = imageprovider.cxx; path = ../dbaccess/source/ui/misc/imageprovider.cxx; sourceTree = "<group>"; };
		BE28695C257D06C5000E863E /* WColumnSelect.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = WColumnSelect.cxx; path = ../dbaccess/source/ui/misc/WColumnSelect.cxx; sourceTree = "<group>"; };
		BE28695D257D06C5000E863E /* WCopyTable.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = WCopyTable.cxx; path = ../dbaccess/source/ui/misc/WCopyTable.cxx; sourceTree = "<group>"; };
		BE28695E257D06C5000E863E /* UITools.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = UITools.cxx; path = ../dbaccess/source/ui/misc/UITools.cxx; sourceTree = "<group>"; };
		BE28695F257D06C5000E863E /* RowSetDrop.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = RowSetDrop.cxx; path = ../dbaccess/source/ui/misc/RowSetDrop.cxx; sourceTree = "<group>"; };
		BE286960257D06C5000E863E /* dbsubcomponentcontroller.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dbsubcomponentcontroller.cxx; path = ../dbaccess/source/ui/misc/dbsubcomponentcontroller.cxx; sourceTree = "<group>"; };
		BE286961257D06C5000E863E /* stringlistitem.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = stringlistitem.cxx; path = ../dbaccess/source/ui/misc/stringlistitem.cxx; sourceTree = "<group>"; };
		BE286962257D06C5000E863E /* RtfReader.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = RtfReader.cxx; path = ../dbaccess/source/ui/misc/RtfReader.cxx; sourceTree = "<group>"; };
		BE286963257D06C5000E863E /* controllerframe.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = controllerframe.cxx; path = ../dbaccess/source/ui/misc/controllerframe.cxx; sourceTree = "<group>"; };
		BE286964257D06C5000E863E /* TableCopyHelper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = TableCopyHelper.cxx; path = ../dbaccess/source/ui/misc/TableCopyHelper.cxx; sourceTree = "<group>"; };
		BE286965257D06C5000E863E /* defaultobjectnamecheck.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = defaultobjectnamecheck.cxx; path = ../dbaccess/source/ui/misc/defaultobjectnamecheck.cxx; sourceTree = "<group>"; };
		BE286966257D06C5000E863E /* asyncmodaldialog.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = asyncmodaldialog.cxx; path = ../dbaccess/source/ui/misc/asyncmodaldialog.cxx; sourceTree = "<group>"; };
		BE286967257D06C5000E863E /* WCPage.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = WCPage.cxx; path = ../dbaccess/source/ui/misc/WCPage.cxx; sourceTree = "<group>"; };
		BE286968257D06C5000E863E /* propertystorage.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = propertystorage.cxx; path = ../dbaccess/source/ui/misc/propertystorage.cxx; sourceTree = "<group>"; };
		BE286969257D06C5000E863E /* datasourceconnector.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = datasourceconnector.cxx; path = ../dbaccess/source/ui/misc/datasourceconnector.cxx; sourceTree = "<group>"; };
		BE28696A257D06C5000E863E /* indexcollection.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = indexcollection.cxx; path = ../dbaccess/source/ui/misc/indexcollection.cxx; sourceTree = "<group>"; };
		BE28696B257D06C5000E863E /* databaseobjectview.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = databaseobjectview.cxx; path = ../dbaccess/source/ui/misc/databaseobjectview.cxx; sourceTree = "<group>"; };
		BE28696C257D06C6000E863E /* dbaundomanager.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dbaundomanager.cxx; path = ../dbaccess/source/ui/misc/dbaundomanager.cxx; sourceTree = "<group>"; };
		BE2DACFA182FAB5200A4D2F7 /* abstdlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = abstdlg.cxx; path = ../vcl/source/window/abstdlg.cxx; sourceTree = "<group>"; };
		BE2DACFB182FAB5200A4D2F7 /* accel.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = accel.cxx; path = ../vcl/source/window/accel.cxx; sourceTree = "<group>"; };
		BE2DACFC182FAB5200A4D2F7 /* accmgr.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = accmgr.cxx; path = ../vcl/source/window/accmgr.cxx; sourceTree = "<group>"; };
		BE2DACFD182FAB5200A4D2F7 /* brdwin.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = brdwin.cxx; path = ../vcl/source/window/brdwin.cxx; sourceTree = "<group>"; };
		BE2DACFE182FAB5200A4D2F7 /* btndlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = btndlg.cxx; path = ../vcl/source/window/btndlg.cxx; sourceTree = "<group>"; };
		BE2DACFF182FAB5200A4D2F7 /* builder.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = builder.cxx; path = ../vcl/source/window/builder.cxx; sourceTree = "<group>"; };
		BE2DAD00182FAB5200A4D2F7 /* commandevent.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = commandevent.cxx; path = ../vcl/source/window/commandevent.cxx; sourceTree = "<group>"; };
		BE2DAD01182FAB5200A4D2F7 /* cursor.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cursor.cxx; path = ../vcl/source/window/cursor.cxx; sourceTree = "<group>"; };
		BE2DAD02182FAB5200A4D2F7 /* decoview.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = decoview.cxx; path = ../vcl/source/window/decoview.cxx; sourceTree = "<group>"; };
		BE2DAD03182FAB5200A4D2F7 /* dialog.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dialog.cxx; path = ../vcl/source/window/dialog.cxx; sourceTree = "<group>"; };
		BE2DAD04182FAB5200A4D2F7 /* dlgctrl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dlgctrl.cxx; path = ../vcl/source/window/dlgctrl.cxx; sourceTree = "<group>"; };
		BE2DAD05182FAB5200A4D2F7 /* dndevdis.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dndevdis.cxx; path = ../vcl/source/window/dndevdis.cxx; sourceTree = "<group>"; };
		BE2DAD06182FAB5200A4D2F7 /* dndlcon.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dndlcon.cxx; path = ../vcl/source/window/dndlcon.cxx; sourceTree = "<group>"; };
		BE2DAD07182FAB5200A4D2F7 /* dockingarea.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dockingarea.cxx; path = ../vcl/source/window/dockingarea.cxx; sourceTree = "<group>"; };
		BE2DAD08182FAB5200A4D2F7 /* dockmgr.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dockmgr.cxx; path = ../vcl/source/window/dockmgr.cxx; sourceTree = "<group>"; };
		BE2DAD09182FAB5200A4D2F7 /* dockwin.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dockwin.cxx; path = ../vcl/source/window/dockwin.cxx; sourceTree = "<group>"; };
		BE2DAD0A182FAB5200A4D2F7 /* floatwin.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = floatwin.cxx; path = ../vcl/source/window/floatwin.cxx; sourceTree = "<group>"; };
		BE2DAD0B182FAB5200A4D2F7 /* introwin.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = introwin.cxx; path = ../vcl/source/window/introwin.cxx; sourceTree = "<group>"; };
		BE2DAD0C182FAB5200A4D2F7 /* keycod.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = keycod.cxx; path = ../vcl/source/window/keycod.cxx; sourceTree = "<group>"; };
		BE2DAD0D182FAB5200A4D2F7 /* keyevent.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = keyevent.cxx; path = ../vcl/source/window/keyevent.cxx; sourceTree = "<group>"; };
		BE2DAD0E182FAB5200A4D2F7 /* layout.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = layout.cxx; path = ../vcl/source/window/layout.cxx; sourceTree = "<group>"; };
		BE2DAD0F182FAB5200A4D2F7 /* menu.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = menu.cxx; path = ../vcl/source/window/menu.cxx; sourceTree = "<group>"; };
		BE2DAD10182FAB5200A4D2F7 /* mnemonic.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = mnemonic.cxx; path = ../vcl/source/window/mnemonic.cxx; sourceTree = "<group>"; };
		BE2DAD11182FAB5200A4D2F7 /* mnemonicengine.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = mnemonicengine.cxx; path = ../vcl/source/window/mnemonicengine.cxx; sourceTree = "<group>"; };
		BE2DAD12182FAB5200A4D2F7 /* mouseevent.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = mouseevent.cxx; path = ../vcl/source/window/mouseevent.cxx; sourceTree = "<group>"; };
		BE2DAD13182FAB5200A4D2F7 /* msgbox.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = msgbox.cxx; path = ../vcl/source/window/msgbox.cxx; sourceTree = "<group>"; };
		BE2DAD15182FAB5200A4D2F7 /* printdlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = printdlg.cxx; path = ../vcl/source/window/printdlg.cxx; sourceTree = "<group>"; };
		BE2DAD16182FAB5200A4D2F7 /* scrwnd.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = scrwnd.cxx; path = ../vcl/source/window/scrwnd.cxx; sourceTree = "<group>"; };
		BE2DAD17182FAB5200A4D2F7 /* scrwnd.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = scrwnd.hxx; path = ../vcl/source/window/scrwnd.hxx; sourceTree = "<group>"; };
		BE2DAD18182FAB5200A4D2F7 /* seleng.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = seleng.cxx; path = ../vcl/source/window/seleng.cxx; sourceTree = "<group>"; };
		BE2DAD19182FAB5200A4D2F7 /* split.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = split.cxx; path = ../vcl/source/window/split.cxx; sourceTree = "<group>"; };
		BE2DAD1A182FAB5200A4D2F7 /* splitwin.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = splitwin.cxx; path = ../vcl/source/window/splitwin.cxx; sourceTree = "<group>"; };
		BE2DAD1B182FAB5200A4D2F7 /* status.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = status.cxx; path = ../vcl/source/window/status.cxx; sourceTree = "<group>"; };
		BE2DAD1C182FAB5200A4D2F7 /* syschild.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = syschild.cxx; path = ../vcl/source/window/syschild.cxx; sourceTree = "<group>"; };
		BE2DAD1D182FAB5200A4D2F7 /* syswin.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = syswin.cxx; path = ../vcl/source/window/syswin.cxx; sourceTree = "<group>"; };
		BE2DAD1E182FAB5200A4D2F7 /* tabdlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tabdlg.cxx; path = ../vcl/source/window/tabdlg.cxx; sourceTree = "<group>"; };
		BE2DAD1F182FAB5200A4D2F7 /* tabpage.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tabpage.cxx; path = ../vcl/source/window/tabpage.cxx; sourceTree = "<group>"; };
		BE2DAD20182FAB5200A4D2F7 /* taskpanelist.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = taskpanelist.cxx; path = ../vcl/source/window/taskpanelist.cxx; sourceTree = "<group>"; };
		BE2DAD21182FAB5200A4D2F7 /* toolbox.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = toolbox.cxx; path = ../vcl/source/window/toolbox.cxx; sourceTree = "<group>"; };
		BE2DAD22182FAB5200A4D2F7 /* toolbox2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = toolbox2.cxx; path = ../vcl/source/window/toolbox2.cxx; sourceTree = "<group>"; };
		BE2DAD23182FAB5200A4D2F7 /* window.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = window.cxx; path = ../vcl/source/window/window.cxx; sourceTree = "<group>"; };
		BE2DAD24182FAB5200A4D2F7 /* window2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = window2.cxx; path = ../vcl/source/window/window2.cxx; sourceTree = "<group>"; };
		BE2DAD25182FAB5200A4D2F7 /* window3.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = window3.cxx; path = ../vcl/source/window/window3.cxx; sourceTree = "<group>"; };
		BE2DAD26182FAB5200A4D2F7 /* winproc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = winproc.cxx; path = ../vcl/source/window/winproc.cxx; sourceTree = "<group>"; };
		BE2DAD27182FAB5200A4D2F7 /* wrkwin.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = wrkwin.cxx; path = ../vcl/source/window/wrkwin.cxx; sourceTree = "<group>"; };
		BE2DAD2C1831490400A4D2F7 /* FormulaCompiler.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = FormulaCompiler.cxx; path = ../formula/source/core/api/FormulaCompiler.cxx; sourceTree = "<group>"; };
		BE2DAD2D1831490400A4D2F7 /* FormulaOpCodeMapperObj.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = FormulaOpCodeMapperObj.cxx; path = ../formula/source/core/api/FormulaOpCodeMapperObj.cxx; sourceTree = "<group>"; };
		BE2DAD2E1831490400A4D2F7 /* services.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = services.cxx; path = ../formula/source/core/api/services.cxx; sourceTree = "<group>"; };
		BE2DAD2F1831490400A4D2F7 /* token.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = token.cxx; path = ../formula/source/core/api/token.cxx; sourceTree = "<group>"; };
		BE2DAD301831490400A4D2F7 /* vectortoken.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vectortoken.cxx; path = ../formula/source/core/api/vectortoken.cxx; sourceTree = "<group>"; };
		BE493241247820D50013BCD6 /* xmlsec_init.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xmlsec_init.cxx; path = ../xmlsecurity/source/xmlsec/xmlsec_init.cxx; sourceTree = "<group>"; };
		BE493242247820D50013BCD6 /* certificateextension_certextn.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = certificateextension_certextn.hxx; path = ../xmlsecurity/source/xmlsec/certificateextension_certextn.hxx; sourceTree = "<group>"; };
		BE493243247820D50013BCD6 /* xmlelementwrapper_xmlsecimpl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xmlelementwrapper_xmlsecimpl.cxx; path = ../xmlsecurity/source/xmlsec/xmlelementwrapper_xmlsecimpl.cxx; sourceTree = "<group>"; };
		BE493244247820D50013BCD6 /* biginteger.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = biginteger.cxx; path = ../xmlsecurity/source/xmlsec/biginteger.cxx; sourceTree = "<group>"; };
		BE493245247820D50013BCD6 /* errorcallback.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = errorcallback.cxx; path = ../xmlsecurity/source/xmlsec/errorcallback.cxx; sourceTree = "<group>"; };
		BE493246247820D50013BCD6 /* xmldocumentwrapper_xmlsecimpl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xmldocumentwrapper_xmlsecimpl.cxx; path = ../xmlsecurity/source/xmlsec/xmldocumentwrapper_xmlsecimpl.cxx; sourceTree = "<group>"; };
		BE493247247820D50013BCD6 /* xmlelementwrapper_xmlsecimpl.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = xmlelementwrapper_xmlsecimpl.hxx; path = ../xmlsecurity/source/xmlsec/xmlelementwrapper_xmlsecimpl.hxx; sourceTree = "<group>"; };
		BE493248247820D50013BCD6 /* saxhelper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = saxhelper.cxx; path = ../xmlsecurity/source/xmlsec/saxhelper.cxx; sourceTree = "<group>"; };
		BE493249247820D50013BCD6 /* certificateextension_certextn.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = certificateextension_certextn.cxx; path = ../xmlsecurity/source/xmlsec/certificateextension_certextn.cxx; sourceTree = "<group>"; };
		BE49324A247820D50013BCD6 /* xmlstreamio.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xmlstreamio.cxx; path = ../xmlsecurity/source/xmlsec/xmlstreamio.cxx; sourceTree = "<group>"; };
		BE49324B247820D50013BCD6 /* certificateextension_xmlsecimpl.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = certificateextension_xmlsecimpl.hxx; path = ../xmlsecurity/source/xmlsec/certificateextension_xmlsecimpl.hxx; sourceTree = "<group>"; };
		BE49324E2478ECB10013BCD6 /* helpinterceptor.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = helpinterceptor.hxx; path = ../sfx2/source/appl/helpinterceptor.hxx; sourceTree = "<group>"; };
		BE49324F2478ECB10013BCD6 /* fwkhelper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fwkhelper.cxx; path = ../sfx2/source/appl/fwkhelper.cxx; sourceTree = "<group>"; };
		BE4932502478ECB10013BCD6 /* appbaslib.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appbaslib.cxx; path = ../sfx2/source/appl/appbaslib.cxx; sourceTree = "<group>"; };
		BE4932512478ECB10013BCD6 /* lnkbase2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = lnkbase2.cxx; path = ../sfx2/source/appl/lnkbase2.cxx; sourceTree = "<group>"; };
		BE4932522478ECB10013BCD6 /* shutdownicon.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = shutdownicon.hxx; path = ../sfx2/source/appl/shutdownicon.hxx; sourceTree = "<group>"; };
		BE4932532478ECB10013BCD6 /* appmain.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appmain.cxx; path = ../sfx2/source/appl/appmain.cxx; sourceTree = "<group>"; };
		BE4932542478ECB10013BCD6 /* childwinimpl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = childwinimpl.cxx; path = ../sfx2/source/appl/childwinimpl.cxx; sourceTree = "<group>"; };
		BE4932552478ECB10013BCD6 /* childwin.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = childwin.cxx; path = ../sfx2/source/appl/childwin.cxx; sourceTree = "<group>"; };
		BE4932562478ECB20013BCD6 /* appreg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appreg.cxx; path = ../sfx2/source/appl/appreg.cxx; sourceTree = "<group>"; };
		BE4932572478ECB20013BCD6 /* getbasctlfunction.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = getbasctlfunction.cxx; path = ../sfx2/source/appl/getbasctlfunction.cxx; sourceTree = "<group>"; };
		BE4932582478ECB20013BCD6 /* module.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = module.cxx; path = ../sfx2/source/appl/module.cxx; sourceTree = "<group>"; };
		BE4932592478ECB20013BCD6 /* helpdispatch.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = helpdispatch.hxx; path = ../sfx2/source/appl/helpdispatch.hxx; sourceTree = "<group>"; };
		BE49325A2478ECB20013BCD6 /* appopen.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appopen.cxx; path = ../sfx2/source/appl/appopen.cxx; sourceTree = "<group>"; };
		BE49325B2478ECB20013BCD6 /* shellimpl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = shellimpl.cxx; path = ../sfx2/source/appl/shellimpl.cxx; sourceTree = "<group>"; };
		BE49325C2478ECB20013BCD6 /* impldde.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = impldde.cxx; path = ../sfx2/source/appl/impldde.cxx; sourceTree = "<group>"; };
		BE49325D2478ECB20013BCD6 /* helpdispatch.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = helpdispatch.cxx; path = ../sfx2/source/appl/helpdispatch.cxx; sourceTree = "<group>"; };
		BE49325E2478ECB20013BCD6 /* macroloader.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = macroloader.cxx; path = ../sfx2/source/appl/macroloader.cxx; sourceTree = "<group>"; };
		BE49325F2478ECB20013BCD6 /* helpinterceptor.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = helpinterceptor.cxx; path = ../sfx2/source/appl/helpinterceptor.cxx; sourceTree = "<group>"; };
		BE4932602478ECB20013BCD6 /* impldde.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = impldde.hxx; path = ../sfx2/source/appl/impldde.hxx; sourceTree = "<group>"; };
		BE4932612478ECB20013BCD6 /* appuno.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appuno.cxx; path = ../sfx2/source/appl/appuno.cxx; sourceTree = "<group>"; };
		BE4932622478ECB20013BCD6 /* shutdowniconaqua.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = shutdowniconaqua.mm; path = ../sfx2/source/appl/shutdowniconaqua.mm; sourceTree = "<group>"; };
		BE4932632478ECB20013BCD6 /* fileobj.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = fileobj.hxx; path = ../sfx2/source/appl/fileobj.hxx; sourceTree = "<group>"; };
		BE4932642478ECB20013BCD6 /* appbas.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appbas.cxx; path = ../sfx2/source/appl/appbas.cxx; sourceTree = "<group>"; };
		BE4932652478ECB20013BCD6 /* xpackcreator.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xpackcreator.cxx; path = ../sfx2/source/appl/xpackcreator.cxx; sourceTree = "<group>"; };
		BE4932662478ECB20013BCD6 /* appdde.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appdde.cxx; path = ../sfx2/source/appl/appdde.cxx; sourceTree = "<group>"; };
		BE4932672478ECB20013BCD6 /* newhelp.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = newhelp.hxx; path = ../sfx2/source/appl/newhelp.hxx; sourceTree = "<group>"; };
		BE4932682478ECB20013BCD6 /* sfxhelp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sfxhelp.cxx; path = ../sfx2/source/appl/sfxhelp.cxx; sourceTree = "<group>"; };
		BE4932692478ECB20013BCD6 /* linkmgr2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = linkmgr2.cxx; path = ../sfx2/source/appl/linkmgr2.cxx; sourceTree = "<group>"; };
		BE49326A2478ECB20013BCD6 /* appmisc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appmisc.cxx; path = ../sfx2/source/appl/appmisc.cxx; sourceTree = "<group>"; };
		BE49326B2478ECB20013BCD6 /* linksrc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = linksrc.cxx; path = ../sfx2/source/appl/linksrc.cxx; sourceTree = "<group>"; };
		BE49326C2478ECB20013BCD6 /* app.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = app.cxx; path = ../sfx2/source/appl/app.cxx; sourceTree = "<group>"; };
		BE49326D2478ECB20013BCD6 /* fileobj.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fileobj.cxx; path = ../sfx2/source/appl/fileobj.cxx; sourceTree = "<group>"; };
		BE49326E2478ECB20013BCD6 /* appserv.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appserv.cxx; path = ../sfx2/source/appl/appserv.cxx; sourceTree = "<group>"; };
		BE49326F2478ECB20013BCD6 /* flatpak.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = flatpak.cxx; path = ../sfx2/source/appl/flatpak.cxx; sourceTree = "<group>"; };
		BE4932702478ECB30013BCD6 /* shutdowniconw32.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = shutdowniconw32.cxx; path = ../sfx2/source/appl/shutdowniconw32.cxx; sourceTree = "<group>"; };
		BE4932712478ECB30013BCD6 /* appinit.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appinit.cxx; path = ../sfx2/source/appl/appinit.cxx; sourceTree = "<group>"; };
		BE4932722478ECB30013BCD6 /* workwin.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = workwin.cxx; path = ../sfx2/source/appl/workwin.cxx; sourceTree = "<group>"; };
		BE4932732478ECB30013BCD6 /* appcfg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appcfg.cxx; path = ../sfx2/source/appl/appcfg.cxx; sourceTree = "<group>"; };
		BE4932742478ECB30013BCD6 /* appdata.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appdata.cxx; path = ../sfx2/source/appl/appdata.cxx; sourceTree = "<group>"; };
		BE4932752478ECB30013BCD6 /* newhelp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = newhelp.cxx; path = ../sfx2/source/appl/newhelp.cxx; sourceTree = "<group>"; };
		BE4932762478ECB30013BCD6 /* preventduplicateinteraction.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = preventduplicateinteraction.cxx; path = ../sfx2/source/appl/preventduplicateinteraction.cxx; sourceTree = "<group>"; };
		BE4932772478ECB30013BCD6 /* sfxpicklist.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sfxpicklist.cxx; path = ../sfx2/source/appl/sfxpicklist.cxx; sourceTree = "<group>"; };
		BE4932782478ECB30013BCD6 /* appdispatchprovider.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appdispatchprovider.cxx; path = ../sfx2/source/appl/appdispatchprovider.cxx; sourceTree = "<group>"; };
		BE4932792478ECB30013BCD6 /* shutdownicon.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = shutdownicon.cxx; path = ../sfx2/source/appl/shutdownicon.cxx; sourceTree = "<group>"; };
		BE49327A2478ECB30013BCD6 /* appchild.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appchild.cxx; path = ../sfx2/source/appl/appchild.cxx; sourceTree = "<group>"; };
		BE49327B2478ECB30013BCD6 /* appquit.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appquit.cxx; path = ../sfx2/source/appl/appquit.cxx; sourceTree = "<group>"; };
		BE49327C2478ECB30013BCD6 /* opengrf.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = opengrf.cxx; path = ../sfx2/source/appl/opengrf.cxx; sourceTree = "<group>"; };
		BE49327D2478ECB30013BCD6 /* openuriexternally.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = openuriexternally.cxx; path = ../sfx2/source/appl/openuriexternally.cxx; sourceTree = "<group>"; };
		BE49327E2478ECB30013BCD6 /* getbasctlfunction.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = getbasctlfunction.hxx; path = ../sfx2/source/appl/getbasctlfunction.hxx; sourceTree = "<group>"; };
		BE60B5771DB7D80200D3E1E4 /* a11yactionwrapper.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = a11yactionwrapper.mm; path = ../vcl/osx/a11yactionwrapper.mm; sourceTree = "<group>"; };
		BE60B5781DB7D80200D3E1E4 /* a11ycomponentwrapper.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = a11ycomponentwrapper.mm; path = ../vcl/osx/a11ycomponentwrapper.mm; sourceTree = "<group>"; };
		BE60B5791DB7D80200D3E1E4 /* a11yfactory.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = a11yfactory.mm; path = ../vcl/osx/a11yfactory.mm; sourceTree = "<group>"; };
		BE60B57A1DB7D80200D3E1E4 /* a11yfocuslistener.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = a11yfocuslistener.cxx; path = ../vcl/osx/a11yfocuslistener.cxx; sourceTree = "<group>"; };
		BE60B57B1DB7D80200D3E1E4 /* a11yfocustracker.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = a11yfocustracker.cxx; path = ../vcl/osx/a11yfocustracker.cxx; sourceTree = "<group>"; };
		BE60B57C1DB7D80200D3E1E4 /* a11ylistener.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = a11ylistener.cxx; path = ../vcl/osx/a11ylistener.cxx; sourceTree = "<group>"; };
		BE60B57D1DB7D80200D3E1E4 /* a11yrolehelper.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = a11yrolehelper.mm; path = ../vcl/osx/a11yrolehelper.mm; sourceTree = "<group>"; };
		BE60B57E1DB7D80200D3E1E4 /* a11yselectionwrapper.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = a11yselectionwrapper.mm; path = ../vcl/osx/a11yselectionwrapper.mm; sourceTree = "<group>"; };
		BE60B57F1DB7D80200D3E1E4 /* a11ytablewrapper.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = a11ytablewrapper.mm; path = ../vcl/osx/a11ytablewrapper.mm; sourceTree = "<group>"; };
		BE60B5801DB7D80200D3E1E4 /* a11ytextattributeswrapper.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = a11ytextattributeswrapper.mm; path = ../vcl/osx/a11ytextattributeswrapper.mm; sourceTree = "<group>"; };
		BE60B5811DB7D80200D3E1E4 /* a11ytextwrapper.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = a11ytextwrapper.mm; path = ../vcl/osx/a11ytextwrapper.mm; sourceTree = "<group>"; };
		BE60B5821DB7D80200D3E1E4 /* a11yutil.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = a11yutil.mm; path = ../vcl/osx/a11yutil.mm; sourceTree = "<group>"; };
		BE60B5831DB7D80200D3E1E4 /* a11yvaluewrapper.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = a11yvaluewrapper.mm; path = ../vcl/osx/a11yvaluewrapper.mm; sourceTree = "<group>"; };
		BE60B5841DB7D80200D3E1E4 /* a11ywrapper.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = a11ywrapper.mm; path = ../vcl/osx/a11ywrapper.mm; sourceTree = "<group>"; };
		BE60B5851DB7D80200D3E1E4 /* a11ywrapperbutton.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = a11ywrapperbutton.mm; path = ../vcl/osx/a11ywrapperbutton.mm; sourceTree = "<group>"; };
		BE60B5861DB7D80200D3E1E4 /* a11ywrappercheckbox.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = a11ywrappercheckbox.mm; path = ../vcl/osx/a11ywrappercheckbox.mm; sourceTree = "<group>"; };
		BE60B5871DB7D80200D3E1E4 /* a11ywrappercombobox.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = a11ywrappercombobox.mm; path = ../vcl/osx/a11ywrappercombobox.mm; sourceTree = "<group>"; };
		BE60B5881DB7D80200D3E1E4 /* a11ywrappergroup.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = a11ywrappergroup.mm; path = ../vcl/osx/a11ywrappergroup.mm; sourceTree = "<group>"; };
		BE60B5891DB7D80200D3E1E4 /* a11ywrapperlist.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = a11ywrapperlist.mm; path = ../vcl/osx/a11ywrapperlist.mm; sourceTree = "<group>"; };
		BE60B58A1DB7D80200D3E1E4 /* a11ywrapperradiobutton.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = a11ywrapperradiobutton.mm; path = ../vcl/osx/a11ywrapperradiobutton.mm; sourceTree = "<group>"; };
		BE60B58B1DB7D80200D3E1E4 /* a11ywrapperradiogroup.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = a11ywrapperradiogroup.mm; path = ../vcl/osx/a11ywrapperradiogroup.mm; sourceTree = "<group>"; };
		BE60B58C1DB7D80200D3E1E4 /* a11ywrapperrow.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = a11ywrapperrow.mm; path = ../vcl/osx/a11ywrapperrow.mm; sourceTree = "<group>"; };
		BE60B58D1DB7D80200D3E1E4 /* a11ywrapperscrollarea.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = a11ywrapperscrollarea.mm; path = ../vcl/osx/a11ywrapperscrollarea.mm; sourceTree = "<group>"; };
		BE60B58E1DB7D80200D3E1E4 /* a11ywrapperscrollbar.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = a11ywrapperscrollbar.mm; path = ../vcl/osx/a11ywrapperscrollbar.mm; sourceTree = "<group>"; };
		BE60B58F1DB7D80200D3E1E4 /* a11ywrappersplitter.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = a11ywrappersplitter.mm; path = ../vcl/osx/a11ywrappersplitter.mm; sourceTree = "<group>"; };
		BE60B5901DB7D80200D3E1E4 /* a11ywrapperstatictext.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = a11ywrapperstatictext.mm; path = ../vcl/osx/a11ywrapperstatictext.mm; sourceTree = "<group>"; };
		BE60B5911DB7D80200D3E1E4 /* a11ywrappertabgroup.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = a11ywrappertabgroup.mm; path = ../vcl/osx/a11ywrappertabgroup.mm; sourceTree = "<group>"; };
		BE60B5921DB7D80200D3E1E4 /* a11ywrappertextarea.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = a11ywrappertextarea.mm; path = ../vcl/osx/a11ywrappertextarea.mm; sourceTree = "<group>"; };
		BE60B5931DB7D80200D3E1E4 /* a11ywrappertoolbar.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = a11ywrappertoolbar.mm; path = ../vcl/osx/a11ywrappertoolbar.mm; sourceTree = "<group>"; };
		BE60B5941DB7D80200D3E1E4 /* clipboard.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = clipboard.cxx; path = ../vcl/osx/clipboard.cxx; sourceTree = "<group>"; };
		BE60B5951DB7D80200D3E1E4 /* DataFlavorMapping.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = DataFlavorMapping.cxx; path = ../vcl/osx/DataFlavorMapping.cxx; sourceTree = "<group>"; };
		BE60B5961DB7D80200D3E1E4 /* documentfocuslistener.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = documentfocuslistener.cxx; path = ../vcl/osx/documentfocuslistener.cxx; sourceTree = "<group>"; };
		BE60B5971DB7D80200D3E1E4 /* DragActionConversion.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = DragActionConversion.cxx; path = ../vcl/osx/DragActionConversion.cxx; sourceTree = "<group>"; };
		BE60B5981DB7D80200D3E1E4 /* DragSource.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = DragSource.cxx; path = ../vcl/osx/DragSource.cxx; sourceTree = "<group>"; };
		BE60B5991DB7D80200D3E1E4 /* DragSourceContext.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = DragSourceContext.cxx; path = ../vcl/osx/DragSourceContext.cxx; sourceTree = "<group>"; };
		BE60B59A1DB7D80200D3E1E4 /* DropTarget.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = DropTarget.cxx; path = ../vcl/osx/DropTarget.cxx; sourceTree = "<group>"; };
		BE60B59B1DB7D80200D3E1E4 /* HtmlFmtFlt.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = HtmlFmtFlt.cxx; path = ../vcl/osx/HtmlFmtFlt.cxx; sourceTree = "<group>"; };
		BE60B59C1DB7D80200D3E1E4 /* OSXTransferable.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = OSXTransferable.cxx; path = ../vcl/osx/OSXTransferable.cxx; sourceTree = "<group>"; };
		BE60B59D1DB7D80200D3E1E4 /* PictToBmpFlt.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = PictToBmpFlt.cxx; path = ../vcl/osx/PictToBmpFlt.cxx; sourceTree = "<group>"; };
		BE60B59E1DB7D80200D3E1E4 /* printaccessoryview.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = printaccessoryview.mm; path = ../vcl/osx/printaccessoryview.mm; sourceTree = "<group>"; };
		BE60B59F1DB7D80200D3E1E4 /* printview.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = printview.mm; path = ../vcl/osx/printview.mm; sourceTree = "<group>"; };
		BE60B5A01DB7D80200D3E1E4 /* saldata.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = saldata.cxx; path = ../vcl/osx/saldata.cxx; sourceTree = "<group>"; };
		BE60B5A11DB7D80200D3E1E4 /* salframe.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = salframe.cxx; path = ../vcl/osx/salframe.cxx; sourceTree = "<group>"; };
		BE60B5A21DB7D80200D3E1E4 /* salframeview.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = salframeview.mm; path = ../vcl/osx/salframeview.mm; sourceTree = "<group>"; };
		BE60B5A31DB7D80200D3E1E4 /* salinst.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = salinst.cxx; path = ../vcl/osx/salinst.cxx; sourceTree = "<group>"; };
		BE60B5A41DB7D80200D3E1E4 /* salmenu.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = salmenu.cxx; path = ../vcl/osx/salmenu.cxx; sourceTree = "<group>"; };
		BE60B5A51DB7D80200D3E1E4 /* salnativewidgets.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = salnativewidgets.cxx; path = ../vcl/osx/salnativewidgets.cxx; sourceTree = "<group>"; };
		BE60B5A61DB7D80200D3E1E4 /* salnsmenu.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = salnsmenu.mm; path = ../vcl/osx/salnsmenu.mm; sourceTree = "<group>"; };
		BE60B5A71DB7D80200D3E1E4 /* salnstimer.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = salnstimer.mm; path = ../vcl/osx/salnstimer.mm; sourceTree = "<group>"; };
		BE60B5A81DB7D80200D3E1E4 /* salobj.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = salobj.cxx; path = ../vcl/osx/salobj.cxx; sourceTree = "<group>"; };
		BE60B5A91DB7D80200D3E1E4 /* salprn.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = salprn.cxx; path = ../vcl/osx/salprn.cxx; sourceTree = "<group>"; };
		BE60B5AA1DB7D80200D3E1E4 /* salsys.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = salsys.cxx; path = ../vcl/osx/salsys.cxx; sourceTree = "<group>"; };
		BE60B5AB1DB7D80200D3E1E4 /* saltimer.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = saltimer.cxx; path = ../vcl/osx/saltimer.cxx; sourceTree = "<group>"; };
		BE60B5AC1DB7D80200D3E1E4 /* service_entry.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = service_entry.cxx; path = ../vcl/osx/service_entry.cxx; sourceTree = "<group>"; };
		BE60B5AD1DB7D80200D3E1E4 /* vclnsapp.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = vclnsapp.mm; path = ../vcl/osx/vclnsapp.mm; sourceTree = "<group>"; };
		BE7EC139234CC0FA000D1DB6 /* VerticalOrientationData.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = VerticalOrientationData.cxx; path = ../vcl/source/gdi/VerticalOrientationData.cxx; sourceTree = "<group>"; };
		BE7EC13A234CC0FA000D1DB6 /* impglyphitem.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = impglyphitem.cxx; path = ../vcl/source/gdi/impglyphitem.cxx; sourceTree = "<group>"; };
		BE7EC13B234CC0FA000D1DB6 /* TypeSerializer.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = TypeSerializer.cxx; path = ../vcl/source/gdi/TypeSerializer.cxx; sourceTree = "<group>"; };
		BE7EC13C234CC0FA000D1DB6 /* CommonSalLayout.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = CommonSalLayout.cxx; path = ../vcl/source/gdi/CommonSalLayout.cxx; sourceTree = "<group>"; };
		BE7EC13D234CC0FA000D1DB6 /* scrptrun.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = scrptrun.cxx; path = ../vcl/source/gdi/scrptrun.cxx; sourceTree = "<group>"; };
		BE7EC13E234CC0FA000D1DB6 /* salgdiimpl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = salgdiimpl.cxx; path = ../vcl/source/gdi/salgdiimpl.cxx; sourceTree = "<group>"; };
		BE7EC13F234CC0FA000D1DB6 /* WidgetDefinition.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = WidgetDefinition.cxx; path = ../vcl/source/gdi/WidgetDefinition.cxx; sourceTree = "<group>"; };
		BE7EC140234CC0FA000D1DB6 /* mtfxmldump.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = mtfxmldump.cxx; path = ../vcl/source/gdi/mtfxmldump.cxx; sourceTree = "<group>"; };
		BE7EC141234CC0FA000D1DB6 /* FileDefinitionWidgetDraw.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = FileDefinitionWidgetDraw.cxx; path = ../vcl/source/gdi/FileDefinitionWidgetDraw.cxx; sourceTree = "<group>"; };
		BE7EC142234CC0FA000D1DB6 /* vectorgraphicdata.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vectorgraphicdata.cxx; path = ../vcl/source/gdi/vectorgraphicdata.cxx; sourceTree = "<group>"; };
		BE7EC143234CC0FA000D1DB6 /* pdfbuildin_fonts.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pdfbuildin_fonts.cxx; path = ../vcl/source/gdi/pdfbuildin_fonts.cxx; sourceTree = "<group>"; };
		BE7EC144234CC0FA000D1DB6 /* svmconverter.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svmconverter.cxx; path = ../vcl/source/gdi/svmconverter.cxx; sourceTree = "<group>"; };
		BE7EC145234CC0FA000D1DB6 /* WidgetDefinitionReader.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = WidgetDefinitionReader.cxx; path = ../vcl/source/gdi/WidgetDefinitionReader.cxx; sourceTree = "<group>"; };
		BE82C3AA18C86D440050EB79 /* brand.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = brand.cxx; path = ../vcl/source/app/brand.cxx; sourceTree = "<group>"; };
		BE82C3AB18C86D440050EB79 /* dndhelp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dndhelp.cxx; path = ../vcl/source/app/dndhelp.cxx; sourceTree = "<group>"; };
		BE82C3AC18C86D440050EB79 /* help.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = help.cxx; path = ../vcl/source/app/help.cxx; sourceTree = "<group>"; };
		BE82C3AD18C86D440050EB79 /* i18nhelp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = i18nhelp.cxx; path = ../vcl/source/app/i18nhelp.cxx; sourceTree = "<group>"; };
		BE82C3AE18C86D440050EB79 /* IconThemeInfo.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = IconThemeInfo.cxx; path = ../vcl/source/app/IconThemeInfo.cxx; sourceTree = "<group>"; };
		BE82C3AF18C86D440050EB79 /* IconThemeScanner.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = IconThemeScanner.cxx; path = ../vcl/source/app/IconThemeScanner.cxx; sourceTree = "<group>"; };
		BE82C3B018C86D440050EB79 /* IconThemeSelector.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = IconThemeSelector.cxx; path = ../vcl/source/app/IconThemeSelector.cxx; sourceTree = "<group>"; };
		BE82C3B118C86D440050EB79 /* idlemgr.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = idlemgr.cxx; path = ../vcl/source/app/idlemgr.cxx; sourceTree = "<group>"; };
		BE82C3B218C86D440050EB79 /* salvtables.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = salvtables.cxx; path = ../vcl/source/app/salvtables.cxx; sourceTree = "<group>"; };
		BE82C3B318C86D440050EB79 /* session.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = session.cxx; path = ../vcl/source/app/session.cxx; sourceTree = "<group>"; };
		BE82C3B418C86D440050EB79 /* settings.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = settings.cxx; path = ../vcl/source/app/settings.cxx; sourceTree = "<group>"; };
		BE82C3B518C86D440050EB79 /* solarmutex.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = solarmutex.cxx; path = ../vcl/source/app/solarmutex.cxx; sourceTree = "<group>"; };
		BE82C3B618C86D440050EB79 /* sound.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sound.cxx; path = ../vcl/source/app/sound.cxx; sourceTree = "<group>"; };
		BE82C3B718C86D440050EB79 /* stdtext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = stdtext.cxx; path = ../vcl/source/app/stdtext.cxx; sourceTree = "<group>"; };
		BE82C3B818C86D440050EB79 /* svapp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svapp.cxx; path = ../vcl/source/app/svapp.cxx; sourceTree = "<group>"; };
		BE82C3B918C86D440050EB79 /* svdata.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdata.cxx; path = ../vcl/source/app/svdata.cxx; sourceTree = "<group>"; };
		BE82C3BA18C86D440050EB79 /* svmain.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svmain.cxx; path = ../vcl/source/app/svmain.cxx; sourceTree = "<group>"; };
		BE82C3BB18C86D440050EB79 /* svmainhook.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svmainhook.cxx; path = ../vcl/source/app/svmainhook.cxx; sourceTree = "<group>"; };
		BE82C3BC18C86D440050EB79 /* timer.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = timer.cxx; path = ../vcl/source/app/timer.cxx; sourceTree = "<group>"; };
		BE82C3BD18C86D440050EB79 /* unohelp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = unohelp.cxx; path = ../vcl/source/app/unohelp.cxx; sourceTree = "<group>"; };
		BE82C3BE18C86D440050EB79 /* unohelp2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = unohelp2.cxx; path = ../vcl/source/app/unohelp2.cxx; sourceTree = "<group>"; };
		BE82C3BF18C86D440050EB79 /* vclevent.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vclevent.cxx; path = ../vcl/source/app/vclevent.cxx; sourceTree = "<group>"; };
		BE82C3C018C86D6C0050EB79 /* ctfonts.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ctfonts.cxx; path = ../vcl/quartz/ctfonts.cxx; sourceTree = "<group>"; };
		BE82C3C118C86D6C0050EB79 /* ctlayout.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ctlayout.cxx; path = ../vcl/quartz/ctlayout.cxx; sourceTree = "<group>"; };
		BE82C3C218C86D6C0050EB79 /* salbmp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = salbmp.cxx; path = ../vcl/quartz/salbmp.cxx; sourceTree = "<group>"; };
		BE82C3C318C86D6C0050EB79 /* salgdi.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = salgdi.cxx; path = ../vcl/quartz/salgdi.cxx; sourceTree = "<group>"; };
		BE82C3C418C86D6C0050EB79 /* salgdicommon.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = salgdicommon.cxx; path = ../vcl/quartz/salgdicommon.cxx; sourceTree = "<group>"; };
		BE82C3C518C86D6C0050EB79 /* salgdiutils.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = salgdiutils.cxx; path = ../vcl/quartz/salgdiutils.cxx; sourceTree = "<group>"; };
		BE82C3C618C86D6C0050EB79 /* salvd.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = salvd.cxx; path = ../vcl/quartz/salvd.cxx; sourceTree = "<group>"; };
		BE82C3C718C86D6C0050EB79 /* utils.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = utils.cxx; path = ../vcl/quartz/utils.cxx; sourceTree = "<group>"; };
		BE82C3C918C86DBF0050EB79 /* alpha.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = alpha.cxx; path = ../vcl/source/gdi/alpha.cxx; sourceTree = "<group>"; };
		BE82C3CA18C86DBF0050EB79 /* animate.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = animate.cxx; path = ../vcl/source/gdi/animate.cxx; sourceTree = "<group>"; };
		BE82C3CB18C86DBF0050EB79 /* base14.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = base14.cxx; path = ../vcl/source/gdi/base14.cxx; sourceTree = "<group>"; };
		BE82C3CC18C86DBF0050EB79 /* bitmap.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bitmap.cxx; path = ../vcl/source/gdi/bitmap.cxx; sourceTree = "<group>"; };
		BE82C3CD18C86DBF0050EB79 /* bitmap3.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bitmap3.cxx; path = ../vcl/source/gdi/bitmap3.cxx; sourceTree = "<group>"; };
		BE82C3CE18C86DBF0050EB79 /* bitmap4.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bitmap4.cxx; path = ../vcl/source/gdi/bitmap4.cxx; sourceTree = "<group>"; };
		BE82C3CF18C86DBF0050EB79 /* bitmapex.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bitmapex.cxx; path = ../vcl/source/gdi/bitmapex.cxx; sourceTree = "<group>"; };
		BE82C3D018C86DBF0050EB79 /* bmpacc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bmpacc.cxx; path = ../vcl/source/gdi/bmpacc.cxx; sourceTree = "<group>"; };
		BE82C3D118C86DBF0050EB79 /* bmpacc2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bmpacc2.cxx; path = ../vcl/source/gdi/bmpacc2.cxx; sourceTree = "<group>"; };
		BE82C3D218C86DBF0050EB79 /* bmpacc3.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bmpacc3.cxx; path = ../vcl/source/gdi/bmpacc3.cxx; sourceTree = "<group>"; };
		BE82C3D318C86DBF0050EB79 /* bmpfast.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bmpfast.cxx; path = ../vcl/source/gdi/bmpfast.cxx; sourceTree = "<group>"; };
		BE82C3D418C86DBF0050EB79 /* configsettings.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = configsettings.cxx; path = ../vcl/source/gdi/configsettings.cxx; sourceTree = "<group>"; };
		BE82C3D518C86DBF0050EB79 /* cvtgrf.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cvtgrf.cxx; path = ../vcl/source/gdi/cvtgrf.cxx; sourceTree = "<group>"; };
		BE82C3D618C86DBF0050EB79 /* cvtsvm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cvtsvm.cxx; path = ../vcl/source/gdi/cvtsvm.cxx; sourceTree = "<group>"; };
		BE82C3D718C86DBF0050EB79 /* dibtools.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dibtools.cxx; path = ../vcl/source/gdi/dibtools.cxx; sourceTree = "<group>"; };
		BE82C3D818C86DBF0050EB79 /* embeddedfontshelper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = embeddedfontshelper.cxx; path = ../vcl/source/gdi/embeddedfontshelper.cxx; sourceTree = "<group>"; };
		BE82C3D918C86DBF0050EB79 /* extoutdevdata.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = extoutdevdata.cxx; path = ../vcl/source/gdi/extoutdevdata.cxx; sourceTree = "<group>"; };
		BE82C3DA18C86DBF0050EB79 /* font.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = font.cxx; path = ../vcl/source/gdi/font.cxx; sourceTree = "<group>"; };
		BE82C3DB18C86DBF0050EB79 /* gdimetafiletools.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gdimetafiletools.cxx; path = ../vcl/source/gdi/gdimetafiletools.cxx; sourceTree = "<group>"; };
		BE82C3DC18C86DBF0050EB79 /* gdimtf.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gdimtf.cxx; path = ../vcl/source/gdi/gdimtf.cxx; sourceTree = "<group>"; };
		BE82C3DD18C86DBF0050EB79 /* gfxlink.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gfxlink.cxx; path = ../vcl/source/gdi/gfxlink.cxx; sourceTree = "<group>"; };
		BE82C3DE18C86DBF0050EB79 /* gradient.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gradient.cxx; path = ../vcl/source/gdi/gradient.cxx; sourceTree = "<group>"; };
		BE82C3DF18C86DBF0050EB79 /* graph.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = graph.cxx; path = ../vcl/source/gdi/graph.cxx; sourceTree = "<group>"; };
		BE82C3E018C86DBF0050EB79 /* graphictools.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = graphictools.cxx; path = ../vcl/source/gdi/graphictools.cxx; sourceTree = "<group>"; };
		BE82C3E118C86DBF0050EB79 /* hatch.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = hatch.cxx; path = ../vcl/source/gdi/hatch.cxx; sourceTree = "<group>"; };
		BE82C3E218C86DBF0050EB79 /* image.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = image.cxx; path = ../vcl/source/gdi/image.cxx; sourceTree = "<group>"; };
		BE82C3E318C86DBF0050EB79 /* imagerepository.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = imagerepository.cxx; path = ../vcl/source/gdi/imagerepository.cxx; sourceTree = "<group>"; };
		BE82C3E418C86DBF0050EB79 /* impanmvw.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = impanmvw.cxx; path = ../vcl/source/gdi/impanmvw.cxx; sourceTree = "<group>"; };
		BE82C3E518C86DBF0050EB79 /* impbmp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = impbmp.cxx; path = ../vcl/source/gdi/impbmp.cxx; sourceTree = "<group>"; };
		BE82C3E618C86DBF0050EB79 /* impfont.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = impfont.cxx; path = ../vcl/source/gdi/impfont.cxx; sourceTree = "<group>"; };
		BE82C3E718C86DBF0050EB79 /* impgraph.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = impgraph.cxx; path = ../vcl/source/gdi/impgraph.cxx; sourceTree = "<group>"; };
		BE82C3E818C86DBF0050EB79 /* impimage.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = impimage.cxx; path = ../vcl/source/gdi/impimage.cxx; sourceTree = "<group>"; };
		BE82C3E918C86DBF0050EB79 /* impimagetree.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = impimagetree.cxx; path = ../vcl/source/gdi/impimagetree.cxx; sourceTree = "<group>"; };
		BE82C3EA18C86DBF0050EB79 /* impvect.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = impvect.cxx; path = ../vcl/source/gdi/impvect.cxx; sourceTree = "<group>"; };
		BE82C3EB18C86DBF0050EB79 /* jobset.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = jobset.cxx; path = ../vcl/source/gdi/jobset.cxx; sourceTree = "<group>"; };
		BE82C3EC18C86DBF0050EB79 /* lineinfo.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = lineinfo.cxx; path = ../vcl/source/gdi/lineinfo.cxx; sourceTree = "<group>"; };
		BE82C3ED18C86DBF0050EB79 /* mapmod.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = mapmod.cxx; path = ../vcl/source/gdi/mapmod.cxx; sourceTree = "<group>"; };
		BE82C3EE18C86DBF0050EB79 /* metaact.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = metaact.cxx; path = ../vcl/source/gdi/metaact.cxx; sourceTree = "<group>"; };
		BE82C3EF18C86DBF0050EB79 /* metric.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = metric.cxx; path = ../vcl/source/gdi/metric.cxx; sourceTree = "<group>"; };
		BE82C3F018C86DBF0050EB79 /* octree.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = octree.cxx; path = ../vcl/source/gdi/octree.cxx; sourceTree = "<group>"; };
		BE82C3F118C86DBF0050EB79 /* oldprintadaptor.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = oldprintadaptor.cxx; path = ../vcl/source/gdi/oldprintadaptor.cxx; sourceTree = "<group>"; };
		BE82C3F218C86DBF0050EB79 /* outdev.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = outdev.cxx; path = ../vcl/source/gdi/outdev.cxx; sourceTree = "<group>"; };
		BE82C3F318C86DBF0050EB79 /* outdev2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = outdev2.cxx; path = ../vcl/source/gdi/outdev2.cxx; sourceTree = "<group>"; };
		BE82C3F418C86DBF0050EB79 /* outdev3.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = outdev3.cxx; path = ../vcl/source/gdi/outdev3.cxx; sourceTree = "<group>"; };
		BE82C3F518C86DBF0050EB79 /* outdev4.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = outdev4.cxx; path = ../vcl/source/gdi/outdev4.cxx; sourceTree = "<group>"; };
		BE82C3F618C86DBF0050EB79 /* outdev5.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = outdev5.cxx; path = ../vcl/source/gdi/outdev5.cxx; sourceTree = "<group>"; };
		BE82C3F718C86DBF0050EB79 /* outdev6.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = outdev6.cxx; path = ../vcl/source/gdi/outdev6.cxx; sourceTree = "<group>"; };
		BE82C3F818C86DBF0050EB79 /* outdevnative.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = outdevnative.cxx; path = ../vcl/source/gdi/outdevnative.cxx; sourceTree = "<group>"; };
		BE82C3F918C86DBF0050EB79 /* outmap.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = outmap.cxx; path = ../vcl/source/gdi/outmap.cxx; sourceTree = "<group>"; };
		BE82C3FA18C86DBF0050EB79 /* pdfextoutdevdata.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pdfextoutdevdata.cxx; path = ../vcl/source/gdi/pdfextoutdevdata.cxx; sourceTree = "<group>"; };
		BE82C3FB18C86DBF0050EB79 /* pdffontcache.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pdffontcache.cxx; path = ../vcl/source/gdi/pdffontcache.cxx; sourceTree = "<group>"; };
		BE82C3FC18C86DBF0050EB79 /* pdfwriter_impl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pdfwriter_impl.cxx; path = ../vcl/source/gdi/pdfwriter_impl.cxx; sourceTree = "<group>"; };
		BE82C3FD18C86DBF0050EB79 /* pdfwriter_impl2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pdfwriter_impl2.cxx; path = ../vcl/source/gdi/pdfwriter_impl2.cxx; sourceTree = "<group>"; };
		BE82C3FE18C86DBF0050EB79 /* pdfwriter.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pdfwriter.cxx; path = ../vcl/source/gdi/pdfwriter.cxx; sourceTree = "<group>"; };
		BE82C3FF18C86DBF0050EB79 /* pngread.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pngread.cxx; path = ../vcl/source/gdi/pngread.cxx; sourceTree = "<group>"; };
		BE82C40018C86DBF0050EB79 /* pngwrite.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pngwrite.cxx; path = ../vcl/source/gdi/pngwrite.cxx; sourceTree = "<group>"; };
		BE82C40118C86DC00050EB79 /* print.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = print.cxx; path = ../vcl/source/gdi/print.cxx; sourceTree = "<group>"; };
		BE82C40218C86DC00050EB79 /* print2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = print2.cxx; path = ../vcl/source/gdi/print2.cxx; sourceTree = "<group>"; };
		BE82C40318C86DC00050EB79 /* print3.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = print3.cxx; path = ../vcl/source/gdi/print3.cxx; sourceTree = "<group>"; };
		BE82C40418C86DC00050EB79 /* regband.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = regband.cxx; path = ../vcl/source/gdi/regband.cxx; sourceTree = "<group>"; };
		BE82C40518C86DC00050EB79 /* region.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = region.cxx; path = ../vcl/source/gdi/region.cxx; sourceTree = "<group>"; };
		BE82C40618C86DC00050EB79 /* regionband.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = regionband.cxx; path = ../vcl/source/gdi/regionband.cxx; sourceTree = "<group>"; };
		BE82C40718C86DC00050EB79 /* salgdilayout.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = salgdilayout.cxx; path = ../vcl/source/gdi/salgdilayout.cxx; sourceTree = "<group>"; };
		BE82C40818C86DC00050EB79 /* sallayout.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sallayout.cxx; path = ../vcl/source/gdi/sallayout.cxx; sourceTree = "<group>"; };
		BE82C40918C86DC00050EB79 /* salmisc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = salmisc.cxx; path = ../vcl/source/gdi/salmisc.cxx; sourceTree = "<group>"; };
		BE82C40A18C86DC00050EB79 /* salnativewidgets-none.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "salnativewidgets-none.cxx"; path = "../vcl/source/gdi/salnativewidgets-none.cxx"; sourceTree = "<group>"; };
		BE82C40B18C86DC00050EB79 /* svgdata.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svgdata.cxx; path = ../vcl/source/gdi/svgdata.cxx; sourceTree = "<group>"; };
		BE82C40C18C86DC00050EB79 /* textlayout.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textlayout.cxx; path = ../vcl/source/gdi/textlayout.cxx; sourceTree = "<group>"; };
		BE82C40D18C86DC00050EB79 /* virdev.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = virdev.cxx; path = ../vcl/source/gdi/virdev.cxx; sourceTree = "<group>"; };
		BE82C40E18C86DC00050EB79 /* wall.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = wall.cxx; path = ../vcl/source/gdi/wall.cxx; sourceTree = "<group>"; };
		BE82C41018C86E010050EB79 /* button.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = button.cxx; path = ../vcl/source/control/button.cxx; sourceTree = "<group>"; };
		BE82C41118C86E010050EB79 /* combobox.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = combobox.cxx; path = ../vcl/source/control/combobox.cxx; sourceTree = "<group>"; };
		BE82C41218C86E010050EB79 /* ctrl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ctrl.cxx; path = ../vcl/source/control/ctrl.cxx; sourceTree = "<group>"; };
		BE82C41318C86E010050EB79 /* edit.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = edit.cxx; path = ../vcl/source/control/edit.cxx; sourceTree = "<group>"; };
		BE82C41418C86E010050EB79 /* field.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = field.cxx; path = ../vcl/source/control/field.cxx; sourceTree = "<group>"; };
		BE82C41518C86E010050EB79 /* field2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = field2.cxx; path = ../vcl/source/control/field2.cxx; sourceTree = "<group>"; };
		BE82C41618C86E010050EB79 /* fixed.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fixed.cxx; path = ../vcl/source/control/fixed.cxx; sourceTree = "<group>"; };
		BE82C41718C86E010050EB79 /* fixedhyper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fixedhyper.cxx; path = ../vcl/source/control/fixedhyper.cxx; sourceTree = "<group>"; };
		BE82C41818C86E010050EB79 /* group.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = group.cxx; path = ../vcl/source/control/group.cxx; sourceTree = "<group>"; };
		BE82C41918C86E010050EB79 /* ilstbox.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ilstbox.cxx; path = ../vcl/source/control/ilstbox.cxx; sourceTree = "<group>"; };
		BE82C41A18C86E010050EB79 /* imgctrl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = imgctrl.cxx; path = ../vcl/source/control/imgctrl.cxx; sourceTree = "<group>"; };
		BE82C41B18C86E010050EB79 /* longcurr.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = longcurr.cxx; path = ../vcl/source/control/longcurr.cxx; sourceTree = "<group>"; };
		BE82C41C18C86E010050EB79 /* lstbox.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = lstbox.cxx; path = ../vcl/source/control/lstbox.cxx; sourceTree = "<group>"; };
		BE82C41D18C86E010050EB79 /* menubtn.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = menubtn.cxx; path = ../vcl/source/control/menubtn.cxx; sourceTree = "<group>"; };
		BE82C41E18C86E010050EB79 /* morebtn.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = morebtn.cxx; path = ../vcl/source/control/morebtn.cxx; sourceTree = "<group>"; };
		BE82C41F18C86E010050EB79 /* prgsbar.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = prgsbar.cxx; path = ../vcl/source/control/prgsbar.cxx; sourceTree = "<group>"; };
		BE82C42018C86E010050EB79 /* quickselectionengine.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = quickselectionengine.cxx; path = ../vcl/source/control/quickselectionengine.cxx; sourceTree = "<group>"; };
		BE82C42118C86E010050EB79 /* scrbar.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = scrbar.cxx; path = ../vcl/source/control/scrbar.cxx; sourceTree = "<group>"; };
		BE82C42218C86E010050EB79 /* slider.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = slider.cxx; path = ../vcl/source/control/slider.cxx; sourceTree = "<group>"; };
		BE82C42318C86E010050EB79 /* spinbtn.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = spinbtn.cxx; path = ../vcl/source/control/spinbtn.cxx; sourceTree = "<group>"; };
		BE82C42418C86E010050EB79 /* spinfld.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = spinfld.cxx; path = ../vcl/source/control/spinfld.cxx; sourceTree = "<group>"; };
		BE82C42518C86E010050EB79 /* tabctrl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tabctrl.cxx; path = ../vcl/source/control/tabctrl.cxx; sourceTree = "<group>"; };
		BE82C42618C86E010050EB79 /* throbber.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = throbber.cxx; path = ../vcl/source/control/throbber.cxx; sourceTree = "<group>"; };
		BEACEEC7257FC852001BAABA /* itemwin.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = itemwin.cxx; path = ../svx/source/tbxctrls/itemwin.cxx; sourceTree = "<group>"; };
		BEACEEC8257FC852001BAABA /* tbxdrctl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tbxdrctl.cxx; path = ../svx/source/tbxctrls/tbxdrctl.cxx; sourceTree = "<group>"; };
		BEACEEC9257FC852001BAABA /* SvxColorValueSet.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = SvxColorValueSet.cxx; path = ../svx/source/tbxctrls/SvxColorValueSet.cxx; sourceTree = "<group>"; };
		BEACEECA257FC852001BAABA /* linectrl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = linectrl.cxx; path = ../svx/source/tbxctrls/linectrl.cxx; sourceTree = "<group>"; };
		BEACEECB257FC852001BAABA /* tbunocontroller.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tbunocontroller.cxx; path = ../svx/source/tbxctrls/tbunocontroller.cxx; sourceTree = "<group>"; };
		BEACEECC257FC852001BAABA /* extrusioncontrols.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = extrusioncontrols.cxx; path = ../svx/source/tbxctrls/extrusioncontrols.cxx; sourceTree = "<group>"; };
		BEACEECD257FC852001BAABA /* Palette.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Palette.cxx; path = ../svx/source/tbxctrls/Palette.cxx; sourceTree = "<group>"; };
		BEACEECE257FC852001BAABA /* linemetricbox.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = linemetricbox.hxx; path = ../svx/source/tbxctrls/linemetricbox.hxx; sourceTree = "<group>"; };
		BEACEECF257FC852001BAABA /* SvxColorChildWindow.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = SvxColorChildWindow.cxx; path = ../svx/source/tbxctrls/SvxColorChildWindow.cxx; sourceTree = "<group>"; };
		BEACEED0257FC852001BAABA /* tbxcolorupdate.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tbxcolorupdate.cxx; path = ../svx/source/tbxctrls/tbxcolorupdate.cxx; sourceTree = "<group>"; };
		BEACEED1257FC852001BAABA /* verttexttbxctrl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = verttexttbxctrl.cxx; path = ../svx/source/tbxctrls/verttexttbxctrl.cxx; sourceTree = "<group>"; };
		BEACEED2257FC852001BAABA /* PaletteManager.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = PaletteManager.cxx; path = ../svx/source/tbxctrls/PaletteManager.cxx; sourceTree = "<group>"; };
		BEACEED3257FC853001BAABA /* bulletsnumbering.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bulletsnumbering.cxx; path = ../svx/source/tbxctrls/bulletsnumbering.cxx; sourceTree = "<group>"; };
		BEACEED4257FC853001BAABA /* lboxctrl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = lboxctrl.cxx; path = ../svx/source/tbxctrls/lboxctrl.cxx; sourceTree = "<group>"; };
		BEACEED5257FC853001BAABA /* StylesPreviewToolBoxControl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = StylesPreviewToolBoxControl.cxx; path = ../svx/source/tbxctrls/StylesPreviewToolBoxControl.cxx; sourceTree = "<group>"; };
		BEACEED6257FC853001BAABA /* colrctrl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = colrctrl.cxx; path = ../svx/source/tbxctrls/colrctrl.cxx; sourceTree = "<group>"; };
		BEACEED7257FC853001BAABA /* layctrl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = layctrl.cxx; path = ../svx/source/tbxctrls/layctrl.cxx; sourceTree = "<group>"; };
		BEACEED8257FC853001BAABA /* tbcontrl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tbcontrl.cxx; path = ../svx/source/tbxctrls/tbcontrl.cxx; sourceTree = "<group>"; };
		BEACEED9257FC853001BAABA /* formatpaintbrushctrl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = formatpaintbrushctrl.cxx; path = ../svx/source/tbxctrls/formatpaintbrushctrl.cxx; sourceTree = "<group>"; };
		BEACEEDA257FC853001BAABA /* tbunodevtoolscontrollers.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tbunodevtoolscontrollers.cxx; path = ../svx/source/tbxctrls/tbunodevtoolscontrollers.cxx; sourceTree = "<group>"; };
		BEACEEDB257FC853001BAABA /* SvxPresetListBox.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = SvxPresetListBox.cxx; path = ../svx/source/tbxctrls/SvxPresetListBox.cxx; sourceTree = "<group>"; };
		BEACEEDC257FC853001BAABA /* fillctrl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fillctrl.cxx; path = ../svx/source/tbxctrls/fillctrl.cxx; sourceTree = "<group>"; };
		BEACEEDD257FC853001BAABA /* grafctrl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = grafctrl.cxx; path = ../svx/source/tbxctrls/grafctrl.cxx; sourceTree = "<group>"; };
		BEACEEDE257FC853001BAABA /* tbunosearchcontrollers.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tbunosearchcontrollers.cxx; path = ../svx/source/tbxctrls/tbunosearchcontrollers.cxx; sourceTree = "<group>"; };
		BEACEEDF257FC853001BAABA /* extrusioncontrols.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = extrusioncontrols.hxx; path = ../svx/source/tbxctrls/extrusioncontrols.hxx; sourceTree = "<group>"; };
		BEACEEE0257FC853001BAABA /* linewidthctrl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = linewidthctrl.cxx; path = ../svx/source/tbxctrls/linewidthctrl.cxx; sourceTree = "<group>"; };
		BEACEEE1257FC853001BAABA /* StylesPreviewWindow.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = StylesPreviewWindow.cxx; path = ../svx/source/tbxctrls/StylesPreviewWindow.cxx; sourceTree = "<group>"; };
		BEACEEE2257FC853001BAABA /* fontworkgallery.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fontworkgallery.cxx; path = ../svx/source/tbxctrls/fontworkgallery.cxx; sourceTree = "<group>"; };
		BEACEEE3257FC853001BAABA /* tbxcolor.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tbxcolor.cxx; path = ../svx/source/tbxctrls/tbxcolor.cxx; sourceTree = "<group>"; };
		BEBF3E2D246588AE00415E87 /* salinit.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = salinit.cxx; path = ../sal/osl/unx/salinit.cxx; sourceTree = "<group>"; };
		BEBF3E2E246588AE00415E87 /* module.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = module.cxx; path = ../sal/osl/unx/module.cxx; sourceTree = "<group>"; };
		BEBF3E2F246588AE00415E87 /* unixerrnostring.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = unixerrnostring.hxx; path = ../sal/osl/unx/unixerrnostring.hxx; sourceTree = "<group>"; };
		BEBF3E30246588AE00415E87 /* file_url.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = file_url.hxx; path = ../sal/osl/unx/file_url.hxx; sourceTree = "<group>"; };
		BEBF3E31246588AE00415E87 /* file_path_helper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = file_path_helper.cxx; path = ../sal/osl/unx/file_path_helper.cxx; sourceTree = "<group>"; };
		BEBF3E32246588AE00415E87 /* interlck.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = interlck.cxx; path = ../sal/osl/unx/interlck.cxx; sourceTree = "<group>"; };
		BEBF3E33246588AE00415E87 /* file_error_transl.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = file_error_transl.hxx; path = ../sal/osl/unx/file_error_transl.hxx; sourceTree = "<group>"; };
		BEBF3E34246588AE00415E87 /* process_impl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = process_impl.cxx; path = ../sal/osl/unx/process_impl.cxx; sourceTree = "<group>"; };
		BEBF3E35246588AE00415E87 /* file_impl.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = file_impl.hxx; path = ../sal/osl/unx/file_impl.hxx; sourceTree = "<group>"; };
		BEBF3E36246588AE00415E87 /* sockimpl.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = sockimpl.hxx; path = ../sal/osl/unx/sockimpl.hxx; sourceTree = "<group>"; };
		BEBF3E37246588AE00415E87 /* backtrace.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = backtrace.h; path = ../sal/osl/unx/backtrace.h; sourceTree = "<group>"; };
		BEBF3E38246588AE00415E87 /* file_path_helper.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = file_path_helper.hxx; path = ../sal/osl/unx/file_path_helper.hxx; sourceTree = "<group>"; };
		BEBF3E39246588AE00415E87 /* process.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = process.cxx; path = ../sal/osl/unx/process.cxx; sourceTree = "<group>"; };
		BEBF3E3A246588AE00415E87 /* soffice.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = soffice.hxx; path = ../sal/osl/unx/soffice.hxx; sourceTree = "<group>"; };
		BEBF3E3B246588AE00415E87 /* osxlocale.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = osxlocale.cxx; path = ../sal/osl/unx/osxlocale.cxx; sourceTree = "<group>"; };
		BEBF3E3C246588AE00415E87 /* createfilehandlefromfd.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = createfilehandlefromfd.hxx; path = ../sal/osl/unx/createfilehandlefromfd.hxx; sourceTree = "<group>"; };
		BEBF3E3D246588AE00415E87 /* file_stat.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = file_stat.cxx; path = ../sal/osl/unx/file_stat.cxx; sourceTree = "<group>"; };
		BEBF3E3E246588AE00415E87 /* readwrite_helper.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = readwrite_helper.hxx; path = ../sal/osl/unx/readwrite_helper.hxx; sourceTree = "<group>"; };
		BEBF3E3F246588AE00415E87 /* file_error_transl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = file_error_transl.cxx; path = ../sal/osl/unx/file_error_transl.cxx; sourceTree = "<group>"; };
		BEBF3E40246588AE00415E87 /* backtraceapi.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = backtraceapi.cxx; path = ../sal/osl/unx/backtraceapi.cxx; sourceTree = "<group>"; };
		BEBF3E41246588AE00415E87 /* system.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = system.cxx; path = ../sal/osl/unx/system.cxx; sourceTree = "<group>"; };
		BEBF3E42246588AE00415E87 /* nlsupport.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = nlsupport.hxx; path = ../sal/osl/unx/nlsupport.hxx; sourceTree = "<group>"; };
		BEBF3E43246588AE00415E87 /* mutex.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = mutex.cxx; path = ../sal/osl/unx/mutex.cxx; sourceTree = "<group>"; };
		BEBF3E44246588AE00415E87 /* nlsupport.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = nlsupport.cxx; path = ../sal/osl/unx/nlsupport.cxx; sourceTree = "<group>"; };
		BEBF3E45246588AE00415E87 /* file_volume.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = file_volume.cxx; path = ../sal/osl/unx/file_volume.cxx; sourceTree = "<group>"; };
		BEBF3E46246588AE00415E87 /* time.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = time.cxx; path = ../sal/osl/unx/time.cxx; sourceTree = "<group>"; };
		BEBF3E47246588AE00415E87 /* memory.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = memory.cxx; path = ../sal/osl/unx/memory.cxx; sourceTree = "<group>"; };
		BEBF3E48246588AF00415E87 /* conditn.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = conditn.cxx; path = ../sal/osl/unx/conditn.cxx; sourceTree = "<group>"; };
		BEBF3E49246588AF00415E87 /* saltime.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = saltime.hxx; path = ../sal/osl/unx/saltime.hxx; sourceTree = "<group>"; };
		BEBF3E4A246588AF00415E87 /* signal.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = signal.cxx; path = ../sal/osl/unx/signal.cxx; sourceTree = "<group>"; };
		BEBF3E4B246588AF00415E87 /* uunxapi.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = uunxapi.cxx; path = ../sal/osl/unx/uunxapi.cxx; sourceTree = "<group>"; };
		BEBF3E4C246588AF00415E87 /* uunxapi.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = uunxapi.hxx; path = ../sal/osl/unx/uunxapi.hxx; sourceTree = "<group>"; };
		BEBF3E4D246588AF00415E87 /* system.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = system.mm; path = ../sal/osl/unx/system.mm; sourceTree = "<group>"; };
		BEBF3E4E246588AF00415E87 /* file_url.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = file_url.cxx; path = ../sal/osl/unx/file_url.cxx; sourceTree = "<group>"; };
		BEBF3E4F246588AF00415E87 /* readwrite_helper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = readwrite_helper.cxx; path = ../sal/osl/unx/readwrite_helper.cxx; sourceTree = "<group>"; };
		BEBF3E50246588AF00415E87 /* uunxapi.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = uunxapi.mm; path = ../sal/osl/unx/uunxapi.mm; sourceTree = "<group>"; };
		BEBF3E51246588AF00415E87 /* backtrace.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = backtrace.c; path = ../sal/osl/unx/backtrace.c; sourceTree = "<group>"; };
		BEBF3E52246588AF00415E87 /* tempfile.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tempfile.cxx; path = ../sal/osl/unx/tempfile.cxx; sourceTree = "<group>"; };
		BEBF3E53246588AF00415E87 /* security.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = security.cxx; path = ../sal/osl/unx/security.cxx; sourceTree = "<group>"; };
		BEBF3E54246588AF00415E87 /* file_misc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = file_misc.cxx; path = ../sal/osl/unx/file_misc.cxx; sourceTree = "<group>"; };
		BEBF3E55246588AF00415E87 /* profile.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = profile.cxx; path = ../sal/osl/unx/profile.cxx; sourceTree = "<group>"; };
		BEBF3E56246588AF00415E87 /* random.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = random.cxx; path = ../sal/osl/unx/random.cxx; sourceTree = "<group>"; };
		BEBF3E57246588AF00415E87 /* thread.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = thread.cxx; path = ../sal/osl/unx/thread.cxx; sourceTree = "<group>"; };
		BEBF3E58246588AF00415E87 /* file.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = file.cxx; path = ../sal/osl/unx/file.cxx; sourceTree = "<group>"; };
		BEBF3E59246588AF00415E87 /* socket.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = socket.cxx; path = ../sal/osl/unx/socket.cxx; sourceTree = "<group>"; };
		BEBF3E5A246588AF00415E87 /* system.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = system.hxx; path = ../sal/osl/unx/system.hxx; sourceTree = "<group>"; };
		BEBF3E5B246588AF00415E87 /* secimpl.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = secimpl.hxx; path = ../sal/osl/unx/secimpl.hxx; sourceTree = "<group>"; };
		BEBF3E5C246588AF00415E87 /* pipe.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pipe.cxx; path = ../sal/osl/unx/pipe.cxx; sourceTree = "<group>"; };
		BEBF3E5D246588B000415E87 /* soffice.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = soffice.cxx; path = ../sal/osl/unx/soffice.cxx; sourceTree = "<group>"; };
		BEBF3E5F246588D100415E87 /* loadmodulerelative.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = loadmodulerelative.cxx; path = ../sal/osl/all/loadmodulerelative.cxx; sourceTree = "<group>"; };
		BEBF3E60246588D100415E87 /* debugbase.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = debugbase.cxx; path = ../sal/osl/all/debugbase.cxx; sourceTree = "<group>"; };
		BEBF3E61246588D100415E87 /* filepath.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = filepath.cxx; path = ../sal/osl/all/filepath.cxx; sourceTree = "<group>"; };
		BEBF3E62246588D100415E87 /* log.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = log.cxx; path = ../sal/osl/all/log.cxx; sourceTree = "<group>"; };
		BEBF3E63246588D100415E87 /* utility.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = utility.cxx; path = ../sal/osl/all/utility.cxx; sourceTree = "<group>"; };
		BEBF3E64246588D100415E87 /* signalshared.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = signalshared.cxx; path = ../sal/osl/all/signalshared.cxx; sourceTree = "<group>"; };
		BEBF3E65246588D100415E87 /* compat.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = compat.cxx; path = ../sal/osl/all/compat.cxx; sourceTree = "<group>"; };
		BEBF3E69246590A500415E87 /* redlndlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = redlndlg.cxx; path = ../sw/source/uibase/misc/redlndlg.cxx; sourceTree = "<group>"; };
		BEBF3E6A246590A500415E87 /* swruler.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = swruler.cxx; path = ../sw/source/uibase/misc/swruler.cxx; sourceTree = "<group>"; };
		BEBF3E6B246590A500415E87 /* numberingtypelistbox.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = numberingtypelistbox.cxx; path = ../sw/source/uibase/misc/numberingtypelistbox.cxx; sourceTree = "<group>"; };
		BEBF3E6C246590A500415E87 /* glosdoc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = glosdoc.cxx; path = ../sw/source/uibase/misc/glosdoc.cxx; sourceTree = "<group>"; };
		BEBF3E6D246590A500415E87 /* glshell.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = glshell.cxx; path = ../sw/source/uibase/misc/glshell.cxx; sourceTree = "<group>"; };
		BEBF3E70246593C700415E87 /* pgfnote.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pgfnote.cxx; path = ../sw/source/ui/misc/pgfnote.cxx; sourceTree = "<group>"; };
		BEBF3E71246593C700415E87 /* titlepage.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = titlepage.cxx; path = ../sw/source/ui/misc/titlepage.cxx; sourceTree = "<group>"; };
		BEBF3E72246593C700415E87 /* srtdlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = srtdlg.cxx; path = ../sw/source/ui/misc/srtdlg.cxx; sourceTree = "<group>"; };
		BEBF3E73246593C700415E87 /* glosbib.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = glosbib.cxx; path = ../sw/source/ui/misc/glosbib.cxx; sourceTree = "<group>"; };
		BEBF3E74246593C700415E87 /* bookmark.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bookmark.cxx; path = ../sw/source/ui/misc/bookmark.cxx; sourceTree = "<group>"; };
		BEBF3E75246593C700415E87 /* linenum.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = linenum.cxx; path = ../sw/source/ui/misc/linenum.cxx; sourceTree = "<group>"; };
		BEBF3E76246593C700415E87 /* num.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = num.cxx; path = ../sw/source/ui/misc/num.cxx; sourceTree = "<group>"; };
		BEBF3E77246593C700415E87 /* glossary.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = glossary.cxx; path = ../sw/source/ui/misc/glossary.cxx; sourceTree = "<group>"; };
		BEBF3E78246593C700415E87 /* insfnote.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = insfnote.cxx; path = ../sw/source/ui/misc/insfnote.cxx; sourceTree = "<group>"; };
		BEBF3E79246593C700415E87 /* outline.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = outline.cxx; path = ../sw/source/ui/misc/outline.cxx; sourceTree = "<group>"; };
		BEBF3E7A246593C700415E87 /* impfnote.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = impfnote.hxx; path = ../sw/source/ui/misc/impfnote.hxx; sourceTree = "<group>"; };
		BEBF3E7B246593C700415E87 /* docfnote.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docfnote.cxx; path = ../sw/source/ui/misc/docfnote.cxx; sourceTree = "<group>"; };
		BEBF3E7C246593C700415E87 /* swmodalredlineacceptdlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = swmodalredlineacceptdlg.cxx; path = ../sw/source/ui/misc/swmodalredlineacceptdlg.cxx; sourceTree = "<group>"; };
		BEBF3E7D246593C700415E87 /* pggrid.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pggrid.cxx; path = ../sw/source/ui/misc/pggrid.cxx; sourceTree = "<group>"; };
		BEBF3E81246ACFCA00415E87 /* dp_extensionmanager.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = dp_extensionmanager.hxx; path = ../desktop/source/deployment/manager/dp_extensionmanager.hxx; sourceTree = "<group>"; };
		BEBF3E82246ACFCA00415E87 /* dp_manager.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = dp_manager.h; path = ../desktop/source/deployment/manager/dp_manager.h; sourceTree = "<group>"; };
		BEBF3E83246ACFCA00415E87 /* dp_managerfac.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dp_managerfac.cxx; path = ../desktop/source/deployment/manager/dp_managerfac.cxx; sourceTree = "<group>"; };
		BEBF3E84246ACFCA00415E87 /* dp_manager.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dp_manager.cxx; path = ../desktop/source/deployment/manager/dp_manager.cxx; sourceTree = "<group>"; };
		BEBF3E85246ACFCA00415E87 /* dp_extensionmanager.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dp_extensionmanager.cxx; path = ../desktop/source/deployment/manager/dp_extensionmanager.cxx; sourceTree = "<group>"; };
		BEBF3E86246ACFCA00415E87 /* dp_activepackages.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = dp_activepackages.hxx; path = ../desktop/source/deployment/manager/dp_activepackages.hxx; sourceTree = "<group>"; };
		BEBF3E87246ACFCA00415E87 /* dp_commandenvironments.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = dp_commandenvironments.hxx; path = ../desktop/source/deployment/manager/dp_commandenvironments.hxx; sourceTree = "<group>"; };
		BEBF3E88246ACFCA00415E87 /* dp_properties.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dp_properties.cxx; path = ../desktop/source/deployment/manager/dp_properties.cxx; sourceTree = "<group>"; };
		BEBF3E89246ACFCA00415E87 /* dp_properties.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = dp_properties.hxx; path = ../desktop/source/deployment/manager/dp_properties.hxx; sourceTree = "<group>"; };
		BEBF3E8A246ACFCA00415E87 /* dp_informationprovider.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dp_informationprovider.cxx; path = ../desktop/source/deployment/manager/dp_informationprovider.cxx; sourceTree = "<group>"; };
		BEBF3E8B246ACFCA00415E87 /* dp_activepackages.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dp_activepackages.cxx; path = ../desktop/source/deployment/manager/dp_activepackages.cxx; sourceTree = "<group>"; };
		BEBF3E8C246ACFCA00415E87 /* dp_commandenvironments.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dp_commandenvironments.cxx; path = ../desktop/source/deployment/manager/dp_commandenvironments.cxx; sourceTree = "<group>"; };
		BEBF3E90246AD75500415E87 /* filrow.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = filrow.hxx; path = ../ucb/source/ucp/file/filrow.hxx; sourceTree = "<group>"; };
		BEBF3E91246AD75500415E87 /* filrec.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = filrec.hxx; path = ../ucb/source/ucp/file/filrec.hxx; sourceTree = "<group>"; };
		BEBF3E92246AD75500415E87 /* filrset.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = filrset.cxx; path = ../ucb/source/ucp/file/filrset.cxx; sourceTree = "<group>"; };
		BEBF3E93246AD75500415E87 /* filprp.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = filprp.hxx; path = ../ucb/source/ucp/file/filprp.hxx; sourceTree = "<group>"; };
		BEBF3E94246AD75500415E87 /* filnot.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = filnot.hxx; path = ../ucb/source/ucp/file/filnot.hxx; sourceTree = "<group>"; };
		BEBF3E95246AD75500415E87 /* filrset.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = filrset.hxx; path = ../ucb/source/ucp/file/filrset.hxx; sourceTree = "<group>"; };
		BEBF3E96246AD75500415E87 /* filtask.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = filtask.cxx; path = ../ucb/source/ucp/file/filtask.cxx; sourceTree = "<group>"; };
		BEBF3E97246AD75500415E87 /* prov.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = prov.cxx; path = ../ucb/source/ucp/file/prov.cxx; sourceTree = "<group>"; };
		BEBF3E98246AD75500415E87 /* filinsreq.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = filinsreq.cxx; path = ../ucb/source/ucp/file/filinsreq.cxx; sourceTree = "<group>"; };
		BEBF3E99246AD75500415E87 /* filid.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = filid.hxx; path = ../ucb/source/ucp/file/filid.hxx; sourceTree = "<group>"; };
		BEBF3E9A246AD75500415E87 /* filcmd.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = filcmd.hxx; path = ../ucb/source/ucp/file/filcmd.hxx; sourceTree = "<group>"; };
		BEBF3E9B246AD75500415E87 /* bc.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = bc.hxx; path = ../ucb/source/ucp/file/bc.hxx; sourceTree = "<group>"; };
		BEBF3E9C246AD75500415E87 /* filglob.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = filglob.cxx; path = ../ucb/source/ucp/file/filglob.cxx; sourceTree = "<group>"; };
		BEBF3E9D246AD75500415E87 /* filtask.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = filtask.hxx; path = ../ucb/source/ucp/file/filtask.hxx; sourceTree = "<group>"; };
		BEBF3E9E246AD75500415E87 /* bc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bc.cxx; path = ../ucb/source/ucp/file/bc.cxx; sourceTree = "<group>"; };
		BEBF3E9F246AD75500415E87 /* filnot.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = filnot.cxx; path = ../ucb/source/ucp/file/filnot.cxx; sourceTree = "<group>"; };
		BEBF3EA0246AD75500415E87 /* filrow.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = filrow.cxx; path = ../ucb/source/ucp/file/filrow.cxx; sourceTree = "<group>"; };
		BEBF3EA1246AD75500415E87 /* prov.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = prov.hxx; path = ../ucb/source/ucp/file/prov.hxx; sourceTree = "<group>"; };
		BEBF3EA2246AD75500415E87 /* filrec.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = filrec.cxx; path = ../ucb/source/ucp/file/filrec.cxx; sourceTree = "<group>"; };
		BEBF3EA3246AD75500415E87 /* filinsreq.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = filinsreq.hxx; path = ../ucb/source/ucp/file/filinsreq.hxx; sourceTree = "<group>"; };
		BEBF3EA4246AD75500415E87 /* filstr.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = filstr.hxx; path = ../ucb/source/ucp/file/filstr.hxx; sourceTree = "<group>"; };
		BEBF3EA5246AD75500415E87 /* filinpstr.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = filinpstr.cxx; path = ../ucb/source/ucp/file/filinpstr.cxx; sourceTree = "<group>"; };
		BEBF3EA6246AD75500415E87 /* filid.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = filid.cxx; path = ../ucb/source/ucp/file/filid.cxx; sourceTree = "<group>"; };
		BEBF3EA7246AD75500415E87 /* filprp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = filprp.cxx; path = ../ucb/source/ucp/file/filprp.cxx; sourceTree = "<group>"; };
		BEBF3EA8246AD75500415E87 /* filerror.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = filerror.hxx; path = ../ucb/source/ucp/file/filerror.hxx; sourceTree = "<group>"; };
		BEBF3EA9246AD75500415E87 /* filglob.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = filglob.hxx; path = ../ucb/source/ucp/file/filglob.hxx; sourceTree = "<group>"; };
		BEBF3EAA246AD75500415E87 /* filstr.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = filstr.cxx; path = ../ucb/source/ucp/file/filstr.cxx; sourceTree = "<group>"; };
		BEBF3EAB246AD75500415E87 /* filcmd.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = filcmd.cxx; path = ../ucb/source/ucp/file/filcmd.cxx; sourceTree = "<group>"; };
		BEBF3EAC246AD75500415E87 /* filinl.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = filinl.hxx; path = ../ucb/source/ucp/file/filinl.hxx; sourceTree = "<group>"; };
		BEBF3EAD246AD75600415E87 /* filinpstr.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = filinpstr.hxx; path = ../ucb/source/ucp/file/filinpstr.hxx; sourceTree = "<group>"; };
		BEBF3EB22472A92D00415E87 /* dp_gui_dependencydialog.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dp_gui_dependencydialog.cxx; path = ../desktop/source/deployment/gui/dp_gui_dependencydialog.cxx; sourceTree = "<group>"; };
		BEBF3EB32472A92D00415E87 /* dp_gui_extensioncmdqueue.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = dp_gui_extensioncmdqueue.hxx; path = ../desktop/source/deployment/gui/dp_gui_extensioncmdqueue.hxx; sourceTree = "<group>"; };
		BEBF3EB42472A92D00415E87 /* dp_gui_theextmgr.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = dp_gui_theextmgr.hxx; path = ../desktop/source/deployment/gui/dp_gui_theextmgr.hxx; sourceTree = "<group>"; };
		BEBF3EB52472A92D00415E87 /* license_dialog.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = license_dialog.hxx; path = ../desktop/source/deployment/gui/license_dialog.hxx; sourceTree = "<group>"; };
		BEBF3EB62472A92D00415E87 /* dp_gui_dependencydialog.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = dp_gui_dependencydialog.hxx; path = ../desktop/source/deployment/gui/dp_gui_dependencydialog.hxx; sourceTree = "<group>"; };
		BEBF3EB72472A92D00415E87 /* dp_gui_updatedialog.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dp_gui_updatedialog.cxx; path = ../desktop/source/deployment/gui/dp_gui_updatedialog.cxx; sourceTree = "<group>"; };
		BEBF3EB82472A92D00415E87 /* license_dialog.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = license_dialog.cxx; path = ../desktop/source/deployment/gui/license_dialog.cxx; sourceTree = "<group>"; };
		BEBF3EB92472A92D00415E87 /* dp_gui_dialog2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dp_gui_dialog2.cxx; path = ../desktop/source/deployment/gui/dp_gui_dialog2.cxx; sourceTree = "<group>"; };
		BEBF3EBA2472A92D00415E87 /* dp_gui_updateinstalldialog.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dp_gui_updateinstalldialog.cxx; path = ../desktop/source/deployment/gui/dp_gui_updateinstalldialog.cxx; sourceTree = "<group>"; };
		BEBF3EBB2472A92D00415E87 /* dp_gui_theextmgr.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dp_gui_theextmgr.cxx; path = ../desktop/source/deployment/gui/dp_gui_theextmgr.cxx; sourceTree = "<group>"; };
		BEBF3EBC2472A92D00415E87 /* dp_gui_service.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dp_gui_service.cxx; path = ../desktop/source/deployment/gui/dp_gui_service.cxx; sourceTree = "<group>"; };
		BEBF3EBD2472A92D00415E87 /* dp_gui_updatedata.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = dp_gui_updatedata.hxx; path = ../desktop/source/deployment/gui/dp_gui_updatedata.hxx; sourceTree = "<group>"; };
		BEBF3EBE2472A92D00415E87 /* dp_gui_extlistbox.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dp_gui_extlistbox.cxx; path = ../desktop/source/deployment/gui/dp_gui_extlistbox.cxx; sourceTree = "<group>"; };
		BEBF3EBF2472A92D00415E87 /* dp_gui_extlistbox.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = dp_gui_extlistbox.hxx; path = ../desktop/source/deployment/gui/dp_gui_extlistbox.hxx; sourceTree = "<group>"; };
		BEBF3EC02472A92D00415E87 /* dp_gui_extensioncmdqueue.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dp_gui_extensioncmdqueue.cxx; path = ../desktop/source/deployment/gui/dp_gui_extensioncmdqueue.cxx; sourceTree = "<group>"; };
		BEBF3EC12472A92D00415E87 /* dp_gui_updateinstalldialog.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = dp_gui_updateinstalldialog.hxx; path = ../desktop/source/deployment/gui/dp_gui_updateinstalldialog.hxx; sourceTree = "<group>"; };
		BEBF3EC22472A92D00415E87 /* dp_gui_updatedialog.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = dp_gui_updatedialog.hxx; path = ../desktop/source/deployment/gui/dp_gui_updatedialog.hxx; sourceTree = "<group>"; };
		BEBF3EC32472A92D00415E87 /* dp_gui_dialog2.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = dp_gui_dialog2.hxx; path = ../desktop/source/deployment/gui/dp_gui_dialog2.hxx; sourceTree = "<group>"; };
		BEBF3EC42472A92D00415E87 /* dp_gui.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = dp_gui.h; path = ../desktop/source/deployment/gui/dp_gui.h; sourceTree = "<group>"; };
		BEBF3EC72472AC5900415E87 /* dp_extbackenddb.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = dp_extbackenddb.hxx; path = ../desktop/source/deployment/registry/package/dp_extbackenddb.hxx; sourceTree = "<group>"; };
		BEBF3EC82472AC5900415E87 /* dp_extbackenddb.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dp_extbackenddb.cxx; path = ../desktop/source/deployment/registry/package/dp_extbackenddb.cxx; sourceTree = "<group>"; };
		BEBF3EC92472AC5900415E87 /* dp_package.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dp_package.cxx; path = ../desktop/source/deployment/registry/package/dp_package.cxx; sourceTree = "<group>"; };
		BEBF3ECB2472B21600415E87 /* dp_interact.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dp_interact.cxx; path = ../desktop/source/deployment/misc/dp_interact.cxx; sourceTree = "<group>"; };
		BEBF3ECC2472B21600415E87 /* dp_platform.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dp_platform.cxx; path = ../desktop/source/deployment/misc/dp_platform.cxx; sourceTree = "<group>"; };
		BEBF3ECD2472B21600415E87 /* dp_identifier.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dp_identifier.cxx; path = ../desktop/source/deployment/misc/dp_identifier.cxx; sourceTree = "<group>"; };
		BEBF3ECE2472B21600415E87 /* dp_descriptioninfoset.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dp_descriptioninfoset.cxx; path = ../desktop/source/deployment/misc/dp_descriptioninfoset.cxx; sourceTree = "<group>"; };
		BEBF3ECF2472B21600415E87 /* dp_update.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dp_update.cxx; path = ../desktop/source/deployment/misc/dp_update.cxx; sourceTree = "<group>"; };
		BEBF3ED02472B21600415E87 /* lockfile.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = lockfile.cxx; path = ../desktop/source/deployment/misc/lockfile.cxx; sourceTree = "<group>"; };
		BEBF3ED12472B21600415E87 /* dp_resource.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dp_resource.cxx; path = ../desktop/source/deployment/misc/dp_resource.cxx; sourceTree = "<group>"; };
		BEBF3ED22472B21600415E87 /* dp_version.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dp_version.cxx; path = ../desktop/source/deployment/misc/dp_version.cxx; sourceTree = "<group>"; };
		BEBF3ED32472B21600415E87 /* dp_misc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dp_misc.cxx; path = ../desktop/source/deployment/misc/dp_misc.cxx; sourceTree = "<group>"; };
		BEBF3ED42472B21600415E87 /* dp_dependencies.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dp_dependencies.cxx; path = ../desktop/source/deployment/misc/dp_dependencies.cxx; sourceTree = "<group>"; };
		BEBF3ED52472B21600415E87 /* dp_ucb.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dp_ucb.cxx; path = ../desktop/source/deployment/misc/dp_ucb.cxx; sourceTree = "<group>"; };
		BEC676DE17461A720069E01D /* dbggui.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dbggui.cxx; path = ../vcl/source/app/dbggui.cxx; sourceTree = "<group>"; };
		BEDCC8B92459A10600FB02BD /* unointerfaceproxy.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = unointerfaceproxy.cxx; path = ../bridges/source/cpp_uno/shared/unointerfaceproxy.cxx; sourceTree = "<group>"; };
		BEDCC8BA2459A10600FB02BD /* types.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = types.cxx; path = ../bridges/source/cpp_uno/shared/types.cxx; sourceTree = "<group>"; };
		BEDCC8BB2459A10600FB02BD /* vtables.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vtables.cxx; path = ../bridges/source/cpp_uno/shared/vtables.cxx; sourceTree = "<group>"; };
		BEDCC8BC2459A10600FB02BD /* vtablefactory.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vtablefactory.cxx; path = ../bridges/source/cpp_uno/shared/vtablefactory.cxx; sourceTree = "<group>"; };
		BEDCC8BD2459A10600FB02BD /* bridge.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bridge.cxx; path = ../bridges/source/cpp_uno/shared/bridge.cxx; sourceTree = "<group>"; };
		BEDCC8BE2459A10600FB02BD /* component.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = component.cxx; path = ../bridges/source/cpp_uno/shared/component.cxx; sourceTree = "<group>"; };
		BEDCC8BF2459A10600FB02BD /* cppinterfaceproxy.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cppinterfaceproxy.cxx; path = ../bridges/source/cpp_uno/shared/cppinterfaceproxy.cxx; sourceTree = "<group>"; };
		BEDCC8C12459A12E00FB02BD /* uno2cpp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = uno2cpp.cxx; path = "../bridges/source/cpp_uno/gcc3_macosx_x86-64/uno2cpp.cxx"; sourceTree = "<group>"; };
		BEDCC8C22459A12E00FB02BD /* cpp2uno.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cpp2uno.cxx; path = "../bridges/source/cpp_uno/gcc3_macosx_x86-64/cpp2uno.cxx"; sourceTree = "<group>"; };
		BEDCC8C32459A12E00FB02BD /* share.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = share.hxx; path = "../bridges/source/cpp_uno/gcc3_macosx_x86-64/share.hxx"; sourceTree = "<group>"; };
		BEDCC8C42459A12E00FB02BD /* except.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = except.cxx; path = "../bridges/source/cpp_uno/gcc3_macosx_x86-64/except.cxx"; sourceTree = "<group>"; };
		BEDCC8C52459A12E00FB02BD /* abi.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = abi.cxx; path = "../bridges/source/cpp_uno/gcc3_macosx_x86-64/abi.cxx"; sourceTree = "<group>"; };
		BEDCC8C62459A12E00FB02BD /* call.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = call.cxx; path = "../bridges/source/cpp_uno/gcc3_macosx_x86-64/call.cxx"; sourceTree = "<group>"; };
		BEDCC8C72459A12E00FB02BD /* call.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = call.hxx; path = "../bridges/source/cpp_uno/gcc3_macosx_x86-64/call.hxx"; sourceTree = "<group>"; };
		BEDCC8C82459A12E00FB02BD /* abi.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = abi.hxx; path = "../bridges/source/cpp_uno/gcc3_macosx_x86-64/abi.hxx"; sourceTree = "<group>"; };
		BEDCC8C92459A12E00FB02BD /* callvirtualmethod.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = callvirtualmethod.hxx; path = "../bridges/source/cpp_uno/gcc3_macosx_x86-64/callvirtualmethod.hxx"; sourceTree = "<group>"; };
		BEDCC8CA2459A12E00FB02BD /* callvirtualmethod.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = callvirtualmethod.cxx; path = "../bridges/source/cpp_uno/gcc3_macosx_x86-64/callvirtualmethod.cxx"; sourceTree = "<group>"; };
		BEDCC8F2246080F600FB02BD /* transliterationwrapper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = transliterationwrapper.cxx; path = ../unotools/source/i18n/transliterationwrapper.cxx; sourceTree = "<group>"; };
		BEDCC8F3246080F600FB02BD /* localedatawrapper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = localedatawrapper.cxx; path = ../unotools/source/i18n/localedatawrapper.cxx; sourceTree = "<group>"; };
		BEDCC8F4246080F600FB02BD /* readwritemutexguard.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = readwritemutexguard.cxx; path = ../unotools/source/i18n/readwritemutexguard.cxx; sourceTree = "<group>"; };
		BEDCC8F5246080F600FB02BD /* resmgr.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = resmgr.cxx; path = ../unotools/source/i18n/resmgr.cxx; sourceTree = "<group>"; };
		BEDCC8F6246080F600FB02BD /* calendarwrapper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = calendarwrapper.cxx; path = ../unotools/source/i18n/calendarwrapper.cxx; sourceTree = "<group>"; };
		BEDCC8F7246080F600FB02BD /* charclass.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = charclass.cxx; path = ../unotools/source/i18n/charclass.cxx; sourceTree = "<group>"; };
		BEDCC8F8246080F600FB02BD /* caserotate.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = caserotate.cxx; path = ../unotools/source/i18n/caserotate.cxx; sourceTree = "<group>"; };
		BEDCC8F9246080F600FB02BD /* intlwrapper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = intlwrapper.cxx; path = ../unotools/source/i18n/intlwrapper.cxx; sourceTree = "<group>"; };
		BEDCC8FA246080F600FB02BD /* nativenumberwrapper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = nativenumberwrapper.cxx; path = ../unotools/source/i18n/nativenumberwrapper.cxx; sourceTree = "<group>"; };
		BEDCC8FB246080F600FB02BD /* collatorwrapper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = collatorwrapper.cxx; path = ../unotools/source/i18n/collatorwrapper.cxx; sourceTree = "<group>"; };
		BEDCC8FC246080F600FB02BD /* textsearch.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textsearch.cxx; path = ../unotools/source/i18n/textsearch.cxx; sourceTree = "<group>"; };
		BEDCC8FF2460830800FB02BD /* opthtml.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = opthtml.hxx; path = ../cui/source/options/opthtml.hxx; sourceTree = "<group>"; };
		BEDCC9002460830800FB02BD /* sdbcdriverenum.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sdbcdriverenum.cxx; path = ../cui/source/options/sdbcdriverenum.cxx; sourceTree = "<group>"; };
		BEDCC9012460830800FB02BD /* fontsubs.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fontsubs.cxx; path = ../cui/source/options/fontsubs.cxx; sourceTree = "<group>"; };
		BEDCC9022460830800FB02BD /* connpoolsettings.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = connpoolsettings.hxx; path = ../cui/source/options/connpoolsettings.hxx; sourceTree = "<group>"; };
		BEDCC9032460830800FB02BD /* opthtml.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = opthtml.cxx; path = ../cui/source/options/opthtml.cxx; sourceTree = "<group>"; };
		BEDCC9042460830800FB02BD /* securityoptions.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = securityoptions.cxx; path = ../cui/source/options/securityoptions.cxx; sourceTree = "<group>"; };
		BEDCC9052460830800FB02BD /* dbregisterednamesconfig.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = dbregisterednamesconfig.hxx; path = ../cui/source/options/dbregisterednamesconfig.hxx; sourceTree = "<group>"; };
		BEDCC9062460830800FB02BD /* webconninfo.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = webconninfo.hxx; path = ../cui/source/options/webconninfo.hxx; sourceTree = "<group>"; };
		BEDCC9072460830800FB02BD /* connpoolsettings.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = connpoolsettings.cxx; path = ../cui/source/options/connpoolsettings.cxx; sourceTree = "<group>"; };
		BEDCC9082460830800FB02BD /* personalization.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = personalization.cxx; path = ../cui/source/options/personalization.cxx; sourceTree = "<group>"; };
		BEDCC9092460830800FB02BD /* connpoolconfig.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = connpoolconfig.cxx; path = ../cui/source/options/connpoolconfig.cxx; sourceTree = "<group>"; };
		BEDCC90A2460830800FB02BD /* doclinkdialog.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = doclinkdialog.cxx; path = ../cui/source/options/doclinkdialog.cxx; sourceTree = "<group>"; };
		BEDCC90B2460830900FB02BD /* certpath.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = certpath.hxx; path = ../cui/source/options/certpath.hxx; sourceTree = "<group>"; };
		BEDCC90C2460830900FB02BD /* treeopt.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = treeopt.cxx; path = ../cui/source/options/treeopt.cxx; sourceTree = "<group>"; };
		BEDCC90D2460830900FB02BD /* optcolor.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = optcolor.hxx; path = ../cui/source/options/optcolor.hxx; sourceTree = "<group>"; };
		BEDCC90E2460830900FB02BD /* optgdlg.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = optgdlg.hxx; path = ../cui/source/options/optgdlg.hxx; sourceTree = "<group>"; };
		BEDCC90F2460830900FB02BD /* tsaurls.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = tsaurls.hxx; path = ../cui/source/options/tsaurls.hxx; sourceTree = "<group>"; };
		BEDCC9102460830900FB02BD /* optaboutconfig.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = optaboutconfig.cxx; path = ../cui/source/options/optaboutconfig.cxx; sourceTree = "<group>"; };
		BEDCC9112460830900FB02BD /* optopencl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = optopencl.cxx; path = ../cui/source/options/optopencl.cxx; sourceTree = "<group>"; };
		BEDCC9122460830900FB02BD /* optjsearch.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = optjsearch.cxx; path = ../cui/source/options/optjsearch.cxx; sourceTree = "<group>"; };
		BEDCC9132460830900FB02BD /* optupdt.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = optupdt.hxx; path = ../cui/source/options/optupdt.hxx; sourceTree = "<group>"; };
		BEDCC9142460830900FB02BD /* optupdt.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = optupdt.cxx; path = ../cui/source/options/optupdt.cxx; sourceTree = "<group>"; };
		BEDCC9152460830900FB02BD /* sdbcdriverenum.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = sdbcdriverenum.hxx; path = ../cui/source/options/sdbcdriverenum.hxx; sourceTree = "<group>"; };
		BEDCC9162460830900FB02BD /* optbasic.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = optbasic.hxx; path = ../cui/source/options/optbasic.hxx; sourceTree = "<group>"; };
		BEDCC9172460830900FB02BD /* dbregister.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dbregister.cxx; path = ../cui/source/options/dbregister.cxx; sourceTree = "<group>"; };
		BEDCC9182460830900FB02BD /* optfltr.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = optfltr.hxx; path = ../cui/source/options/optfltr.hxx; sourceTree = "<group>"; };
		BEDCC9192460830900FB02BD /* optaccessibility.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = optaccessibility.cxx; path = ../cui/source/options/optaccessibility.cxx; sourceTree = "<group>"; };
		BEDCC91A2460830A00FB02BD /* cfgchart.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cfgchart.cxx; path = ../cui/source/options/cfgchart.cxx; sourceTree = "<group>"; };
		BEDCC91B2460830A00FB02BD /* connpooloptions.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = connpooloptions.cxx; path = ../cui/source/options/connpooloptions.cxx; sourceTree = "<group>"; };
		BEDCC91C2460830A00FB02BD /* fontsubs.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = fontsubs.hxx; path = ../cui/source/options/fontsubs.hxx; sourceTree = "<group>"; };
		BEDCC91D2460830A00FB02BD /* webconninfo.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = webconninfo.cxx; path = ../cui/source/options/webconninfo.cxx; sourceTree = "<group>"; };
		BEDCC91E2460830A00FB02BD /* optchart.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = optchart.hxx; path = ../cui/source/options/optchart.hxx; sourceTree = "<group>"; };
		BEDCC91F2460830A00FB02BD /* cuisrchdlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cuisrchdlg.cxx; path = ../cui/source/options/cuisrchdlg.cxx; sourceTree = "<group>"; };
		BEDCC9202460830A00FB02BD /* optctl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = optctl.cxx; path = ../cui/source/options/optctl.cxx; sourceTree = "<group>"; };
		BEDCC9212460830A00FB02BD /* optgenrl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = optgenrl.cxx; path = ../cui/source/options/optgenrl.cxx; sourceTree = "<group>"; };
		BEDCC9222460830A00FB02BD /* dbregistersettings.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = dbregistersettings.hxx; path = ../cui/source/options/dbregistersettings.hxx; sourceTree = "<group>"; };
		BEDCC9232460830A00FB02BD /* optpath.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = optpath.cxx; path = ../cui/source/options/optpath.cxx; sourceTree = "<group>"; };
		BEDCC9242460830A00FB02BD /* optsave.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = optsave.hxx; path = ../cui/source/options/optsave.hxx; sourceTree = "<group>"; };
		BEDCC9252460830A00FB02BD /* optjsearch.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = optjsearch.hxx; path = ../cui/source/options/optjsearch.hxx; sourceTree = "<group>"; };
		BEDCC9262460830A00FB02BD /* certpath.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = certpath.cxx; path = ../cui/source/options/certpath.cxx; sourceTree = "<group>"; };
		BEDCC9272460830A00FB02BD /* optlingu.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = optlingu.cxx; path = ../cui/source/options/optlingu.cxx; sourceTree = "<group>"; };
		BEDCC9282460830B00FB02BD /* securityoptions.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = securityoptions.hxx; path = ../cui/source/options/securityoptions.hxx; sourceTree = "<group>"; };
		BEDCC9292460830B00FB02BD /* dbregistersettings.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dbregistersettings.cxx; path = ../cui/source/options/dbregistersettings.cxx; sourceTree = "<group>"; };
		BEDCC92A2460830B00FB02BD /* optsave.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = optsave.cxx; path = ../cui/source/options/optsave.cxx; sourceTree = "<group>"; };
		BEDCC92B2460830B00FB02BD /* optctl.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = optctl.hxx; path = ../cui/source/options/optctl.hxx; sourceTree = "<group>"; };
		BEDCC92C2460830B00FB02BD /* optaccessibility.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = optaccessibility.hxx; path = ../cui/source/options/optaccessibility.hxx; sourceTree = "<group>"; };
		BEDCC92D2460830B00FB02BD /* connpooloptions.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = connpooloptions.hxx; path = ../cui/source/options/connpooloptions.hxx; sourceTree = "<group>"; };
		BEDCC92E2460830B00FB02BD /* optdict.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = optdict.cxx; path = ../cui/source/options/optdict.cxx; sourceTree = "<group>"; };
		BEDCC92F2460830B00FB02BD /* optcolor.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = optcolor.cxx; path = ../cui/source/options/optcolor.cxx; sourceTree = "<group>"; };
		BEDCC9302460830B00FB02BD /* optjava.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = optjava.cxx; path = ../cui/source/options/optjava.cxx; sourceTree = "<group>"; };
		BEDCC9312460830B00FB02BD /* optfltr.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = optfltr.cxx; path = ../cui/source/options/optfltr.cxx; sourceTree = "<group>"; };
		BEDCC9322460830B00FB02BD /* dbregisterednamesconfig.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dbregisterednamesconfig.cxx; path = ../cui/source/options/dbregisterednamesconfig.cxx; sourceTree = "<group>"; };
		BEDCC9332460830B00FB02BD /* optopencl.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = optopencl.hxx; path = ../cui/source/options/optopencl.hxx; sourceTree = "<group>"; };
		BEDCC9342460830C00FB02BD /* optgdlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = optgdlg.cxx; path = ../cui/source/options/optgdlg.cxx; sourceTree = "<group>"; };
		BEDCC9352460830C00FB02BD /* optinet2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = optinet2.cxx; path = ../cui/source/options/optinet2.cxx; sourceTree = "<group>"; };
		BEDCC9362460830C00FB02BD /* optinet2.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = optinet2.hxx; path = ../cui/source/options/optinet2.hxx; sourceTree = "<group>"; };
		BEDCC9372460830C00FB02BD /* personalization.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = personalization.hxx; path = ../cui/source/options/personalization.hxx; sourceTree = "<group>"; };
		BEDCC9382460830C00FB02BD /* cfgchart.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = cfgchart.hxx; path = ../cui/source/options/cfgchart.hxx; sourceTree = "<group>"; };
		BEDCC9392460830C00FB02BD /* optchart.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = optchart.cxx; path = ../cui/source/options/optchart.cxx; sourceTree = "<group>"; };
		BEDCC93A2460830C00FB02BD /* connpoolconfig.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = connpoolconfig.hxx; path = ../cui/source/options/connpoolconfig.hxx; sourceTree = "<group>"; };
		BEDCC93B2460830C00FB02BD /* tsaurls.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tsaurls.cxx; path = ../cui/source/options/tsaurls.cxx; sourceTree = "<group>"; };
		BEDCC93C2460830C00FB02BD /* optaboutconfig.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = optaboutconfig.hxx; path = ../cui/source/options/optaboutconfig.hxx; sourceTree = "<group>"; };
		BEDCC93D2460830C00FB02BD /* optasian.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = optasian.cxx; path = ../cui/source/options/optasian.cxx; sourceTree = "<group>"; };
		BEDCC93E2460830C00FB02BD /* optjava.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = optjava.hxx; path = ../cui/source/options/optjava.hxx; sourceTree = "<group>"; };
		BEDCC93F2460830C00FB02BD /* optbasic.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = optbasic.cxx; path = ../cui/source/options/optbasic.cxx; sourceTree = "<group>"; };
		BEDCC9402460830D00FB02BD /* doclinkdialog.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = doclinkdialog.hxx; path = ../cui/source/options/doclinkdialog.hxx; sourceTree = "<group>"; };
/* End PBXFileReference section */

/* Begin PBXGroup section */
		BE017B8525AF2A5A00244ED8 /* ui */ = {
			isa = PBXGroup;
			children = (
				BE017B8625AF2A7A00244ED8 /* docshell */,
				BE017BF725AF563F00244ED8 /* miscdlgs */,
				BE017BA225AF2AE400244ED8 /* view */,
			);
			name = ui;
			sourceTree = "<group>";
		};
		BE017B8625AF2A7A00244ED8 /* docshell */ = {
			isa = PBXGroup;
			children = (
				BE017B9325AF2ABF00244ED8 /* arealink.cxx */,
				BE017B8725AF2ABE00244ED8 /* autostyl.cxx */,
				BE017B9125AF2ABE00244ED8 /* datastream.cxx */,
				BE017B9D25AF2ABF00244ED8 /* dbdocfun.cxx */,
				BE017B9525AF2ABF00244ED8 /* dbdocimp.cxx */,
				BE017B8B25AF2ABE00244ED8 /* docfunc.cxx */,
				BE017BA125AF2ABF00244ED8 /* docfuncutil.cxx */,
				BE017B9825AF2ABF00244ED8 /* docsh.cxx */,
				BE017B9C25AF2ABF00244ED8 /* docsh2.cxx */,
				BE017B8D25AF2ABE00244ED8 /* docsh3.cxx */,
				BE017B8925AF2ABE00244ED8 /* docsh4.cxx */,
				BE017B9A25AF2ABF00244ED8 /* docsh5.cxx */,
				BE017B9225AF2ABE00244ED8 /* docsh6.cxx */,
				BE017B9725AF2ABF00244ED8 /* docsh8.cxx */,
				BE017B9425AF2ABF00244ED8 /* docshimp.hxx */,
				BE017B8E25AF2ABE00244ED8 /* documentlinkmgr.cxx */,
				BE017B8A25AF2ABE00244ED8 /* editable.cxx */,
				BE017B9025AF2ABE00244ED8 /* externalrefmgr.cxx */,
				BE017B9B25AF2ABF00244ED8 /* impex.cxx */,
				BE017BA025AF2ABF00244ED8 /* macromgr.cxx */,
				BE017B9925AF2ABF00244ED8 /* olinefun.cxx */,
				BE017B8C25AF2ABE00244ED8 /* pagedata.cxx */,
				BE017B9625AF2ABF00244ED8 /* pntlock.cxx */,
				BE017B8825AF2ABE00244ED8 /* servobj.cxx */,
				BE017B9F25AF2ABF00244ED8 /* sizedev.cxx */,
				BE017B9E25AF2ABF00244ED8 /* tablink.cxx */,
				BE017B8F25AF2ABE00244ED8 /* tpstat.cxx */,
			);
			name = docshell;
			sourceTree = "<group>";
		};
		BE017BA225AF2AE400244ED8 /* view */ = {
			isa = PBXGroup;
			children = (
				BE017BE425AF2B3D00244ED8 /* auditsh.cxx */,
				BE017BDA25AF2B3D00244ED8 /* cellmergeoption.cxx */,
				BE017BA925AF2B3B00244ED8 /* cellsh.cxx */,
				BE017BD925AF2B3D00244ED8 /* cellsh1.cxx */,
				BE017BA425AF2B3B00244ED8 /* cellsh2.cxx */,
				BE017BD525AF2B3D00244ED8 /* cellsh3.cxx */,
				BE017BB225AF2B3B00244ED8 /* cellsh4.cxx */,
				BE017BAE25AF2B3B00244ED8 /* cliputil.cxx */,
				BE017BDE25AF2B3D00244ED8 /* colrowba.cxx */,
				BE017BC425AF2B3C00244ED8 /* dbfunc.cxx */,
				BE017BD225AF2B3C00244ED8 /* dbfunc2.cxx */,
				BE017BA825AF2B3B00244ED8 /* dbfunc3.cxx */,
				BE017BBB25AF2B3C00244ED8 /* dbfunc4.cxx */,
				BE017BD625AF2B3D00244ED8 /* drawutil.cxx */,
				BE017BAB25AF2B3B00244ED8 /* drawvie3.cxx */,
				BE017BBC25AF2B3C00244ED8 /* drawvie4.cxx */,
				BE017BCE25AF2B3C00244ED8 /* drawview.cxx */,
				BE017BAD25AF2B3B00244ED8 /* editsh.cxx */,
				BE017BA325AF2B3B00244ED8 /* formatsh.cxx */,
				BE017BBA25AF2B3C00244ED8 /* gridmerg.cxx */,
				BE017BB125AF2B3B00244ED8 /* gridwin_dbgutil.cxx */,
				BE017BEF25AF2B3E00244ED8 /* gridwin.cxx */,
				BE017BE025AF2B3D00244ED8 /* gridwin2.cxx */,
				BE017BD325AF2B3D00244ED8 /* gridwin3.cxx */,
				BE017BD725AF2B3D00244ED8 /* gridwin4.cxx */,
				BE017BF525AF2B3E00244ED8 /* gridwin5.cxx */,
				BE017BDC25AF2B3D00244ED8 /* hdrcont.cxx */,
				BE017BC625AF2B3C00244ED8 /* hintwin.cxx */,
				BE017BA525AF2B3B00244ED8 /* imapwrap.cxx */,
				BE017BF325AF2B3E00244ED8 /* imapwrap.hxx */,
				BE017BF425AF2B3E00244ED8 /* invmerge.cxx */,
				BE017BAA25AF2B3B00244ED8 /* notemark.cxx */,
				BE017BD025AF2B3C00244ED8 /* olinewin.cxx */,
				BE017BB925AF2B3C00244ED8 /* output.cxx */,
				BE017BCF25AF2B3C00244ED8 /* output2.cxx */,
				BE017BB025AF2B3B00244ED8 /* output3.cxx */,
				BE017BE125AF2B3D00244ED8 /* overlayobject.cxx */,
				BE017BE225AF2B3D00244ED8 /* pfuncache.cxx */,
				BE017BE325AF2B3D00244ED8 /* pgbrksh.cxx */,
				BE017BC225AF2B3C00244ED8 /* pivotsh.cxx */,
				BE017BF225AF2B3E00244ED8 /* preview.cxx */,
				BE017BC025AF2B3C00244ED8 /* prevloc.cxx */,
				BE017BC925AF2B3C00244ED8 /* prevwsh.cxx */,
				BE017BA625AF2B3B00244ED8 /* prevwsh2.cxx */,
				BE017BDD25AF2B3D00244ED8 /* printfun.cxx */,
				BE017BF125AF2B3E00244ED8 /* reffact.cxx */,
				BE017BD825AF2B3D00244ED8 /* scextopt.cxx */,
				BE017BE825AF2B3D00244ED8 /* select.cxx */,
				BE017BF625AF2B3E00244ED8 /* selectionstate.cxx */,
				BE017BEB25AF2B3D00244ED8 /* spellcheckcontext.cxx */,
				BE017BF025AF2B3E00244ED8 /* spelldialog.cxx */,
				BE017BDF25AF2B3D00244ED8 /* spelleng.cxx */,
				BE017BEE25AF2B3E00244ED8 /* tabcont.cxx */,
				BE017BBD25AF2B3C00244ED8 /* tabsplit.cxx */,
				BE017BB525AF2B3B00244ED8 /* tabview.cxx */,
				BE017BCA25AF2B3C00244ED8 /* tabview2.cxx */,
				BE017BBE25AF2B3C00244ED8 /* tabview3.cxx */,
				BE017BC525AF2B3C00244ED8 /* tabview4.cxx */,
				BE017BC725AF2B3C00244ED8 /* tabview5.cxx */,
				BE017BB325AF2B3B00244ED8 /* tabvwsh.cxx */,
				BE017BE525AF2B3D00244ED8 /* tabvwsh2.cxx */,
				BE017BAF25AF2B3B00244ED8 /* tabvwsh3.cxx */,
				BE017BC125AF2B3C00244ED8 /* tabvwsh4.cxx */,
				BE017BB425AF2B3B00244ED8 /* tabvwsh5.cxx */,
				BE017BCB25AF2B3C00244ED8 /* tabvwsh8.cxx */,
				BE017BEC25AF2B3D00244ED8 /* tabvwsh9.cxx */,
				BE017BDB25AF2B3D00244ED8 /* tabvwsha.cxx */,
				BE017BA725AF2B3B00244ED8 /* tabvwshb.cxx */,
				BE017BB625AF2B3B00244ED8 /* tabvwshc.cxx */,
				BE017BAC25AF2B3B00244ED8 /* tabvwshd.cxx */,
				BE017BB825AF2B3B00244ED8 /* tabvwshe.cxx */,
				BE017BC825AF2B3C00244ED8 /* tabvwshf.cxx */,
				BE017BE625AF2B3D00244ED8 /* tabvwshg.cxx */,
				BE017BE725AF2B3D00244ED8 /* tabvwshh.cxx */,
				BE017BCC25AF2B3C00244ED8 /* viewdata.cxx */,
				BE017BBF25AF2B3C00244ED8 /* viewfun2.cxx */,
				BE017BD425AF2B3D00244ED8 /* viewfun3.cxx */,
				BE017BEA25AF2B3D00244ED8 /* viewfun4.cxx */,
				BE017BCD25AF2B3C00244ED8 /* viewfun5.cxx */,
				BE017BE925AF2B3D00244ED8 /* viewfun6.cxx */,
				BE017BED25AF2B3D00244ED8 /* viewfun7.cxx */,
				BE017BB725AF2B3B00244ED8 /* viewfunc.cxx */,
				BE017BD125AF2B3C00244ED8 /* viewutil.cxx */,
				BE017BC325AF2B3C00244ED8 /* waitoff.cxx */,
			);
			name = view;
			sourceTree = "<group>";
		};
		BE017BF725AF563F00244ED8 /* miscdlgs */ = {
			isa = PBXGroup;
			children = (
				BE017C1925AF568B00244ED8 /* acredlin.cxx */,
				BE017C0F25AF568A00244ED8 /* anyrefdg.cxx */,
				BE017C0325AF568A00244ED8 /* autofmt.cxx */,
				BE017C1E25AF568B00244ED8 /* conflictsdlg.cxx */,
				BE017BFD25AF568A00244ED8 /* crdlg.cxx */,
				BE017C1725AF568A00244ED8 /* crnrdlg.cxx */,
				BE017BFE25AF568A00244ED8 /* datafdlg.cxx */,
				BE017C1125AF568A00244ED8 /* dataproviderdlg.cxx */,
				BE017C0225AF568A00244ED8 /* datastreamdlg.cxx */,
				BE017C1625AF568A00244ED8 /* datatableview.cxx */,
				BE017C1A25AF568B00244ED8 /* delcldlg.cxx */,
				BE017C0725AF568A00244ED8 /* delcodlg.cxx */,
				BE017C0A25AF568A00244ED8 /* filldlg.cxx */,
				BE017C1225AF568A00244ED8 /* groupdlg.cxx */,
				BE017BFF25AF568A00244ED8 /* highred.cxx */,
				BE017C1025AF568A00244ED8 /* inscldlg.cxx */,
				BE017BFC25AF568900244ED8 /* inscodlg.cxx */,
				BE017C1B25AF568B00244ED8 /* instbdlg.cxx */,
				BE017C1325AF568A00244ED8 /* lbseldlg.cxx */,
				BE017BFA25AF568900244ED8 /* linkarea.cxx */,
				BE017C0425AF568A00244ED8 /* mergecellsdialog.cxx */,
				BE017BF925AF568900244ED8 /* mtrindlg.cxx */,
				BE017C0825AF568A00244ED8 /* mvtabdlg.cxx */,
				BE017C0B25AF568A00244ED8 /* namecrea.cxx */,
				BE017C0925AF568A00244ED8 /* optsolver.cxx */,
				BE017C1825AF568B00244ED8 /* protectiondlg.cxx */,
				BE017C0D25AF568A00244ED8 /* redcom.cxx */,
				BE017C1D25AF568B00244ED8 /* retypepassdlg.cxx */,
				BE017C0125AF568A00244ED8 /* scuiautofmt.cxx */,
				BE017C1C25AF568B00244ED8 /* sharedocdlg.cxx */,
				BE017BFB25AF568900244ED8 /* shtabdlg.cxx */,
				BE017C1F25AF568B00244ED8 /* simpref.cxx */,
				BE017BF825AF568900244ED8 /* solveroptions.cxx */,
				BE017C0C25AF568A00244ED8 /* solverutil.cxx */,
				BE017C0525AF568A00244ED8 /* solvrdlg.cxx */,
				BE017C0025AF568A00244ED8 /* strindlg.cxx */,
				BE017C1525AF568A00244ED8 /* tabbgcolordlg.cxx */,
				BE017C0625AF568A00244ED8 /* tabopdlg.cxx */,
				BE017C0E25AF568A00244ED8 /* textdlgs.cxx */,
				BE017C1425AF568A00244ED8 /* warnbox.cxx */,
			);
			name = miscdlgs;
			sourceTree = "<group>";
		};
		BE017C2025AF57D700244ED8 /* dialogs */ = {
			isa = PBXGroup;
			children = (
				BE017C2825AF57F800244ED8 /* about.cxx */,
				BE017C3525AF57F900244ED8 /* AdditionsDialog.cxx */,
				BE017C2125AF57F800244ED8 /* colorpicker.cxx */,
				BE017C3B25AF57F900244ED8 /* cuicharmap.cxx */,
				BE017C3425AF57F900244ED8 /* cuifmsearch.cxx */,
				BE017C3025AF57F900244ED8 /* cuigaldlg.cxx */,
				BE017C3C25AF57F900244ED8 /* cuigrfflt.cxx */,
				BE017C4225AF57F900244ED8 /* cuihyperdlg.cxx */,
				BE017C4C25AF57FA00244ED8 /* cuiimapwnd.cxx */,
				BE017C2325AF57F800244ED8 /* cuitbxform.cxx */,
				BE017C2625AF57F800244ED8 /* DiagramDialog.cxx */,
				BE017C4825AF57F900244ED8 /* dlgname.cxx */,
				BE017C4925AF57FA00244ED8 /* FontFeaturesDialog.cxx */,
				BE017C2E25AF57F900244ED8 /* hangulhanjadlg.cxx */,
				BE017C2225AF57F800244ED8 /* hldocntp.cxx */,
				BE017C3325AF57F900244ED8 /* hldoctp.cxx */,
				BE017C2525AF57F800244ED8 /* hlinettp.cxx */,
				BE017C3225AF57F900244ED8 /* hlmailtp.cxx */,
				BE017C4D25AF57FA00244ED8 /* hlmarkwn.cxx */,
				BE017C2F25AF57F900244ED8 /* hltpbase.cxx */,
				BE017C4425AF57F900244ED8 /* hyphen.cxx */,
				BE017C4A25AF57FA00244ED8 /* iconcdlg.cxx */,
				BE017C2725AF57F800244ED8 /* insdlg.cxx */,
				BE017C4725AF57F900244ED8 /* insrc.cxx */,
				BE017C2B25AF57F800244ED8 /* linkdlg.cxx */,
				BE017C2925AF57F800244ED8 /* multipat.cxx */,
				BE017C2A25AF57F800244ED8 /* newtabledlg.cxx */,
				BE017C4325AF57F900244ED8 /* passwdomdlg.cxx */,
				BE017C2C25AF57F800244ED8 /* pastedlg.cxx */,
				BE017C2D25AF57F900244ED8 /* postdlg.cxx */,
				BE017C3A25AF57F900244ED8 /* QrCodeGenDialog.cxx */,
				BE017C3825AF57F900244ED8 /* screenshotannotationdlg.cxx */,
				BE017C3D25AF57F900244ED8 /* scriptdlg.cxx */,
				BE017C5025AF57FA00244ED8 /* sdrcelldlg.cxx */,
				BE017C4025AF57F900244ED8 /* showcols.cxx */,
				BE017C3F25AF57F900244ED8 /* signature-line-draw.svg */,
				BE017C4525AF57F900244ED8 /* signature-line.svg */,
				BE017C4E25AF57FA00244ED8 /* SignatureLineDialog.cxx */,
				BE017C3625AF57F900244ED8 /* SignatureLineDialogBase.cxx */,
				BE017C2425AF57F800244ED8 /* SignSignatureLineDialog.cxx */,
				BE017C4625AF57F900244ED8 /* SpellAttrib.hxx */,
				BE017C4125AF57F900244ED8 /* SpellDialog.cxx */,
				BE017C3125AF57F900244ED8 /* splitcelldlg.cxx */,
				BE017C3925AF57F900244ED8 /* srchxtra.cxx */,
				BE017C3725AF57F900244ED8 /* thesdlg.cxx */,
				BE017C4F25AF57FA00244ED8 /* tipofthedaydlg.cxx */,
				BE017C4B25AF57FA00244ED8 /* toolbarmodedlg.cxx */,
				BE017C3E25AF57F900244ED8 /* zoom.cxx */,
			);
			name = dialogs;
			sourceTree = "<group>";
		};
		BE017C5125AFCC0D00244ED8 /* sot */ = {
			isa = PBXGroup;
			children = (
				BE017C5225AFCC1F00244ED8 /* base */,
			);
			name = sot;
			sourceTree = "<group>";
		};
		BE017C5225AFCC1F00244ED8 /* base */ = {
			isa = PBXGroup;
			children = (
				BE017C5625AFCC4300244ED8 /* exchange.cxx */,
				BE017C5525AFCC4300244ED8 /* filelist.cxx */,
				BE017C5325AFCC4300244ED8 /* formats.cxx */,
				BE017C5425AFCC4300244ED8 /* object.cxx */,
			);
			name = base;
			sourceTree = "<group>";
		};
		BE02646523797385008D3E52 /* sd */ = {
			isa = PBXGroup;
			children = (
				BE02646623797395008D3E52 /* ui */,
			);
			name = sd;
			sourceTree = "<group>";
		};
		BE02646623797395008D3E52 /* ui */ = {
			isa = PBXGroup;
			children = (
				BE0264672379739E008D3E52 /* view */,
			);
			name = ui;
			sourceTree = "<group>";
		};
		BE0264672379739E008D3E52 /* view */ = {
			isa = PBXGroup;
			children = (
				BE02649C237973D9008D3E52 /* clview.cxx */,
				BE026496237973D9008D3E52 /* DocumentRenderer.cxx */,
				BE0264A5237973D9008D3E52 /* drawview.cxx */,
				BE026480237973D8008D3E52 /* drbezob.cxx */,
				BE026469237973D7008D3E52 /* drtxtob.cxx */,
				BE02647D237973D8008D3E52 /* drtxtob1.cxx */,
				BE02647A237973D7008D3E52 /* drviews1.cxx */,
				BE0264A2237973D9008D3E52 /* drviews2.cxx */,
				BE026485237973D8008D3E52 /* drviews3.cxx */,
				BE026488237973D8008D3E52 /* drviews4.cxx */,
				BE026487237973D8008D3E52 /* drviews5.cxx */,
				BE02647C237973D7008D3E52 /* drviews6.cxx */,
				BE02648A237973D8008D3E52 /* drviews7.cxx */,
				BE026483237973D8008D3E52 /* drviews8.cxx */,
				BE026493237973D8008D3E52 /* drviews9.cxx */,
				BE026476237973D7008D3E52 /* drviewsa.cxx */,
				BE02648F237973D8008D3E52 /* drviewsb.cxx */,
				BE0264A4237973D9008D3E52 /* drviewsc.cxx */,
				BE026473237973D7008D3E52 /* drviewsd.cxx */,
				BE0264A3237973D9008D3E52 /* drviewse.cxx */,
				BE026497237973D9008D3E52 /* drviewsf.cxx */,
				BE026486237973D8008D3E52 /* drviewsg.cxx */,
				BE026492237973D8008D3E52 /* drviewsh.cxx */,
				BE026472237973D7008D3E52 /* drviewsi.cxx */,
				BE02646B237973D7008D3E52 /* drviewsj.cxx */,
				BE02647F237973D8008D3E52 /* drviewsk.cxx */,
				BE026491237973D8008D3E52 /* drvwshrg.cxx */,
				BE02648E237973D8008D3E52 /* FormShellManager.cxx */,
				BE02647E237973D8008D3E52 /* frmview.cxx */,
				BE026499237973D9008D3E52 /* GraphicObjectBar.cxx */,
				BE02649A237973D9008D3E52 /* GraphicViewShellBase.cxx */,
				BE02649B237973D9008D3E52 /* grviewsh.cxx */,
				BE02649D237973D9008D3E52 /* ImpressViewShellBase.cxx */,
				BE026494237973D8008D3E52 /* MediaObjectBar.cxx */,
				BE026484237973D8008D3E52 /* Outliner.cxx */,
				BE026474237973D7008D3E52 /* OutlinerIterator.cxx */,
				BE026478237973D7008D3E52 /* OutlineViewShellBase.cxx */,
				BE026477237973D7008D3E52 /* outlnvs2.cxx */,
				BE0264A6237973D9008D3E52 /* outlnvsh.cxx */,
				BE02648B237973D8008D3E52 /* outlview.cxx */,
				BE02648C237973D8008D3E52 /* PresentationViewShellBase.cxx */,
				BE0264A8237973D9008D3E52 /* presvish.cxx */,
				BE0264A0237973D9008D3E52 /* sdruler.cxx */,
				BE026482237973D8008D3E52 /* sdview.cxx */,
				BE026481237973D8008D3E52 /* sdview2.cxx */,
				BE026498237973D9008D3E52 /* sdview3.cxx */,
				BE0264A7237973D9008D3E52 /* sdview4.cxx */,
				BE026489237973D8008D3E52 /* sdview5.cxx */,
				BE02649E237973D9008D3E52 /* sdwindow.cxx */,
				BE02649F237973D9008D3E52 /* SlideSorterViewShellBase.cxx */,
				BE026479237973D7008D3E52 /* tabcontr.cxx */,
				BE02646C237973D7008D3E52 /* ToolBarManager.cxx */,
				BE026490237973D8008D3E52 /* unmodpg.cxx */,
				BE02647B237973D7008D3E52 /* ViewClipboard.cxx */,
				BE02646F237973D7008D3E52 /* viewoverlaymanager.cxx */,
				BE026495237973D8008D3E52 /* viewshe2.cxx */,
				BE026468237973D7008D3E52 /* viewshe3.cxx */,
				BE0264A1237973D9008D3E52 /* viewshel.cxx */,
				BE02646A237973D7008D3E52 /* ViewShellBase.cxx */,
				BE02646D237973D7008D3E52 /* ViewShellHint.cxx */,
				BE02648D237973D8008D3E52 /* ViewShellImplementation.cxx */,
				BE02646E237973D7008D3E52 /* ViewShellManager.cxx */,
				BE026475237973D7008D3E52 /* ViewTabBar.cxx */,
				BE026470237973D7008D3E52 /* WindowUpdater.cxx */,
				BE026471237973D7008D3E52 /* zoomlist.cxx */,
			);
			name = view;
			sourceTree = "<group>";
		};
		BE0264A923797594008D3E52 /* treelist */ = {
			isa = PBXGroup;
			children = (
				BE0264B6237975E8008D3E52 /* headbar.cxx */,
				BE0264B5237975E8008D3E52 /* iconview.cxx */,
				BE0264AD237975E8008D3E52 /* iconviewimpl.cxx */,
				BE0264AA237975E7008D3E52 /* iconviewimpl.hxx */,
				BE0264B7237975E8008D3E52 /* imap.cxx */,
				BE0264B4237975E8008D3E52 /* imap2.cxx */,
				BE0264B1237975E8008D3E52 /* imap3.cxx */,
				BE0264AF237975E8008D3E52 /* inetimg.cxx */,
				BE0264B9237975E8008D3E52 /* svimpbox.cxx */,
				BE0264AB237975E8008D3E52 /* svlbitm.cxx */,
				BE0264AC237975E8008D3E52 /* svtabbx.cxx */,
				BE0264B2237975E8008D3E52 /* transfer.cxx */,
				BE0264B3237975E8008D3E52 /* transfer2.cxx */,
				BE0264BA237975E8008D3E52 /* treelist.cxx */,
				BE0264B8237975E8008D3E52 /* treelistbox.cxx */,
				BE0264BB237975E8008D3E52 /* treelistentry.cxx */,
				BE0264AE237975E8008D3E52 /* uiobject.cxx */,
				BE0264B0237975E8008D3E52 /* viewdataentry.cxx */,
			);
			name = treelist;
			sourceTree = "<group>";
		};
		BE28694D257D0668000E863E /* dbaccess */ = {
			isa = PBXGroup;
			children = (
				BE28694E257D0682000E863E /* ui */,
			);
			name = dbaccess;
			sourceTree = "<group>";
		};
		BE28694E257D0682000E863E /* ui */ = {
			isa = PBXGroup;
			children = (
				BE28694F257D068E000E863E /* misc */,
			);
			name = ui;
			sourceTree = "<group>";
		};
		BE28694F257D068E000E863E /* misc */ = {
			isa = PBXGroup;
			children = (
				BE286966257D06C5000E863E /* asyncmodaldialog.cxx */,
				BE286958257D06C5000E863E /* charsets.cxx */,
				BE286963257D06C5000E863E /* controllerframe.cxx */,
				BE28696B257D06C5000E863E /* databaseobjectview.cxx */,
				BE286969257D06C5000E863E /* datasourceconnector.cxx */,
				BE28696C257D06C6000E863E /* dbaundomanager.cxx */,
				BE286960257D06C5000E863E /* dbsubcomponentcontroller.cxx */,
				BE286965257D06C5000E863E /* defaultobjectnamecheck.cxx */,
				BE286953257D06C5000E863E /* DExport.cxx */,
				BE286955257D06C5000E863E /* dsmeta.cxx */,
				BE286956257D06C5000E863E /* HtmlReader.cxx */,
				BE28695B257D06C5000E863E /* imageprovider.cxx */,
				BE28696A257D06C5000E863E /* indexcollection.cxx */,
				BE286959257D06C5000E863E /* linkeddocuments.cxx */,
				BE286968257D06C5000E863E /* propertystorage.cxx */,
				BE28695F257D06C5000E863E /* RowSetDrop.cxx */,
				BE286962257D06C5000E863E /* RtfReader.cxx */,
				BE286952257D06C5000E863E /* singledoccontroller.cxx */,
				BE286961257D06C5000E863E /* stringlistitem.cxx */,
				BE286964257D06C5000E863E /* TableCopyHelper.cxx */,
				BE286950257D06C5000E863E /* TokenWriter.cxx */,
				BE28695E257D06C5000E863E /* UITools.cxx */,
				BE28695A257D06C5000E863E /* UpdateHelperImpl.hxx */,
				BE28695C257D06C5000E863E /* WColumnSelect.cxx */,
				BE28695D257D06C5000E863E /* WCopyTable.cxx */,
				BE286967257D06C5000E863E /* WCPage.cxx */,
				BE286957257D06C5000E863E /* WExtendPages.cxx */,
				BE286951257D06C5000E863E /* WNameMatch.cxx */,
				BE286954257D06C5000E863E /* WTypeSelect.cxx */,
			);
			name = misc;
			sourceTree = "<group>";
		};
		BE2DACF9182FAB3800A4D2F7 /* window */ = {
			isa = PBXGroup;
			children = (
				BE2DACFA182FAB5200A4D2F7 /* abstdlg.cxx */,
				BE2DACFB182FAB5200A4D2F7 /* accel.cxx */,
				BE2DACFC182FAB5200A4D2F7 /* accmgr.cxx */,
				BE2DACFD182FAB5200A4D2F7 /* brdwin.cxx */,
				BE2DACFE182FAB5200A4D2F7 /* btndlg.cxx */,
				BE2DACFF182FAB5200A4D2F7 /* builder.cxx */,
				BE2DAD00182FAB5200A4D2F7 /* commandevent.cxx */,
				BE2DAD01182FAB5200A4D2F7 /* cursor.cxx */,
				BE2DAD02182FAB5200A4D2F7 /* decoview.cxx */,
				BE2DAD03182FAB5200A4D2F7 /* dialog.cxx */,
				BE2DAD04182FAB5200A4D2F7 /* dlgctrl.cxx */,
				BE2DAD05182FAB5200A4D2F7 /* dndevdis.cxx */,
				BE2DAD06182FAB5200A4D2F7 /* dndlcon.cxx */,
				BE2DAD07182FAB5200A4D2F7 /* dockingarea.cxx */,
				BE2DAD08182FAB5200A4D2F7 /* dockmgr.cxx */,
				BE2DAD09182FAB5200A4D2F7 /* dockwin.cxx */,
				BE2DAD0A182FAB5200A4D2F7 /* floatwin.cxx */,
				BE2DAD0B182FAB5200A4D2F7 /* introwin.cxx */,
				BE2DAD0C182FAB5200A4D2F7 /* keycod.cxx */,
				BE2DAD0D182FAB5200A4D2F7 /* keyevent.cxx */,
				BE2DAD0E182FAB5200A4D2F7 /* layout.cxx */,
				BE2DAD0F182FAB5200A4D2F7 /* menu.cxx */,
				BE2DAD10182FAB5200A4D2F7 /* mnemonic.cxx */,
				BE2DAD11182FAB5200A4D2F7 /* mnemonicengine.cxx */,
				BE2DAD12182FAB5200A4D2F7 /* mouseevent.cxx */,
				BE2DAD13182FAB5200A4D2F7 /* msgbox.cxx */,
				BE2DAD15182FAB5200A4D2F7 /* printdlg.cxx */,
				BE2DAD16182FAB5200A4D2F7 /* scrwnd.cxx */,
				BE2DAD17182FAB5200A4D2F7 /* scrwnd.hxx */,
				BE2DAD18182FAB5200A4D2F7 /* seleng.cxx */,
				BE2DAD19182FAB5200A4D2F7 /* split.cxx */,
				BE2DAD1A182FAB5200A4D2F7 /* splitwin.cxx */,
				BE2DAD1B182FAB5200A4D2F7 /* status.cxx */,
				BE2DAD1C182FAB5200A4D2F7 /* syschild.cxx */,
				BE2DAD1D182FAB5200A4D2F7 /* syswin.cxx */,
				BE2DAD1E182FAB5200A4D2F7 /* tabdlg.cxx */,
				BE2DAD1F182FAB5200A4D2F7 /* tabpage.cxx */,
				BE2DAD20182FAB5200A4D2F7 /* taskpanelist.cxx */,
				BE2DAD21182FAB5200A4D2F7 /* toolbox.cxx */,
				BE2DAD22182FAB5200A4D2F7 /* toolbox2.cxx */,
				BE2DAD23182FAB5200A4D2F7 /* window.cxx */,
				BE2DAD24182FAB5200A4D2F7 /* window2.cxx */,
				BE2DAD25182FAB5200A4D2F7 /* window3.cxx */,
				BE2DAD26182FAB5200A4D2F7 /* winproc.cxx */,
				BE2DAD27182FAB5200A4D2F7 /* wrkwin.cxx */,
			);
			name = window;
			sourceTree = "<group>";
		};
		BE2DAD29182FABD200A4D2F7 /* quartz */ = {
			isa = PBXGroup;
			children = (
				BE82C3C018C86D6C0050EB79 /* ctfonts.cxx */,
				BE82C3C118C86D6C0050EB79 /* ctlayout.cxx */,
				BE82C3C218C86D6C0050EB79 /* salbmp.cxx */,
				BE82C3C318C86D6C0050EB79 /* salgdi.cxx */,
				BE82C3C418C86D6C0050EB79 /* salgdicommon.cxx */,
				BE82C3C518C86D6C0050EB79 /* salgdiutils.cxx */,
				BE82C3C618C86D6C0050EB79 /* salvd.cxx */,
				BE82C3C718C86D6C0050EB79 /* utils.cxx */,
			);
			name = quartz;
			sourceTree = "<group>";
		};
		BE2DAD2A182FAC1B00A4D2F7 /* app */ = {
			isa = PBXGroup;
			children = (
				BE82C3AA18C86D440050EB79 /* brand.cxx */,
				BEC676DE17461A720069E01D /* dbggui.cxx */,
				BE82C3AB18C86D440050EB79 /* dndhelp.cxx */,
				BE82C3AC18C86D440050EB79 /* help.cxx */,
				BE82C3AD18C86D440050EB79 /* i18nhelp.cxx */,
				BE82C3AE18C86D440050EB79 /* IconThemeInfo.cxx */,
				BE82C3AF18C86D440050EB79 /* IconThemeScanner.cxx */,
				BE82C3B018C86D440050EB79 /* IconThemeSelector.cxx */,
				BE82C3B118C86D440050EB79 /* idlemgr.cxx */,
				BE82C3B218C86D440050EB79 /* salvtables.cxx */,
				BE82C3B318C86D440050EB79 /* session.cxx */,
				BE82C3B418C86D440050EB79 /* settings.cxx */,
				BE82C3B518C86D440050EB79 /* solarmutex.cxx */,
				BE82C3B618C86D440050EB79 /* sound.cxx */,
				BE82C3B718C86D440050EB79 /* stdtext.cxx */,
				BE82C3B818C86D440050EB79 /* svapp.cxx */,
				BE82C3B918C86D440050EB79 /* svdata.cxx */,
				BE82C3BA18C86D440050EB79 /* svmain.cxx */,
				BE82C3BB18C86D440050EB79 /* svmainhook.cxx */,
				BE82C3BC18C86D440050EB79 /* timer.cxx */,
				BE82C3BD18C86D440050EB79 /* unohelp.cxx */,
				BE82C3BE18C86D440050EB79 /* unohelp2.cxx */,
				BE82C3BF18C86D440050EB79 /* vclevent.cxx */,
			);
			name = app;
			sourceTree = "<group>";
		};
		BE2DAD2B183148BE00A4D2F7 /* formula */ = {
			isa = PBXGroup;
			children = (
				BE2DAD2C1831490400A4D2F7 /* FormulaCompiler.cxx */,
				BE2DAD2D1831490400A4D2F7 /* FormulaOpCodeMapperObj.cxx */,
				BE2DAD2E1831490400A4D2F7 /* services.cxx */,
				BE2DAD2F1831490400A4D2F7 /* token.cxx */,
				BE2DAD301831490400A4D2F7 /* vectortoken.cxx */,
			);
			name = formula;
			sourceTree = "<group>";
		};
		BE49323F247820A10013BCD6 /* xmlsecurity */ = {
			isa = PBXGroup;
			children = (
				BE493240247820B50013BCD6 /* xmlsec */,
			);
			name = xmlsecurity;
			sourceTree = "<group>";
		};
		BE493240247820B50013BCD6 /* xmlsec */ = {
			isa = PBXGroup;
			children = (
				BE493244247820D50013BCD6 /* biginteger.cxx */,
				BE493249247820D50013BCD6 /* certificateextension_certextn.cxx */,
				BE493242247820D50013BCD6 /* certificateextension_certextn.hxx */,
				BE49324B247820D50013BCD6 /* certificateextension_xmlsecimpl.hxx */,
				BE493245247820D50013BCD6 /* errorcallback.cxx */,
				BE493248247820D50013BCD6 /* saxhelper.cxx */,
				BE493246247820D50013BCD6 /* xmldocumentwrapper_xmlsecimpl.cxx */,
				BE493243247820D50013BCD6 /* xmlelementwrapper_xmlsecimpl.cxx */,
				BE493247247820D50013BCD6 /* xmlelementwrapper_xmlsecimpl.hxx */,
				BE493241247820D50013BCD6 /* xmlsec_init.cxx */,
				BE49324A247820D50013BCD6 /* xmlstreamio.cxx */,
			);
			name = xmlsec;
			sourceTree = "<group>";
		};
		BE49324C2478EC840013BCD6 /* sfx2 */ = {
			isa = PBXGroup;
			children = (
				BE49324D2478EC950013BCD6 /* appl */,
			);
			name = sfx2;
			sourceTree = "<group>";
		};
		BE49324D2478EC950013BCD6 /* appl */ = {
			isa = PBXGroup;
			children = (
				BE49326C2478ECB20013BCD6 /* app.cxx */,
				BE4932642478ECB20013BCD6 /* appbas.cxx */,
				BE4932502478ECB10013BCD6 /* appbaslib.cxx */,
				BE4932732478ECB30013BCD6 /* appcfg.cxx */,
				BE49327A2478ECB30013BCD6 /* appchild.cxx */,
				BE4932742478ECB30013BCD6 /* appdata.cxx */,
				BE4932662478ECB20013BCD6 /* appdde.cxx */,
				BE4932782478ECB30013BCD6 /* appdispatchprovider.cxx */,
				BE4932712478ECB30013BCD6 /* appinit.cxx */,
				BE4932532478ECB10013BCD6 /* appmain.cxx */,
				BE49326A2478ECB20013BCD6 /* appmisc.cxx */,
				BE49325A2478ECB20013BCD6 /* appopen.cxx */,
				BE49327B2478ECB30013BCD6 /* appquit.cxx */,
				BE4932562478ECB20013BCD6 /* appreg.cxx */,
				BE49326E2478ECB20013BCD6 /* appserv.cxx */,
				BE4932612478ECB20013BCD6 /* appuno.cxx */,
				BE4932552478ECB10013BCD6 /* childwin.cxx */,
				BE4932542478ECB10013BCD6 /* childwinimpl.cxx */,
				BE49326D2478ECB20013BCD6 /* fileobj.cxx */,
				BE4932632478ECB20013BCD6 /* fileobj.hxx */,
				BE49326F2478ECB20013BCD6 /* flatpak.cxx */,
				BE49324F2478ECB10013BCD6 /* fwkhelper.cxx */,
				BE4932572478ECB20013BCD6 /* getbasctlfunction.cxx */,
				BE49327E2478ECB30013BCD6 /* getbasctlfunction.hxx */,
				BE49325D2478ECB20013BCD6 /* helpdispatch.cxx */,
				BE4932592478ECB20013BCD6 /* helpdispatch.hxx */,
				BE49325F2478ECB20013BCD6 /* helpinterceptor.cxx */,
				BE49324E2478ECB10013BCD6 /* helpinterceptor.hxx */,
				BE49325C2478ECB20013BCD6 /* impldde.cxx */,
				BE4932602478ECB20013BCD6 /* impldde.hxx */,
				BE4932692478ECB20013BCD6 /* linkmgr2.cxx */,
				BE49326B2478ECB20013BCD6 /* linksrc.cxx */,
				BE4932512478ECB10013BCD6 /* lnkbase2.cxx */,
				BE49325E2478ECB20013BCD6 /* macroloader.cxx */,
				BE4932582478ECB20013BCD6 /* module.cxx */,
				BE4932752478ECB30013BCD6 /* newhelp.cxx */,
				BE4932672478ECB20013BCD6 /* newhelp.hxx */,
				BE49327C2478ECB30013BCD6 /* opengrf.cxx */,
				BE49327D2478ECB30013BCD6 /* openuriexternally.cxx */,
				BE4932762478ECB30013BCD6 /* preventduplicateinteraction.cxx */,
				BE4932682478ECB20013BCD6 /* sfxhelp.cxx */,
				BE4932772478ECB30013BCD6 /* sfxpicklist.cxx */,
				BE49325B2478ECB20013BCD6 /* shellimpl.cxx */,
				BE4932792478ECB30013BCD6 /* shutdownicon.cxx */,
				BE4932522478ECB10013BCD6 /* shutdownicon.hxx */,
				BE4932622478ECB20013BCD6 /* shutdowniconaqua.mm */,
				BE4932702478ECB30013BCD6 /* shutdowniconw32.cxx */,
				BE4932722478ECB30013BCD6 /* workwin.cxx */,
				BE4932652478ECB20013BCD6 /* xpackcreator.cxx */,
			);
			name = appl;
			sourceTree = "<group>";
		};
		BE60B5761DB7D76C00D3E1E4 /* osx */ = {
			isa = PBXGroup;
			children = (
				BE60B5771DB7D80200D3E1E4 /* a11yactionwrapper.mm */,
				BE60B5781DB7D80200D3E1E4 /* a11ycomponentwrapper.mm */,
				BE60B5791DB7D80200D3E1E4 /* a11yfactory.mm */,
				BE60B57A1DB7D80200D3E1E4 /* a11yfocuslistener.cxx */,
				BE60B57B1DB7D80200D3E1E4 /* a11yfocustracker.cxx */,
				BE60B57C1DB7D80200D3E1E4 /* a11ylistener.cxx */,
				BE60B57D1DB7D80200D3E1E4 /* a11yrolehelper.mm */,
				BE60B57E1DB7D80200D3E1E4 /* a11yselectionwrapper.mm */,
				BE60B57F1DB7D80200D3E1E4 /* a11ytablewrapper.mm */,
				BE60B5801DB7D80200D3E1E4 /* a11ytextattributeswrapper.mm */,
				BE60B5811DB7D80200D3E1E4 /* a11ytextwrapper.mm */,
				BE60B5821DB7D80200D3E1E4 /* a11yutil.mm */,
				BE60B5831DB7D80200D3E1E4 /* a11yvaluewrapper.mm */,
				BE60B5841DB7D80200D3E1E4 /* a11ywrapper.mm */,
				BE60B5851DB7D80200D3E1E4 /* a11ywrapperbutton.mm */,
				BE60B5861DB7D80200D3E1E4 /* a11ywrappercheckbox.mm */,
				BE60B5871DB7D80200D3E1E4 /* a11ywrappercombobox.mm */,
				BE60B5881DB7D80200D3E1E4 /* a11ywrappergroup.mm */,
				BE60B5891DB7D80200D3E1E4 /* a11ywrapperlist.mm */,
				BE60B58A1DB7D80200D3E1E4 /* a11ywrapperradiobutton.mm */,
				BE60B58B1DB7D80200D3E1E4 /* a11ywrapperradiogroup.mm */,
				BE60B58C1DB7D80200D3E1E4 /* a11ywrapperrow.mm */,
				BE60B58D1DB7D80200D3E1E4 /* a11ywrapperscrollarea.mm */,
				BE60B58E1DB7D80200D3E1E4 /* a11ywrapperscrollbar.mm */,
				BE60B58F1DB7D80200D3E1E4 /* a11ywrappersplitter.mm */,
				BE60B5901DB7D80200D3E1E4 /* a11ywrapperstatictext.mm */,
				BE60B5911DB7D80200D3E1E4 /* a11ywrappertabgroup.mm */,
				BE60B5921DB7D80200D3E1E4 /* a11ywrappertextarea.mm */,
				BE60B5931DB7D80200D3E1E4 /* a11ywrappertoolbar.mm */,
				BE60B5941DB7D80200D3E1E4 /* clipboard.cxx */,
				BE60B5951DB7D80200D3E1E4 /* DataFlavorMapping.cxx */,
				BE60B5961DB7D80200D3E1E4 /* documentfocuslistener.cxx */,
				BE60B5971DB7D80200D3E1E4 /* DragActionConversion.cxx */,
				BE60B5981DB7D80200D3E1E4 /* DragSource.cxx */,
				BE60B5991DB7D80200D3E1E4 /* DragSourceContext.cxx */,
				BE60B59A1DB7D80200D3E1E4 /* DropTarget.cxx */,
				BE60B59B1DB7D80200D3E1E4 /* HtmlFmtFlt.cxx */,
				BE60B59C1DB7D80200D3E1E4 /* OSXTransferable.cxx */,
				BE60B59D1DB7D80200D3E1E4 /* PictToBmpFlt.cxx */,
				BE60B59E1DB7D80200D3E1E4 /* printaccessoryview.mm */,
				BE60B59F1DB7D80200D3E1E4 /* printview.mm */,
				BE60B5A01DB7D80200D3E1E4 /* saldata.cxx */,
				BE60B5A11DB7D80200D3E1E4 /* salframe.cxx */,
				BE60B5A21DB7D80200D3E1E4 /* salframeview.mm */,
				BE60B5A31DB7D80200D3E1E4 /* salinst.cxx */,
				BE60B5A41DB7D80200D3E1E4 /* salmenu.cxx */,
				BE60B5A51DB7D80200D3E1E4 /* salnativewidgets.cxx */,
				BE60B5A61DB7D80200D3E1E4 /* salnsmenu.mm */,
				BE60B5A71DB7D80200D3E1E4 /* salnstimer.mm */,
				BE60B5A81DB7D80200D3E1E4 /* salobj.cxx */,
				BE60B5A91DB7D80200D3E1E4 /* salprn.cxx */,
				BE60B5AA1DB7D80200D3E1E4 /* salsys.cxx */,
				BE60B5AB1DB7D80200D3E1E4 /* saltimer.cxx */,
				BE60B5AC1DB7D80200D3E1E4 /* service_entry.cxx */,
				BE60B5AD1DB7D80200D3E1E4 /* vclnsapp.mm */,
			);
			name = osx;
			sourceTree = "<group>";
		};
		BE82BE5818298DEB00A447B5 /* sc */ = {
			isa = PBXGroup;
			children = (
				BE017B8525AF2A5A00244ED8 /* ui */,
			);
			name = sc;
			sourceTree = "<group>";
		};
		BE82BE5918298DFB00A447B5 /* java */ = {
			isa = PBXGroup;
			children = (
				BE02FCE5171328D20069F37F /* javacontext.cxx */,
				BE02FCE6171328D20069F37F /* javainteractionhandler.cxx */,
				BE02FCE7171335B80069F37F /* otherjre.cxx */,
				BE145F5C17B24BA4004CBBBA /* sunjavaplugin.cxx */,
				BE02FCE8171335B80069F37F /* sunjre.cxx */,
				BE02FCE9171335B80069F37F /* sunversion.cxx */,
				BE02FCEA171335B80069F37F /* util.cxx */,
				BE02FCEB171335B80069F37F /* vendorbase.cxx */,
				BE02FCEC171335B80069F37F /* vendorlist.cxx */,
			);
			name = java;
			sourceTree = "<group>";
		};
		BE82BE5A18298E2E00A447B5 /* vcl */ = {
			isa = PBXGroup;
			children = (
				BE2DAD2A182FAC1B00A4D2F7 /* app */,
				BE82C40F18C86DE90050EB79 /* control */,
				BE82C3C818C86D8B0050EB79 /* gdi */,
				BE60B5761DB7D76C00D3E1E4 /* osx */,
				BE2DAD29182FABD200A4D2F7 /* quartz */,
				BE0264A923797594008D3E52 /* treelist */,
				BE2DACF9182FAB3800A4D2F7 /* window */,
			);
			name = vcl;
			sourceTree = "<group>";
		};
		BE82C3C818C86D8B0050EB79 /* gdi */ = {
			isa = PBXGroup;
			children = (
				BE82C3C918C86DBF0050EB79 /* alpha.cxx */,
				BE82C3CA18C86DBF0050EB79 /* animate.cxx */,
				BE82C3CB18C86DBF0050EB79 /* base14.cxx */,
				BE82C3CC18C86DBF0050EB79 /* bitmap.cxx */,
				BE82C3CD18C86DBF0050EB79 /* bitmap3.cxx */,
				BE82C3CE18C86DBF0050EB79 /* bitmap4.cxx */,
				BE82C3CF18C86DBF0050EB79 /* bitmapex.cxx */,
				BE82C3D018C86DBF0050EB79 /* bmpacc.cxx */,
				BE82C3D118C86DBF0050EB79 /* bmpacc2.cxx */,
				BE82C3D218C86DBF0050EB79 /* bmpacc3.cxx */,
				BE82C3D318C86DBF0050EB79 /* bmpfast.cxx */,
				BE7EC13C234CC0FA000D1DB6 /* CommonSalLayout.cxx */,
				BE82C3D418C86DBF0050EB79 /* configsettings.cxx */,
				BE82C3D518C86DBF0050EB79 /* cvtgrf.cxx */,
				BE82C3D618C86DBF0050EB79 /* cvtsvm.cxx */,
				BE82C3D718C86DBF0050EB79 /* dibtools.cxx */,
				BE82C3D818C86DBF0050EB79 /* embeddedfontshelper.cxx */,
				BE82C3D918C86DBF0050EB79 /* extoutdevdata.cxx */,
				BE7EC141234CC0FA000D1DB6 /* FileDefinitionWidgetDraw.cxx */,
				BE82C3DA18C86DBF0050EB79 /* font.cxx */,
				BE82C3DB18C86DBF0050EB79 /* gdimetafiletools.cxx */,
				BE82C3DC18C86DBF0050EB79 /* gdimtf.cxx */,
				BE82C3DD18C86DBF0050EB79 /* gfxlink.cxx */,
				BE82C3DE18C86DBF0050EB79 /* gradient.cxx */,
				BE82C3DF18C86DBF0050EB79 /* graph.cxx */,
				BE82C3E018C86DBF0050EB79 /* graphictools.cxx */,
				BE82C3E118C86DBF0050EB79 /* hatch.cxx */,
				BE82C3E218C86DBF0050EB79 /* image.cxx */,
				BE82C3E318C86DBF0050EB79 /* imagerepository.cxx */,
				BE82C3E418C86DBF0050EB79 /* impanmvw.cxx */,
				BE82C3E518C86DBF0050EB79 /* impbmp.cxx */,
				BE82C3E618C86DBF0050EB79 /* impfont.cxx */,
				BE7EC13A234CC0FA000D1DB6 /* impglyphitem.cxx */,
				BE82C3E718C86DBF0050EB79 /* impgraph.cxx */,
				BE82C3E818C86DBF0050EB79 /* impimage.cxx */,
				BE82C3E918C86DBF0050EB79 /* impimagetree.cxx */,
				BE82C3EA18C86DBF0050EB79 /* impvect.cxx */,
				BE82C3EB18C86DBF0050EB79 /* jobset.cxx */,
				BE82C3EC18C86DBF0050EB79 /* lineinfo.cxx */,
				BE82C3ED18C86DBF0050EB79 /* mapmod.cxx */,
				BE82C3EE18C86DBF0050EB79 /* metaact.cxx */,
				BE82C3EF18C86DBF0050EB79 /* metric.cxx */,
				BE7EC140234CC0FA000D1DB6 /* mtfxmldump.cxx */,
				BE82C3F018C86DBF0050EB79 /* octree.cxx */,
				BE82C3F118C86DBF0050EB79 /* oldprintadaptor.cxx */,
				BE82C3F218C86DBF0050EB79 /* outdev.cxx */,
				BE82C3F318C86DBF0050EB79 /* outdev2.cxx */,
				BE82C3F418C86DBF0050EB79 /* outdev3.cxx */,
				BE82C3F518C86DBF0050EB79 /* outdev4.cxx */,
				BE82C3F618C86DBF0050EB79 /* outdev5.cxx */,
				BE82C3F718C86DBF0050EB79 /* outdev6.cxx */,
				BE82C3F818C86DBF0050EB79 /* outdevnative.cxx */,
				BE82C3F918C86DBF0050EB79 /* outmap.cxx */,
				BE7EC143234CC0FA000D1DB6 /* pdfbuildin_fonts.cxx */,
				BE82C3FA18C86DBF0050EB79 /* pdfextoutdevdata.cxx */,
				BE82C3FB18C86DBF0050EB79 /* pdffontcache.cxx */,
				BE82C3FC18C86DBF0050EB79 /* pdfwriter_impl.cxx */,
				BE82C3FD18C86DBF0050EB79 /* pdfwriter_impl2.cxx */,
				BE82C3FE18C86DBF0050EB79 /* pdfwriter.cxx */,
				BE82C3FF18C86DBF0050EB79 /* pngread.cxx */,
				BE82C40018C86DBF0050EB79 /* pngwrite.cxx */,
				BE82C40118C86DC00050EB79 /* print.cxx */,
				BE82C40218C86DC00050EB79 /* print2.cxx */,
				BE82C40318C86DC00050EB79 /* print3.cxx */,
				BE82C40418C86DC00050EB79 /* regband.cxx */,
				BE82C40518C86DC00050EB79 /* region.cxx */,
				BE82C40618C86DC00050EB79 /* regionband.cxx */,
				BE7EC13E234CC0FA000D1DB6 /* salgdiimpl.cxx */,
				BE82C40718C86DC00050EB79 /* salgdilayout.cxx */,
				BE82C40818C86DC00050EB79 /* sallayout.cxx */,
				BE82C40918C86DC00050EB79 /* salmisc.cxx */,
				BE82C40A18C86DC00050EB79 /* salnativewidgets-none.cxx */,
				BE7EC13D234CC0FA000D1DB6 /* scrptrun.cxx */,
				BE82C40B18C86DC00050EB79 /* svgdata.cxx */,
				BE7EC144234CC0FA000D1DB6 /* svmconverter.cxx */,
				BE82C40C18C86DC00050EB79 /* textlayout.cxx */,
				BE7EC13B234CC0FA000D1DB6 /* TypeSerializer.cxx */,
				BE7EC142234CC0FA000D1DB6 /* vectorgraphicdata.cxx */,
				BE7EC139234CC0FA000D1DB6 /* VerticalOrientationData.cxx */,
				BE82C40D18C86DC00050EB79 /* virdev.cxx */,
				BE82C40E18C86DC00050EB79 /* wall.cxx */,
				BE7EC13F234CC0FA000D1DB6 /* WidgetDefinition.cxx */,
				BE7EC145234CC0FA000D1DB6 /* WidgetDefinitionReader.cxx */,
			);
			name = gdi;
			sourceTree = "<group>";
		};
		BE82C40F18C86DE90050EB79 /* control */ = {
			isa = PBXGroup;
			children = (
				BE82C41018C86E010050EB79 /* button.cxx */,
				BE82C41118C86E010050EB79 /* combobox.cxx */,
				BE82C41218C86E010050EB79 /* ctrl.cxx */,
				BE82C41318C86E010050EB79 /* edit.cxx */,
				BE82C41418C86E010050EB79 /* field.cxx */,
				BE82C41518C86E010050EB79 /* field2.cxx */,
				BE82C41618C86E010050EB79 /* fixed.cxx */,
				BE82C41718C86E010050EB79 /* fixedhyper.cxx */,
				BE82C41818C86E010050EB79 /* group.cxx */,
				BE82C41918C86E010050EB79 /* ilstbox.cxx */,
				BE82C41A18C86E010050EB79 /* imgctrl.cxx */,
				BE82C41B18C86E010050EB79 /* longcurr.cxx */,
				BE82C41C18C86E010050EB79 /* lstbox.cxx */,
				BE82C41D18C86E010050EB79 /* menubtn.cxx */,
				BE82C41E18C86E010050EB79 /* morebtn.cxx */,
				BE82C41F18C86E010050EB79 /* prgsbar.cxx */,
				BE82C42018C86E010050EB79 /* quickselectionengine.cxx */,
				BE82C42118C86E010050EB79 /* scrbar.cxx */,
				BE82C42218C86E010050EB79 /* slider.cxx */,
				BE82C42318C86E010050EB79 /* spinbtn.cxx */,
				BE82C42418C86E010050EB79 /* spinfld.cxx */,
				BE82C42518C86E010050EB79 /* tabctrl.cxx */,
				BE82C42618C86E010050EB79 /* throbber.cxx */,
			);
			name = control;
			sourceTree = "<group>";
		};
		BEACEEC5257FC7F5001BAABA /* svx */ = {
			isa = PBXGroup;
			children = (
				BEACEEC6257FC82A001BAABA /* tbxctrls */,
			);
			name = svx;
			sourceTree = "<group>";
		};
		BEACEEC6257FC82A001BAABA /* tbxctrls */ = {
			isa = PBXGroup;
			children = (
				BEACEED3257FC853001BAABA /* bulletsnumbering.cxx */,
				BEACEED6257FC853001BAABA /* colrctrl.cxx */,
				BEACEECC257FC852001BAABA /* extrusioncontrols.cxx */,
				BEACEEDF257FC853001BAABA /* extrusioncontrols.hxx */,
				BEACEEDC257FC853001BAABA /* fillctrl.cxx */,
				BEACEEE2257FC853001BAABA /* fontworkgallery.cxx */,
				BEACEED9257FC853001BAABA /* formatpaintbrushctrl.cxx */,
				BEACEEDD257FC853001BAABA /* grafctrl.cxx */,
				BEACEEC7257FC852001BAABA /* itemwin.cxx */,
				BEACEED7257FC853001BAABA /* layctrl.cxx */,
				BEACEED4257FC853001BAABA /* lboxctrl.cxx */,
				BEACEECA257FC852001BAABA /* linectrl.cxx */,
				BEACEECE257FC852001BAABA /* linemetricbox.hxx */,
				BEACEEE0257FC853001BAABA /* linewidthctrl.cxx */,
				BEACEECD257FC852001BAABA /* Palette.cxx */,
				BEACEED2257FC852001BAABA /* PaletteManager.cxx */,
				BEACEED5257FC853001BAABA /* StylesPreviewToolBoxControl.cxx */,
				BEACEEE1257FC853001BAABA /* StylesPreviewWindow.cxx */,
				BEACEECF257FC852001BAABA /* SvxColorChildWindow.cxx */,
				BEACEEC9257FC852001BAABA /* SvxColorValueSet.cxx */,
				BEACEEDB257FC853001BAABA /* SvxPresetListBox.cxx */,
				BEACEED8257FC853001BAABA /* tbcontrl.cxx */,
				BEACEECB257FC852001BAABA /* tbunocontroller.cxx */,
				BEACEEDA257FC853001BAABA /* tbunodevtoolscontrollers.cxx */,
				BEACEEDE257FC853001BAABA /* tbunosearchcontrollers.cxx */,
				BEACEEE3257FC853001BAABA /* tbxcolor.cxx */,
				BEACEED0257FC852001BAABA /* tbxcolorupdate.cxx */,
				BEACEEC8257FC852001BAABA /* tbxdrctl.cxx */,
				BEACEED1257FC852001BAABA /* verttexttbxctrl.cxx */,
			);
			name = tbxctrls;
			sourceTree = "<group>";
		};
		BEBF3E2A2465886A00415E87 /* sal */ = {
			isa = PBXGroup;
			children = (
				BEBF3E2B2465888500415E87 /* osl */,
			);
			name = sal;
			sourceTree = "<group>";
		};
		BEBF3E2B2465888500415E87 /* osl */ = {
			isa = PBXGroup;
			children = (
				BEBF3E5E246588B800415E87 /* all */,
				BEBF3E2C2465888C00415E87 /* unx */,
			);
			name = osl;
			sourceTree = "<group>";
		};
		BEBF3E2C2465888C00415E87 /* unx */ = {
			isa = PBXGroup;
			children = (
				BEBF3E51246588AF00415E87 /* backtrace.c */,
				BEBF3E37246588AE00415E87 /* backtrace.h */,
				BEBF3E40246588AE00415E87 /* backtraceapi.cxx */,
				BEBF3E48246588AF00415E87 /* conditn.cxx */,
				BEBF3E3C246588AE00415E87 /* createfilehandlefromfd.hxx */,
				BEBF3E3F246588AE00415E87 /* file_error_transl.cxx */,
				BEBF3E33246588AE00415E87 /* file_error_transl.hxx */,
				BEBF3E35246588AE00415E87 /* file_impl.hxx */,
				BEBF3E54246588AF00415E87 /* file_misc.cxx */,
				BEBF3E31246588AE00415E87 /* file_path_helper.cxx */,
				BEBF3E38246588AE00415E87 /* file_path_helper.hxx */,
				BEBF3E3D246588AE00415E87 /* file_stat.cxx */,
				BEBF3E4E246588AF00415E87 /* file_url.cxx */,
				BEBF3E30246588AE00415E87 /* file_url.hxx */,
				BEBF3E45246588AE00415E87 /* file_volume.cxx */,
				BEBF3E58246588AF00415E87 /* file.cxx */,
				BEBF3E32246588AE00415E87 /* interlck.cxx */,
				BEBF3E47246588AE00415E87 /* memory.cxx */,
				BEBF3E2E246588AE00415E87 /* module.cxx */,
				BEBF3E43246588AE00415E87 /* mutex.cxx */,
				BEBF3E44246588AE00415E87 /* nlsupport.cxx */,
				BEBF3E42246588AE00415E87 /* nlsupport.hxx */,
				BEBF3E3B246588AE00415E87 /* osxlocale.cxx */,
				BEBF3E5C246588AF00415E87 /* pipe.cxx */,
				BEBF3E34246588AE00415E87 /* process_impl.cxx */,
				BEBF3E39246588AE00415E87 /* process.cxx */,
				BEBF3E55246588AF00415E87 /* profile.cxx */,
				BEBF3E56246588AF00415E87 /* random.cxx */,
				BEBF3E4F246588AF00415E87 /* readwrite_helper.cxx */,
				BEBF3E3E246588AE00415E87 /* readwrite_helper.hxx */,
				BEBF3E2D246588AE00415E87 /* salinit.cxx */,
				BEBF3E49246588AF00415E87 /* saltime.hxx */,
				BEBF3E5B246588AF00415E87 /* secimpl.hxx */,
				BEBF3E53246588AF00415E87 /* security.cxx */,
				BEBF3E4A246588AF00415E87 /* signal.cxx */,
				BEBF3E59246588AF00415E87 /* socket.cxx */,
				BEBF3E36246588AE00415E87 /* sockimpl.hxx */,
				BEBF3E5D246588B000415E87 /* soffice.cxx */,
				BEBF3E3A246588AE00415E87 /* soffice.hxx */,
				BEBF3E41246588AE00415E87 /* system.cxx */,
				BEBF3E5A246588AF00415E87 /* system.hxx */,
				BEBF3E4D246588AF00415E87 /* system.mm */,
				BEBF3E52246588AF00415E87 /* tempfile.cxx */,
				BEBF3E57246588AF00415E87 /* thread.cxx */,
				BEBF3E46246588AE00415E87 /* time.cxx */,
				BEBF3E2F246588AE00415E87 /* unixerrnostring.hxx */,
				BEBF3E4B246588AF00415E87 /* uunxapi.cxx */,
				BEBF3E4C246588AF00415E87 /* uunxapi.hxx */,
				BEBF3E50246588AF00415E87 /* uunxapi.mm */,
			);
			name = unx;
			sourceTree = "<group>";
		};
		BEBF3E5E246588B800415E87 /* all */ = {
			isa = PBXGroup;
			children = (
				BEBF3E65246588D100415E87 /* compat.cxx */,
				BEBF3E60246588D100415E87 /* debugbase.cxx */,
				BEBF3E61246588D100415E87 /* filepath.cxx */,
				BEBF3E5F246588D100415E87 /* loadmodulerelative.cxx */,
				BEBF3E62246588D100415E87 /* log.cxx */,
				BEBF3E64246588D100415E87 /* signalshared.cxx */,
				BEBF3E63246588D100415E87 /* utility.cxx */,
			);
			name = all;
			sourceTree = "<group>";
		};
		BEBF3E662465907000415E87 /* sw */ = {
			isa = PBXGroup;
			children = (
				BEBF3E6E246593A300415E87 /* ui */,
				BEBF3E672465907D00415E87 /* uibase */,
			);
			name = sw;
			sourceTree = "<group>";
		};
		BEBF3E672465907D00415E87 /* uibase */ = {
			isa = PBXGroup;
			children = (
				BEBF3E682465908300415E87 /* misc */,
			);
			name = uibase;
			sourceTree = "<group>";
		};
		BEBF3E682465908300415E87 /* misc */ = {
			isa = PBXGroup;
			children = (
				BEBF3E6C246590A500415E87 /* glosdoc.cxx */,
				BEBF3E6D246590A500415E87 /* glshell.cxx */,
				BEBF3E6B246590A500415E87 /* numberingtypelistbox.cxx */,
				BEBF3E69246590A500415E87 /* redlndlg.cxx */,
				BEBF3E6A246590A500415E87 /* swruler.cxx */,
			);
			name = misc;
			sourceTree = "<group>";
		};
		BEBF3E6E246593A300415E87 /* ui */ = {
			isa = PBXGroup;
			children = (
				BEBF3E6F246593AD00415E87 /* misc */,
			);
			name = ui;
			sourceTree = "<group>";
		};
		BEBF3E6F246593AD00415E87 /* misc */ = {
			isa = PBXGroup;
			children = (
				BEBF3E74246593C700415E87 /* bookmark.cxx */,
				BEBF3E7B246593C700415E87 /* docfnote.cxx */,
				BEBF3E73246593C700415E87 /* glosbib.cxx */,
				BEBF3E77246593C700415E87 /* glossary.cxx */,
				BEBF3E7A246593C700415E87 /* impfnote.hxx */,
				BEBF3E78246593C700415E87 /* insfnote.cxx */,
				BEBF3E75246593C700415E87 /* linenum.cxx */,
				BEBF3E76246593C700415E87 /* num.cxx */,
				BEBF3E79246593C700415E87 /* outline.cxx */,
				BEBF3E70246593C700415E87 /* pgfnote.cxx */,
				BEBF3E7D246593C700415E87 /* pggrid.cxx */,
				BEBF3E72246593C700415E87 /* srtdlg.cxx */,
				BEBF3E7C246593C700415E87 /* swmodalredlineacceptdlg.cxx */,
				BEBF3E71246593C700415E87 /* titlepage.cxx */,
			);
			name = misc;
			sourceTree = "<group>";
		};
		BEBF3E7E246ACF8900415E87 /* desktop */ = {
			isa = PBXGroup;
			children = (
				BEBF3E7F246ACF9B00415E87 /* deployment */,
			);
			name = desktop;
			sourceTree = "<group>";
		};
		BEBF3E7F246ACF9B00415E87 /* deployment */ = {
			isa = PBXGroup;
			children = (
				BEBF3EB12472A90900415E87 /* gui */,
				BEBF3E80246ACFA700415E87 /* manager */,
				BEBF3ECA2472B1EE00415E87 /* misc */,
				BEBF3EC52472AC2D00415E87 /* registry */,
			);
			name = deployment;
			sourceTree = "<group>";
		};
		BEBF3E80246ACFA700415E87 /* manager */ = {
			isa = PBXGroup;
			children = (
				BEBF3E8B246ACFCA00415E87 /* dp_activepackages.cxx */,
				BEBF3E86246ACFCA00415E87 /* dp_activepackages.hxx */,
				BEBF3E8C246ACFCA00415E87 /* dp_commandenvironments.cxx */,
				BEBF3E87246ACFCA00415E87 /* dp_commandenvironments.hxx */,
				BEBF3E85246ACFCA00415E87 /* dp_extensionmanager.cxx */,
				BEBF3E81246ACFCA00415E87 /* dp_extensionmanager.hxx */,
				BEBF3E8A246ACFCA00415E87 /* dp_informationprovider.cxx */,
				BEBF3E84246ACFCA00415E87 /* dp_manager.cxx */,
				BEBF3E82246ACFCA00415E87 /* dp_manager.h */,
				BEBF3E83246ACFCA00415E87 /* dp_managerfac.cxx */,
				BEBF3E88246ACFCA00415E87 /* dp_properties.cxx */,
				BEBF3E89246ACFCA00415E87 /* dp_properties.hxx */,
			);
			name = manager;
			sourceTree = "<group>";
		};
		BEBF3E8D246AD70C00415E87 /* ucb */ = {
			isa = PBXGroup;
			children = (
				BEBF3E8E246AD71F00415E87 /* ucp */,
			);
			name = ucb;
			sourceTree = "<group>";
		};
		BEBF3E8E246AD71F00415E87 /* ucp */ = {
			isa = PBXGroup;
			children = (
				BEBF3E8F246AD73100415E87 /* file */,
			);
			name = ucp;
			sourceTree = "<group>";
		};
		BEBF3E8F246AD73100415E87 /* file */ = {
			isa = PBXGroup;
			children = (
				BEBF3E9E246AD75500415E87 /* bc.cxx */,
				BEBF3E9B246AD75500415E87 /* bc.hxx */,
				BEBF3EAB246AD75500415E87 /* filcmd.cxx */,
				BEBF3E9A246AD75500415E87 /* filcmd.hxx */,
				BEBF3EA8246AD75500415E87 /* filerror.hxx */,
				BEBF3E9C246AD75500415E87 /* filglob.cxx */,
				BEBF3EA9246AD75500415E87 /* filglob.hxx */,
				BEBF3EA6246AD75500415E87 /* filid.cxx */,
				BEBF3E99246AD75500415E87 /* filid.hxx */,
				BEBF3EAC246AD75500415E87 /* filinl.hxx */,
				BEBF3EA5246AD75500415E87 /* filinpstr.cxx */,
				BEBF3EAD246AD75600415E87 /* filinpstr.hxx */,
				BEBF3E98246AD75500415E87 /* filinsreq.cxx */,
				BEBF3EA3246AD75500415E87 /* filinsreq.hxx */,
				BEBF3E9F246AD75500415E87 /* filnot.cxx */,
				BEBF3E94246AD75500415E87 /* filnot.hxx */,
				BEBF3EA7246AD75500415E87 /* filprp.cxx */,
				BEBF3E93246AD75500415E87 /* filprp.hxx */,
				BEBF3EA2246AD75500415E87 /* filrec.cxx */,
				BEBF3E91246AD75500415E87 /* filrec.hxx */,
				BEBF3EA0246AD75500415E87 /* filrow.cxx */,
				BEBF3E90246AD75500415E87 /* filrow.hxx */,
				BEBF3E92246AD75500415E87 /* filrset.cxx */,
				BEBF3E95246AD75500415E87 /* filrset.hxx */,
				BEBF3EAA246AD75500415E87 /* filstr.cxx */,
				BEBF3EA4246AD75500415E87 /* filstr.hxx */,
				BEBF3E96246AD75500415E87 /* filtask.cxx */,
				BEBF3E9D246AD75500415E87 /* filtask.hxx */,
				BEBF3E97246AD75500415E87 /* prov.cxx */,
				BEBF3EA1246AD75500415E87 /* prov.hxx */,
			);
			name = file;
			sourceTree = "<group>";
		};
		BEBF3EB12472A90900415E87 /* gui */ = {
			isa = PBXGroup;
			children = (
				BEBF3EB22472A92D00415E87 /* dp_gui_dependencydialog.cxx */,
				BEBF3EB62472A92D00415E87 /* dp_gui_dependencydialog.hxx */,
				BEBF3EB92472A92D00415E87 /* dp_gui_dialog2.cxx */,
				BEBF3EC32472A92D00415E87 /* dp_gui_dialog2.hxx */,
				BEBF3EC02472A92D00415E87 /* dp_gui_extensioncmdqueue.cxx */,
				BEBF3EB32472A92D00415E87 /* dp_gui_extensioncmdqueue.hxx */,
				BEBF3EBE2472A92D00415E87 /* dp_gui_extlistbox.cxx */,
				BEBF3EBF2472A92D00415E87 /* dp_gui_extlistbox.hxx */,
				BEBF3EBC2472A92D00415E87 /* dp_gui_service.cxx */,
				BEBF3EBB2472A92D00415E87 /* dp_gui_theextmgr.cxx */,
				BEBF3EB42472A92D00415E87 /* dp_gui_theextmgr.hxx */,
				BEBF3EBD2472A92D00415E87 /* dp_gui_updatedata.hxx */,
				BEBF3EB72472A92D00415E87 /* dp_gui_updatedialog.cxx */,
				BEBF3EC22472A92D00415E87 /* dp_gui_updatedialog.hxx */,
				BEBF3EBA2472A92D00415E87 /* dp_gui_updateinstalldialog.cxx */,
				BEBF3EC12472A92D00415E87 /* dp_gui_updateinstalldialog.hxx */,
				BEBF3EC42472A92D00415E87 /* dp_gui.h */,
				BEBF3EB82472A92D00415E87 /* license_dialog.cxx */,
				BEBF3EB52472A92D00415E87 /* license_dialog.hxx */,
			);
			name = gui;
			sourceTree = "<group>";
		};
		BEBF3EC52472AC2D00415E87 /* registry */ = {
			isa = PBXGroup;
			children = (
				BEBF3EC62472AC3A00415E87 /* package */,
			);
			name = registry;
			sourceTree = "<group>";
		};
		BEBF3EC62472AC3A00415E87 /* package */ = {
			isa = PBXGroup;
			children = (
				BEBF3EC82472AC5900415E87 /* dp_extbackenddb.cxx */,
				BEBF3EC72472AC5900415E87 /* dp_extbackenddb.hxx */,
				BEBF3EC92472AC5900415E87 /* dp_package.cxx */,
			);
			name = package;
			sourceTree = "<group>";
		};
		BEBF3ECA2472B1EE00415E87 /* misc */ = {
			isa = PBXGroup;
			children = (
				BEBF3ED42472B21600415E87 /* dp_dependencies.cxx */,
				BEBF3ECE2472B21600415E87 /* dp_descriptioninfoset.cxx */,
				BEBF3ECD2472B21600415E87 /* dp_identifier.cxx */,
				BEBF3ECB2472B21600415E87 /* dp_interact.cxx */,
				BEBF3ED32472B21600415E87 /* dp_misc.cxx */,
				BEBF3ECC2472B21600415E87 /* dp_platform.cxx */,
				BEBF3ED12472B21600415E87 /* dp_resource.cxx */,
				BEBF3ED52472B21600415E87 /* dp_ucb.cxx */,
				BEBF3ECF2472B21600415E87 /* dp_update.cxx */,
				BEBF3ED22472B21600415E87 /* dp_version.cxx */,
				BEBF3ED02472B21600415E87 /* lockfile.cxx */,
			);
			name = misc;
			sourceTree = "<group>";
		};
		BEC3D9171710B0390030AD56 = {
			isa = PBXGroup;
			children = (
				BEDCC8B62459A0DA00FB02BD /* bridges */,
				BEDCC8FD246082D400FB02BD /* cui */,
				BE28694D257D0668000E863E /* dbaccess */,
				BEBF3E7E246ACF8900415E87 /* desktop */,
				BE2DAD2B183148BE00A4D2F7 /* formula */,
				BE82BE5918298DFB00A447B5 /* java */,
				BEBF3E2A2465886A00415E87 /* sal */,
				BE82BE5818298DEB00A447B5 /* sc */,
				BE02646523797385008D3E52 /* sd */,
				BE49324C2478EC840013BCD6 /* sfx2 */,
				BE017C5125AFCC0D00244ED8 /* sot */,
				BEACEEC5257FC7F5001BAABA /* svx */,
				BEBF3E662465907000415E87 /* sw */,
				BEBF3E8D246AD70C00415E87 /* ucb */,
				BEDCC8F02460807C00FB02BD /* unotools */,
				BE82BE5A18298E2E00A447B5 /* vcl */,
				BE49323F247820A10013BCD6 /* xmlsecurity */,
			);
			sourceTree = "<group>";
		};
		BEDCC8B62459A0DA00FB02BD /* bridges */ = {
			isa = PBXGroup;
			children = (
				BEDCC8B72459A0E600FB02BD /* cpp_uno */,
			);
			name = bridges;
			sourceTree = "<group>";
		};
		BEDCC8B72459A0E600FB02BD /* cpp_uno */ = {
			isa = PBXGroup;
			children = (
				BEDCC8C02459A11C00FB02BD /* gcc3_macosx_x86-64 */,
				BEDCC8B82459A0ED00FB02BD /* shared */,
			);
			name = cpp_uno;
			sourceTree = "<group>";
		};
		BEDCC8B82459A0ED00FB02BD /* shared */ = {
			isa = PBXGroup;
			children = (
				BEDCC8BD2459A10600FB02BD /* bridge.cxx */,
				BEDCC8BE2459A10600FB02BD /* component.cxx */,
				BEDCC8BF2459A10600FB02BD /* cppinterfaceproxy.cxx */,
				BEDCC8BA2459A10600FB02BD /* types.cxx */,
				BEDCC8B92459A10600FB02BD /* unointerfaceproxy.cxx */,
				BEDCC8BC2459A10600FB02BD /* vtablefactory.cxx */,
				BEDCC8BB2459A10600FB02BD /* vtables.cxx */,
			);
			name = shared;
			sourceTree = "<group>";
		};
		BEDCC8C02459A11C00FB02BD /* gcc3_macosx_x86-64 */ = {
			isa = PBXGroup;
			children = (
				BEDCC8C52459A12E00FB02BD /* abi.cxx */,
				BEDCC8C82459A12E00FB02BD /* abi.hxx */,
				BEDCC8C62459A12E00FB02BD /* call.cxx */,
				BEDCC8C72459A12E00FB02BD /* call.hxx */,
				BEDCC8CA2459A12E00FB02BD /* callvirtualmethod.cxx */,
				BEDCC8C92459A12E00FB02BD /* callvirtualmethod.hxx */,
				BEDCC8C22459A12E00FB02BD /* cpp2uno.cxx */,
				BEDCC8C42459A12E00FB02BD /* except.cxx */,
				BEDCC8C32459A12E00FB02BD /* share.hxx */,
				BEDCC8C12459A12E00FB02BD /* uno2cpp.cxx */,
			);
			name = "gcc3_macosx_x86-64";
			sourceTree = "<group>";
		};
		BEDCC8F02460807C00FB02BD /* unotools */ = {
			isa = PBXGroup;
			children = (
				BEDCC8F12460808A00FB02BD /* i18n */,
			);
			name = unotools;
			sourceTree = "<group>";
		};
		BEDCC8F12460808A00FB02BD /* i18n */ = {
			isa = PBXGroup;
			children = (
				BEDCC8F6246080F600FB02BD /* calendarwrapper.cxx */,
				BEDCC8F8246080F600FB02BD /* caserotate.cxx */,
				BEDCC8F7246080F600FB02BD /* charclass.cxx */,
				BEDCC8FB246080F600FB02BD /* collatorwrapper.cxx */,
				BEDCC8F9246080F600FB02BD /* intlwrapper.cxx */,
				BEDCC8F3246080F600FB02BD /* localedatawrapper.cxx */,
				BEDCC8FA246080F600FB02BD /* nativenumberwrapper.cxx */,
				BEDCC8F4246080F600FB02BD /* readwritemutexguard.cxx */,
				BEDCC8F5246080F600FB02BD /* resmgr.cxx */,
				BEDCC8FC246080F600FB02BD /* textsearch.cxx */,
				BEDCC8F2246080F600FB02BD /* transliterationwrapper.cxx */,
			);
			name = i18n;
			sourceTree = "<group>";
		};
		BEDCC8FD246082D400FB02BD /* cui */ = {
			isa = PBXGroup;
			children = (
				BE017C2025AF57D700244ED8 /* dialogs */,
				BEDCC8FE246082DE00FB02BD /* options */,
			);
			name = cui;
			sourceTree = "<group>";
		};
		BEDCC8FE246082DE00FB02BD /* options */ = {
			isa = PBXGroup;
			children = (
				BEDCC9262460830A00FB02BD /* certpath.cxx */,
				BEDCC90B2460830900FB02BD /* certpath.hxx */,
				BEDCC91A2460830A00FB02BD /* cfgchart.cxx */,
				BEDCC9382460830C00FB02BD /* cfgchart.hxx */,
				BEDCC9092460830800FB02BD /* connpoolconfig.cxx */,
				BEDCC93A2460830C00FB02BD /* connpoolconfig.hxx */,
				BEDCC91B2460830A00FB02BD /* connpooloptions.cxx */,
				BEDCC92D2460830B00FB02BD /* connpooloptions.hxx */,
				BEDCC9072460830800FB02BD /* connpoolsettings.cxx */,
				BEDCC9022460830800FB02BD /* connpoolsettings.hxx */,
				BEDCC91F2460830A00FB02BD /* cuisrchdlg.cxx */,
				BEDCC9172460830900FB02BD /* dbregister.cxx */,
				BEDCC9322460830B00FB02BD /* dbregisterednamesconfig.cxx */,
				BEDCC9052460830800FB02BD /* dbregisterednamesconfig.hxx */,
				BEDCC9292460830B00FB02BD /* dbregistersettings.cxx */,
				BEDCC9222460830A00FB02BD /* dbregistersettings.hxx */,
				BEDCC90A2460830800FB02BD /* doclinkdialog.cxx */,
				BEDCC9402460830D00FB02BD /* doclinkdialog.hxx */,
				BEDCC9012460830800FB02BD /* fontsubs.cxx */,
				BEDCC91C2460830A00FB02BD /* fontsubs.hxx */,
				BEDCC9102460830900FB02BD /* optaboutconfig.cxx */,
				BEDCC93C2460830C00FB02BD /* optaboutconfig.hxx */,
				BEDCC9192460830900FB02BD /* optaccessibility.cxx */,
				BEDCC92C2460830B00FB02BD /* optaccessibility.hxx */,
				BEDCC93D2460830C00FB02BD /* optasian.cxx */,
				BEDCC93F2460830C00FB02BD /* optbasic.cxx */,
				BEDCC9162460830900FB02BD /* optbasic.hxx */,
				BEDCC9392460830C00FB02BD /* optchart.cxx */,
				BEDCC91E2460830A00FB02BD /* optchart.hxx */,
				BEDCC92F2460830B00FB02BD /* optcolor.cxx */,
				BEDCC90D2460830900FB02BD /* optcolor.hxx */,
				BEDCC9202460830A00FB02BD /* optctl.cxx */,
				BEDCC92B2460830B00FB02BD /* optctl.hxx */,
				BEDCC92E2460830B00FB02BD /* optdict.cxx */,
				BEDCC9312460830B00FB02BD /* optfltr.cxx */,
				BEDCC9182460830900FB02BD /* optfltr.hxx */,
				BEDCC9342460830C00FB02BD /* optgdlg.cxx */,
				BEDCC90E2460830900FB02BD /* optgdlg.hxx */,
				BEDCC9212460830A00FB02BD /* optgenrl.cxx */,
				BEDCC9032460830800FB02BD /* opthtml.cxx */,
				BEDCC8FF2460830800FB02BD /* opthtml.hxx */,
				BEDCC9352460830C00FB02BD /* optinet2.cxx */,
				BEDCC9362460830C00FB02BD /* optinet2.hxx */,
				BEDCC9302460830B00FB02BD /* optjava.cxx */,
				BEDCC93E2460830C00FB02BD /* optjava.hxx */,
				BEDCC9122460830900FB02BD /* optjsearch.cxx */,
				BEDCC9252460830A00FB02BD /* optjsearch.hxx */,
				BEDCC9272460830A00FB02BD /* optlingu.cxx */,
				BEDCC9112460830900FB02BD /* optopencl.cxx */,
				BEDCC9332460830B00FB02BD /* optopencl.hxx */,
				BEDCC9232460830A00FB02BD /* optpath.cxx */,
				BEDCC92A2460830B00FB02BD /* optsave.cxx */,
				BEDCC9242460830A00FB02BD /* optsave.hxx */,
				BEDCC9142460830900FB02BD /* optupdt.cxx */,
				BEDCC9132460830900FB02BD /* optupdt.hxx */,
				BEDCC9082460830800FB02BD /* personalization.cxx */,
				BEDCC9372460830C00FB02BD /* personalization.hxx */,
				BEDCC9002460830800FB02BD /* sdbcdriverenum.cxx */,
				BEDCC9152460830900FB02BD /* sdbcdriverenum.hxx */,
				BEDCC9042460830800FB02BD /* securityoptions.cxx */,
				BEDCC9282460830B00FB02BD /* securityoptions.hxx */,
				BEDCC90C2460830900FB02BD /* treeopt.cxx */,
				BEDCC93B2460830C00FB02BD /* tsaurls.cxx */,
				BEDCC90F2460830900FB02BD /* tsaurls.hxx */,
				BEDCC91D2460830A00FB02BD /* webconninfo.cxx */,
				BEDCC9062460830800FB02BD /* webconninfo.hxx */,
			);
			name = options;
			sourceTree = "<group>";
		};
/* End PBXGroup section */

/* Begin PBXLegacyTarget section */
		BEC3D91E1710B11E0030AD56 /* soffice */ = {
			isa = PBXLegacyTarget;
			buildArgumentsString = "build-nocheck";
			buildConfigurationList = BEC3D9211710B11E0030AD56 /* Build configuration list for PBXLegacyTarget "soffice" */;
			buildPhases = (
			);
			buildToolPath = /usr/local/bin/make;
			buildWorkingDirectory = ..;
			dependencies = (
			);
			name = soffice;
			passBuildSettingsInEnvironment = 0;
			productName = soffice;
		};
/* End PBXLegacyTarget section */

/* Begin PBXProject section */
		BEC3D9181710B0390030AD56 /* Project object */ = {
			isa = PBXProject;
			attributes = {
				LastUpgradeCheck = 0930;
			};
			buildConfigurationList = BEC3D91B1710B0390030AD56 /* Build configuration list for PBXProject "soffice" */;
			compatibilityVersion = "Xcode 3.2";
			developmentRegion = English;
			hasScannedForEncodings = 0;
			knownRegions = (
				English,
				en,
			);
			mainGroup = BEC3D9171710B0390030AD56;
			projectDirPath = "";
			projectRoot = "";
			targets = (
				BEC3D91E1710B11E0030AD56 /* soffice */,
			);
		};
/* End PBXProject section */

/* Begin XCBuildConfiguration section */
		BEC3D91C1710B0390030AD56 /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
				CLANG_WARN_BOOL_CONVERSION = YES;
				CLANG_WARN_COMMA = YES;
				CLANG_WARN_CONSTANT_CONVERSION = YES;
				CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
				CLANG_WARN_EMPTY_BODY = YES;
				CLANG_WARN_ENUM_CONVERSION = YES;
				CLANG_WARN_INFINITE_RECURSION = YES;
				CLANG_WARN_INT_CONVERSION = YES;
				CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
				CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
				CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
				CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
				CLANG_WARN_STRICT_PROTOTYPES = YES;
				CLANG_WARN_SUSPICIOUS_MOVE = YES;
				CLANG_WARN_UNREACHABLE_CODE = YES;
				CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
				ENABLE_STRICT_OBJC_MSGSEND = YES;
				ENABLE_TESTABILITY = YES;
				GCC_NO_COMMON_BLOCKS = YES;
				GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
				GCC_WARN_ABOUT_RETURN_TYPE = YES;
				GCC_WARN_UNDECLARED_SELECTOR = YES;
				GCC_WARN_UNINITIALIZED_AUTOS = YES;
				GCC_WARN_UNUSED_FUNCTION = YES;
				GCC_WARN_UNUSED_VARIABLE = YES;
				ONLY_ACTIVE_ARCH = YES;
			};
			name = Debug;
		};
		BEC3D91D1710B0390030AD56 /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
				CLANG_WARN_BOOL_CONVERSION = YES;
				CLANG_WARN_COMMA = YES;
				CLANG_WARN_CONSTANT_CONVERSION = YES;
				CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
				CLANG_WARN_EMPTY_BODY = YES;
				CLANG_WARN_ENUM_CONVERSION = YES;
				CLANG_WARN_INFINITE_RECURSION = YES;
				CLANG_WARN_INT_CONVERSION = YES;
				CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
				CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
				CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
				CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
				CLANG_WARN_STRICT_PROTOTYPES = YES;
				CLANG_WARN_SUSPICIOUS_MOVE = YES;
				CLANG_WARN_UNREACHABLE_CODE = YES;
				CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
				ENABLE_STRICT_OBJC_MSGSEND = YES;
				GCC_NO_COMMON_BLOCKS = YES;
				GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
				GCC_WARN_ABOUT_RETURN_TYPE = YES;
				GCC_WARN_UNDECLARED_SELECTOR = YES;
				GCC_WARN_UNINITIALIZED_AUTOS = YES;
				GCC_WARN_UNUSED_FUNCTION = YES;
				GCC_WARN_UNUSED_VARIABLE = YES;
			};
			name = Release;
		};
		BEC3D91F1710B11E0030AD56 /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = NO;
				CLANG_ENABLE_OBJC_WEAK = YES;
				CLANG_WARN_CONSTANT_CONVERSION = YES;
				CLANG_WARN_EMPTY_BODY = YES;
				CLANG_WARN_ENUM_CONVERSION = YES;
				CLANG_WARN_INT_CONVERSION = YES;
				CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
				COPY_PHASE_STRIP = NO;
				DEBUGGING_SYMBOLS = YES;
				GCC_C_LANGUAGE_STANDARD = gnu99;
				GCC_DYNAMIC_NO_PIC = NO;
				GCC_ENABLE_OBJC_EXCEPTIONS = YES;
				GCC_GENERATE_DEBUGGING_SYMBOLS = YES;
				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;
				GCC_WARN_UNINITIALIZED_AUTOS = YES;
				GCC_WARN_UNUSED_VARIABLE = YES;
				LO_CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
				LO_CLANG_CXX_LIBRARY = "libc++";
				MACOSX_DEPLOYMENT_TARGET = 10.8;
				ONLY_ACTIVE_ARCH = YES;
				OTHER_CFLAGS = "";
				OTHER_LDFLAGS = "";
				PRODUCT_NAME = "$(TARGET_NAME)";
				SDKROOT = macosx;
			};
			name = Debug;
		};
		BEC3D9201710B11E0030AD56 /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = NO;
				CLANG_ENABLE_OBJC_WEAK = YES;
				CLANG_WARN_CONSTANT_CONVERSION = YES;
				CLANG_WARN_EMPTY_BODY = YES;
				CLANG_WARN_ENUM_CONVERSION = YES;
				CLANG_WARN_INT_CONVERSION = YES;
				CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
				COPY_PHASE_STRIP = YES;
				DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
				GCC_C_LANGUAGE_STANDARD = gnu99;
				GCC_ENABLE_OBJC_EXCEPTIONS = YES;
				GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
				GCC_WARN_ABOUT_RETURN_TYPE = YES;
				GCC_WARN_UNINITIALIZED_AUTOS = YES;
				GCC_WARN_UNUSED_VARIABLE = YES;
				LO_CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
				LO_CLANG_CXX_LIBRARY = "libc++";
				MACOSX_DEPLOYMENT_TARGET = 10.8;
				OTHER_CFLAGS = "";
				OTHER_LDFLAGS = "";
				PRODUCT_NAME = "$(TARGET_NAME)";
				SDKROOT = macosx;
			};
			name = Release;
		};
/* End XCBuildConfiguration section */

/* Begin XCConfigurationList section */
		BEC3D91B1710B0390030AD56 /* Build configuration list for PBXProject "soffice" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				BEC3D91C1710B0390030AD56 /* Debug */,
				BEC3D91D1710B0390030AD56 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		BEC3D9211710B11E0030AD56 /* Build configuration list for PBXLegacyTarget "soffice" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				BEC3D91F1710B11E0030AD56 /* Debug */,
				BEC3D9201710B11E0030AD56 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
/* End XCConfigurationList section */
	};
	rootObject = BEC3D9181710B0390030AD56 /* Project object */;
}