summaryrefslogtreecommitdiffstats
path: root/osx/soffice.xcodeproj/project.pbxproj
blob: 187d6ad4a9a42a2cc07dc2a535e5c00188693bad (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
// !$*UTF8*$!
{
	archiveVersion = 1;
	classes = {
	};
	objectVersion = 46;
	objects = {

/* Begin PBXFileReference section */
		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>"; };
		BE2DACF1182D0CBB00A4D2F7 /* formulagroupcl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = formulagroupcl.cxx; path = ../sc/source/core/opencl/formulagroupcl.cxx; sourceTree = "<group>"; };
		BE2DACF2182D0CBB00A4D2F7 /* op_database.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = op_database.cxx; path = ../sc/source/core/opencl/op_database.cxx; sourceTree = "<group>"; };
		BE2DACF3182D0CBB00A4D2F7 /* op_financial.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = op_financial.cxx; path = ../sc/source/core/opencl/op_financial.cxx; sourceTree = "<group>"; };
		BE2DACF4182D0CBB00A4D2F7 /* op_math.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = op_math.cxx; path = ../sc/source/core/opencl/op_math.cxx; sourceTree = "<group>"; };
		BE2DACF5182D0CBB00A4D2F7 /* op_statistical.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = op_statistical.cxx; path = ../sc/source/core/opencl/op_statistical.cxx; sourceTree = "<group>"; };
		BE2DACF6182D0CBB00A4D2F7 /* opbase.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = opbase.cxx; path = ../sc/source/core/opencl/opbase.cxx; sourceTree = "<group>"; };
		BE2DACF7182D0CBB00A4D2F7 /* openclwrapper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = openclwrapper.cxx; path = ../sc/source/core/opencl/openclwrapper.cxx; sourceTree = "<group>"; };
		BE2DACF8182D0CBB00A4D2F7 /* opinlinefun_finacial.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = opinlinefun_finacial.cxx; path = ../sc/source/core/opencl/opinlinefun_finacial.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>"; };
		BE2DAD14182FAB5200A4D2F7 /* popupmenuwindow.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = popupmenuwindow.cxx; path = ../vcl/source/window/popupmenuwindow.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>"; };
		BE40143A182BEB7200731FA1 /* formulagroup.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = formulagroup.cxx; path = ../sc/source/core/tool/formulagroup.cxx; sourceTree = "<group>"; };
		BE40143B182C36B000731FA1 /* clkernelthread.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = clkernelthread.cxx; path = ../sc/source/core/tool/clkernelthread.cxx; 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>"; };
		BE82BE5718298DE100A447B5 /* formulacell.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = formulacell.cxx; path = ../sc/source/core/data/formulacell.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>"; };
		BEC676DE17461A720069E01D /* dbggui.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dbggui.cxx; path = ../vcl/source/app/dbggui.cxx; sourceTree = "<group>"; };
		BECB749D17189A3B001BEB85 /* crsrsh.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = crsrsh.cxx; path = ../sw/source/core/crsr/crsrsh.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 */
		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>";
		};
		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 */,
				BE2DAD14182FAB5200A4D2F7 /* popupmenuwindow.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>";
		};
		BE2DAD28182FAB7900A4D2F7 /* sw */ = {
			isa = PBXGroup;
			children = (
				BECB749D17189A3B001BEB85 /* crsrsh.cxx */,
			);
			name = sw;
			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>";
		};
		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 = (
				BE40143B182C36B000731FA1 /* clkernelthread.cxx */,
				BE82BE5718298DE100A447B5 /* formulacell.cxx */,
				BE40143A182BEB7200731FA1 /* formulagroup.cxx */,
				BE2DACF1182D0CBB00A4D2F7 /* formulagroupcl.cxx */,
				BE2DACF2182D0CBB00A4D2F7 /* op_database.cxx */,
				BE2DACF3182D0CBB00A4D2F7 /* op_financial.cxx */,
				BE2DACF4182D0CBB00A4D2F7 /* op_math.cxx */,
				BE2DACF5182D0CBB00A4D2F7 /* op_statistical.cxx */,
				BE2DACF6182D0CBB00A4D2F7 /* opbase.cxx */,
				BE2DACF7182D0CBB00A4D2F7 /* openclwrapper.cxx */,
				BE2DACF8182D0CBB00A4D2F7 /* opinlinefun_finacial.cxx */,
			);
			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>";
		};
		BEC3D9171710B0390030AD56 = {
			isa = PBXGroup;
			children = (
				BEDCC8B62459A0DA00FB02BD /* bridges */,
				BEDCC8FD246082D400FB02BD /* cui */,
				BE2DAD2B183148BE00A4D2F7 /* formula */,
				BE2DAD28182FAB7900A4D2F7 /* sw */,
				BEDCC8F02460807C00FB02BD /* unotools */,
				BE82BE5A18298E2E00A447B5 /* vcl */,
				BE82BE5918298DFB00A447B5 /* java */,
				BE82BE5818298DEB00A447B5 /* sc */,
				BE02646523797385008D3E52 /* sd */,
			);
			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 */,
			);
			path = 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 */,
			);
			path = "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 = (
				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_CXX_LANGUAGE_STANDARD = "gnu++0x";
				CLANG_CXX_LIBRARY = "libc++";
				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;
				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_CXX_LANGUAGE_STANDARD = "gnu++0x";
				CLANG_CXX_LIBRARY = "libc++";
				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;
				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 */;
}