summaryrefslogtreecommitdiff
path: root/ios
diff options
context:
space:
mode:
authorjan Iversen <jani@libreoffice.org>2017-02-11 19:31:45 +0100
committerjan iversen <jani@libreoffice.org>2017-02-16 15:04:18 +0000
commit7a8bfd1041179997269ca02ba156136cf8b622b5 (patch)
tree0ab62fbef0c1ed38dfeddfabd09b54a168fa75c3 /ios
parent7ecbffb3e4879d2fbcf6b20e57d37b8eb1efa660 (diff)
ios, prepare for multiple targets.
Moved common macros to CustomTarget_Lo_Xcconfig.mk to simplify each real target added link to workdir/ios (needed by xcodeproj) moved creation of configuration files to LO_Xcconfig, since they are identical for all ios projects central part of moving non git files to workdir completed changed relative path in project.pbxproj to be <project> instead of <group> Change-Id: I6be51f4d8a07ea7da08c0e5f1458fccfc3831a1e Reviewed-on: https://gerrit.libreoffice.org/34223 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: jan iversen <jani@libreoffice.org>
Diffstat (limited to 'ios')
-rw-r--r--ios/.gitignore3
-rw-r--r--ios/CustomTarget_Lo_Xcconfig.mk138
-rw-r--r--ios/CustomTarget_TiledLibreOffice_app.mk100
-rw-r--r--ios/experimental/TiledLibreOffice/TiledLibreOffice.xcodeproj/project.pbxproj1861
-rw-r--r--ios/experimental/TiledLibreOffice/TiledLibreOffice/TiledLibreOffice-Info.plist6
-rw-r--r--ios/lo.xcconfig.in2
6 files changed, 1018 insertions, 1092 deletions
diff --git a/ios/.gitignore b/ios/.gitignore
index 08c6a6864eb9..4c274d723106 100644
--- a/ios/.gitignore
+++ b/ios/.gitignore
@@ -6,4 +6,5 @@
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
#
-/lo.xcconfig
+ioswork
+lo.xcconfig
diff --git a/ios/CustomTarget_Lo_Xcconfig.mk b/ios/CustomTarget_Lo_Xcconfig.mk
index 8670355d519d..75a6cb094a18 100644
--- a/ios/CustomTarget_Lo_Xcconfig.mk
+++ b/ios/CustomTarget_Lo_Xcconfig.mk
@@ -6,35 +6,135 @@
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#- Env ------------------------------------------------------------------------
+IOSWORK := $(BUILDDIR)/workdir
+IOSDIR := $(IOSWORK)/ios
+IOSRESOURCE := $(IOSDIR)/resources
+IOSGENERATED := $(IOSDIR)/generated
+IOSLINK := $(SRCDIR)/ios/ioswork
+LO_XCCONFIG = $(IOSGENERATED)/lo.xcconfig
+
+
+#- Macros to be used, in each target ------------------------------------------
+define IOSbuild
+ CC=; \
+ $(call gb_Helper_print_on_error, \
+ xcodebuild \
+ -project $(SRCDIR)/ios/experimental/$(1)/$(1).xcodeproj \
+ -target $(1) \
+ -sdk $(XCODEBUILD_SDK) \
+ -arch $(XCODE_ARCHS) \
+ -configuration $(if $(ENABLE_DEBUG),Debug,Release) \
+ $(2) \
+ , $(IOSDIR)/$(1).log \
+ )
+endef
+
+
$(eval $(call gb_CustomTarget_CustomTarget,ios/Lo_Xcconfig))
-LO_XCCONFIG = $(BUILDDIR)/ios/lo.xcconfig
$(call gb_CustomTarget_get_target,ios/Lo_Xcconfig): $(LO_XCCONFIG)
.PHONY : $(LO_XCCONFIG)
$(LO_XCCONFIG) :
- # Edit the Xcode configuration file:
- # - the list of all our (static) libs
- # - compiler flags
- #
+ $(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),ENV,2)
+
+ # prepare work directories for all ios builds
+ rm -rf $(IOSRESOURCE) $(IOSLINK) 2>/dev/null;
+ mkdir -p $(IOSDIR) $(IOSGENERATED) $(IOSRESOURCE) $(IOSRESOURCE)/services;
+ ln -s $(IOSWORK) $(IOSLINK)
+
+ # generate file with call declarations
+ $(SRCDIR)/solenv/bin/native-code.py \
+ -g core -g writer -g calc -g draw -g edit \
+ > $(IOSGENERATED)/native-code.mm
+
+ # generate resource files used to start/run LibreOffice
+ # copy rdb files
+ cp $(INSTDIR)/program/types.rdb $(IOSRESOURCE)/udkapi.rdb
+ cp $(INSTDIR)/program/types/offapi.rdb $(IOSRESOURCE)
+ cp $(INSTDIR)/program/types/oovbaapi.rdb $(IOSRESOURCE)
+ cp $(INSTDIR)/program/services/services.rdb $(IOSRESOURCE)/services
+ cp $(INSTDIR)/program/services.rdb $(IOSRESOURCE)
+
+ # copy .res files
+ # program/resource is hardcoded in tools/source/rc/resmgr.cxx. Sure,
+ # we could set STAR_RESOURCE_PATH instead. sigh...
+ mkdir -p $(IOSRESOURCE)/program/resource
+ cp $(INSTDIR)/program/resource/*en-US.res $(IOSRESOURCE)/program/resource
+
+ # soffice.cfg
+ mkdir -p $(IOSRESOURCE)/share/config
+ cp -R $(INSTDIR)/share/config/soffice.cfg $(IOSRESOURCE)/share/config
+
+ # Japanese and Chinese dict files
+ cp $(WORKDIR)/CustomTarget/i18npool/breakiterator/dict_*.data $(IOSRESOURCE)/share
+
+ # Drawing ML custom shape data files
+ mkdir -p $(IOSRESOURCE)/share/filter
+ cp $(INSTDIR)/share/filter/oox-drawingml-adj-names $(IOSRESOURCE)/share/filter
+ cp $(INSTDIR)/share/filter/oox-drawingml-cs-presets $(IOSRESOURCE)/share/filter
+ cp $(INSTDIR)/share/filter/vml-shape-types $(IOSRESOURCE)/share/filter
+
+ # "registry"
+ cp -R $(INSTDIR)/share/registry $(IOSRESOURCE)/share
+
+ # Set up rc, the "inifile". See getIniFileName_Impl().
+ file=$(IOSRESOURCE)/rc; \
+ echo '[Bootstrap]' > $$file; \
+ echo 'URE_BOOTSTRAP=file://$$APP_DATA_DIR/fundamentalrc' >> $$file; \
+ echo 'HOME=$$SYSUSERHOME' >> $$file
+
+ # Set up fundamentalrc, unorc, bootstraprc and versionrc.
+ # Do we really need all these?
+ file=$(IOSRESOURCE)/fundamentalrc; \
+ echo '[Bootstrap]' > $$file; \
+ echo 'LO_LIB_DIR=file://$$APP_DATA_DIR/lib/' >> $$file; \
+ echo 'BRAND_BASE_DIR=file://$$APP_DATA_DIR' >> $$file; \
+ echo 'CONFIGURATION_LAYERS=xcsxcu:$${BRAND_BASE_DIR}/share/registry res:$${BRAND_BASE_DIR}/registry' >> $$file; \
+ echo 'UNO_TYPES=file://$$APP_DATA_DIR/udkapi.rdb file://$$APP_DATA_DIR/offapi.rdb' >> $$file; \
+ echo 'UNO_SERVICES=file://$$APP_DATA_DIR/services.rdb file://$$APP_DATA_DIR/services/services.rdb' >> $$file; \
+ echo 'OSL_SOCKET_PATH=$$APP_DATA_DIR/cache' >> $$file
+
+ file=$(IOSRESOURCE)/unorc; \
+ echo '[Bootstrap]' > $$file;
+
+ # bootstraprc must be in $BRAND_BASE_DIR/program
+ mkdir -p $(IOSRESOURCE)/program
+ file=$(IOSRESOURCE)/program/bootstraprc; \
+ echo '[Bootstrap]' > $$file; \
+ echo 'InstallMode=<installmode>' >> $$file; \
+ echo "ProductKey=LibreOffice $(PRODUCTVERSION)" >> $$file; \
+ echo 'UserInstallation=$$SYSUSERHOME/userinstallation' >> $$file;
+
+ # Is this really needed?
+ file=$(IOSRESOURCE)/program/versionrc; \
+ echo '[Version]' > $$file; \
+ echo 'AllLanguages=en-US' >> $$file; \
+ echo 'BuildVersion=' >> $$file; \
+ echo "buildid=$(BUILDID)" >> $$file;
+
+ # Edit the Xcode configuration file generated by autogen.sh:
+ # - the list of all our (static) libs
+ # - compiler flags
+ #
all_libs=`$(SRCDIR)/bin/lo-all-static-libs`; \
- \
- sed -e "s;^\(LINK_LDFLAGS =\).*$$;\1 -Wl,-map,$(WORKDIR)/\$$(TARGET_NAME).map $$all_libs;" \
+ sed -e "s;^\(LINK_LDFLAGS =\).*$$;\1 -Wl,-lz,-liconv,-map,$(WORKDIR)/\$$(TARGET_NAME).map $$all_libs;" \
-e "s,^\(OTHER_CFLAGS =\).*$$,\1 $(gb_GLOBALDEFS)," \
-e "s,^\(OTHER_CPLUSPLUSFLAGS =\).*$$,\1 $(gb_GLOBALDEFS)," \
- < $(LO_XCCONFIG) > $(LO_XCCONFIG).new && mv $(LO_XCCONFIG).new $(LO_XCCONFIG)
-
- # When SRCDIR!=BUILDDIR, Xcode is used on the project in the
- # *source* tree (because that is where the source files are). Copy
- # the configuration file to the corresponding source dir so that
- # Xcode can find it.
- if test $(SRCDIR) != $(BUILDDIR); then \
- cp $(LO_XCCONFIG) $(SRCDIR)/ios; \
- fi
-
-# Do *not* remove $(LO_XCCONFIG) in a clean target. It is created
-# during configure, not in this custom gbuild makefile.
+ < $(BUILDDIR)/ios/lo.xcconfig > $(LO_XCCONFIG)
+
+ # Do *not* remove $(LO_XCCONFIG) in a clean target. It is created
+ # during configure, not in this custom gbuild makefile.
+
+
+$(call gb_CustomTarget_get_clean_target,ios/Lo_Xcconfig):
+ $(call gb_Output_announce,$(subst $(WORKDIR)/Clean/,,$@),$(false),ENV,2)
+ rm -rf $(IOSDIR)
+ rm -f $(IOSLINK)
+ rm -f $(WORKDIR)/CustomTarget/ios/Lo_Xcconfig.done
+
# vim: set noet sw=4 ts=4:
diff --git a/ios/CustomTarget_TiledLibreOffice_app.mk b/ios/CustomTarget_TiledLibreOffice_app.mk
index 4c14329a70c8..d542c3ede0eb 100644
--- a/ios/CustomTarget_TiledLibreOffice_app.mk
+++ b/ios/CustomTarget_TiledLibreOffice_app.mk
@@ -7,26 +7,8 @@
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
#- Env ------------------------------------------------------------------------
-
-TiledLibreOffice_resource := experimental/TiledLibreOffice/Resources
BUILDID :=$(shell cd $(SRCDIR) && git log -1 --format=%H)
-#- Macros ---------------------------------------------------------------------
-
-define TiledLibreOfficeXcodeBuild
- CC=; \
- $(call gb_Helper_print_on_error, \
- xcodebuild \
- -project experimental/TiledLibreOffice/TiledLibreOffice.xcodeproj \
- -target TiledLibreOffice \
- -sdk $(XCODEBUILD_SDK) \
- -arch $(XCODE_ARCHS) \
- -configuration $(if $(ENABLE_DEBUG),Debug,Release) \
- $(1) \
- , $$@.log \
- )
-endef
-
#- Targets --------------------------------------------------------------------
.PHONY: TiledLibreOffice_setup
@@ -36,89 +18,13 @@ $(eval $(call gb_CustomTarget_CustomTarget,ios/TiledLibreOffice))
# Build
# Depend on the custom target that sets up lo.xcconfig
-$(call gb_CustomTarget_get_target,ios/TiledLibreOffice): $(call gb_CustomTarget_get_target,ios/Lo_Xcconfig) TiledLibreOffice_setup
+$(call gb_CustomTarget_get_target,ios/TiledLibreOffice): $(call gb_CustomTarget_get_target,ios/Lo_Xcconfig)
$(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),APP,2)
- $(SRCDIR)/solenv/bin/native-code.py \
- -g core -g writer -g calc -g draw -g edit \
- > $(SRCDIR)/ios/experimental/TiledLibreOffice/TiledLibreOffice/native-code.mm
- $(call TiledLibreOfficeXcodeBuild, clean build)
-
-# Setup
-TiledLibreOffice_setup:
- $(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),ENV,2)
-
- # Resources #
- rm -rf $(TiledLibreOffice_resource) 2>/dev/null
- mkdir -p $(TiledLibreOffice_resource)
- mkdir -p $(TiledLibreOffice_resource)/services
-
- # copy rdb files
- cp $(INSTDIR)/program/types.rdb $(TiledLibreOffice_resource)/udkapi.rdb
- cp $(INSTDIR)/program/types/offapi.rdb $(TiledLibreOffice_resource)
- cp $(INSTDIR)/program/types/oovbaapi.rdb $(TiledLibreOffice_resource)
- cp $(INSTDIR)/program/services/services.rdb $(TiledLibreOffice_resource)/services
- cp $(INSTDIR)/program/services.rdb $(TiledLibreOffice_resource)
-
- # copy .res files
- # program/resource is hardcoded in tools/source/rc/resmgr.cxx. Sure,
- # we could set STAR_RESOURCE_PATH instead. sigh...
- mkdir -p $(TiledLibreOffice_resource)/program/resource
- cp $(INSTDIR)/program/resource/*en-US.res $(TiledLibreOffice_resource)/program/resource
-
- # soffice.cfg
- mkdir -p $(TiledLibreOffice_resource)/share/config
- cp -R $(INSTDIR)/share/config/soffice.cfg $(TiledLibreOffice_resource)/share/config
-
- # Japanese and Chinese dict files
- cp $(WORKDIR)/CustomTarget/i18npool/breakiterator/dict_*.data $(TiledLibreOffice_resource)/share
-
- # Drawing ML custom shape data files
- mkdir -p $(TiledLibreOffice_resource)/share/filter
- cp $(INSTDIR)/share/filter/oox-drawingml-adj-names $(TiledLibreOffice_resource)/share/filter
- cp $(INSTDIR)/share/filter/oox-drawingml-cs-presets $(TiledLibreOffice_resource)/share/filter
- cp $(INSTDIR)/share/filter/vml-shape-types $(TiledLibreOffice_resource)/share/filter
-
- # "registry"
- cp -R $(INSTDIR)/share/registry $(TiledLibreOffice_resource)/share
-
- # Set up rc, the "inifile". See getIniFileName_Impl().
- file=$(TiledLibreOffice_resource)/rc; \
- echo '[Bootstrap]' > $$file; \
- echo 'URE_BOOTSTRAP=file://$$APP_DATA_DIR/fundamentalrc' >> $$file; \
- echo 'HOME=$$SYSUSERHOME' >> $$file;
-
- # Set up fundamentalrc, unorc, bootstraprc and versionrc.
- # Do we really need all these?
- file=$(TiledLibreOffice_resource)/fundamentalrc; \
- echo '[Bootstrap]' > $$file; \
- echo 'LO_LIB_DIR=file://$$APP_DATA_DIR/lib/' >> $$file; \
- echo 'BRAND_BASE_DIR=file://$$APP_DATA_DIR' >> $$file; \
- echo 'CONFIGURATION_LAYERS=xcsxcu:$${BRAND_BASE_DIR}/share/registry res:$${BRAND_BASE_DIR}/registry' >> $$file; \
- echo 'UNO_TYPES=file://$$APP_DATA_DIR/udkapi.rdb file://$$APP_DATA_DIR/offapi.rdb' >> $$file; \
- echo 'UNO_SERVICES=file://$$APP_DATA_DIR/services.rdb file://$$APP_DATA_DIR/services/services.rdb' >> $$file; \
- echo 'OSL_SOCKET_PATH=$$APP_DATA_DIR/cache' >> $$file
-
- file=$(TiledLibreOffice_resource)/unorc; \
- echo '[Bootstrap]' > $$file;
-
- # bootstraprc must be in $BRAND_BASE_DIR/program
- mkdir -p $(TiledLibreOffice_resource)/program
- file=$(TiledLibreOffice_resource)/program/bootstraprc; \
- echo '[Bootstrap]' > $$file; \
- echo 'InstallMode=<installmode>' >> $$file; \
- echo "ProductKey=LibreOffice $(PRODUCTVERSION)" >> $$file; \
- echo 'UserInstallation=$$SYSUSERHOME/userinstallation' >> $$file;
-
- # Is this really needed?
- file=$(TiledLibreOffice_resource)/program/versionrc; \
- echo '[Version]' > $$file; \
- echo 'AllLanguages=en-US' >> $$file; \
- echo 'BuildVersion=' >> $$file; \
- echo "buildid=$(BUILDID)" >> $$file;
+ $(call IOSbuild,TiledLibreOffice, clean build)
# Clean
$(call gb_CustomTarget_get_clean_target,ios/TiledLibreOffice):
$(call gb_Output_announce,$(subst $(WORKDIR)/Clean/,,$@),$(false),APP,2)
- $(call TiledLibreOfficeXcodeBuild, clean)
+ $(call IOSbuild,TiledLibreOffice, clean)
# vim: set noet sw=4 ts=4:
diff --git a/ios/experimental/TiledLibreOffice/TiledLibreOffice.xcodeproj/project.pbxproj b/ios/experimental/TiledLibreOffice/TiledLibreOffice.xcodeproj/project.pbxproj
index 6b4a78d787b2..392f6c60d427 100644
--- a/ios/experimental/TiledLibreOffice/TiledLibreOffice.xcodeproj/project.pbxproj
+++ b/ios/experimental/TiledLibreOffice/TiledLibreOffice.xcodeproj/project.pbxproj
@@ -25,8 +25,6 @@
BEEE02D11860ABDB00FBDE67 /* program in Resources */ = {isa = PBXBuildFile; fileRef = BEEE02CE1860ABB700FBDE67 /* program */; };
BEEE02D21860ABDB00FBDE67 /* share in Resources */ = {isa = PBXBuildFile; fileRef = BEEE02CF1860ABB700FBDE67 /* share */; };
BEEE02D31860ABDB00FBDE67 /* services in Resources */ = {isa = PBXBuildFile; fileRef = BEEE02D01860ABB700FBDE67 /* services */; };
- BEEEF9641860740400FBDE67 /* libiconv.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = BEEEF9631860740400FBDE67 /* libiconv.dylib */; };
- BEEEF9661860741400FBDE67 /* libz.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = BEEEF9651860741400FBDE67 /* libz.dylib */; };
BEEEF96A1860A25400FBDE67 /* test1.odt in Resources */ = {isa = PBXBuildFile; fileRef = BEEEF9691860A25400FBDE67 /* test1.odt */; };
BEEEFE011860A89100FBDE67 /* fundamentalrc in Resources */ = {isa = PBXBuildFile; fileRef = BEEEF96D1860A82900FBDE67 /* fundamentalrc */; };
BEEEFE021860A89100FBDE67 /* offapi.rdb in Resources */ = {isa = PBXBuildFile; fileRef = BEEEF96E1860A82900FBDE67 /* offapi.rdb */; };
@@ -38,877 +36,832 @@
/* End PBXBuildFile section */
/* Begin PBXFileReference section */
- BE03BF9118F9648F00620DC7 /* udata.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = udata.cpp; path = ../../../workdir/UnpackedTarball/icu/source/common/udata.cpp; sourceTree = "<group>"; };
- BE03BF9218F9A7CC00620DC7 /* icudt58l.dat */ = {isa = PBXFileReference; lastKnownFileType = file; name = icudt58l.dat; path = ../../../workdir/UnpackedTarball/icu/source/data/in/icudt58l.dat; sourceTree = BUILT_PRODUCTS_DIR; };
- BE03BF9518FC1A1C00620DC7 /* xdictionary.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xdictionary.cxx; path = ../../../i18npool/source/breakiterator/xdictionary.cxx; sourceTree = "<group>"; };
- BE0898E81860D42B0021A679 /* brand.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = brand.cxx; path = ../../../vcl/source/app/brand.cxx; sourceTree = "<group>"; };
- BE0898E91860D42B0021A679 /* dbggui.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dbggui.cxx; path = ../../../vcl/source/app/dbggui.cxx; sourceTree = "<group>"; };
- BE0898EA1860D42B0021A679 /* dndhelp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dndhelp.cxx; path = ../../../vcl/source/app/dndhelp.cxx; sourceTree = "<group>"; };
- BE0898EB1860D42B0021A679 /* help.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = help.cxx; path = ../../../vcl/source/app/help.cxx; sourceTree = "<group>"; };
- BE0898EC1860D42B0021A679 /* i18nhelp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = i18nhelp.cxx; path = ../../../vcl/source/app/i18nhelp.cxx; sourceTree = "<group>"; };
- BE0898ED1860D42B0021A679 /* idlemgr.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = idlemgr.cxx; path = ../../../vcl/source/app/idlemgr.cxx; sourceTree = "<group>"; };
- BE0898EE1860D42B0021A679 /* salvtables.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = salvtables.cxx; path = ../../../vcl/source/app/salvtables.cxx; sourceTree = "<group>"; };
- BE0898EF1860D42B0021A679 /* session.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = session.cxx; path = ../../../vcl/source/app/session.cxx; sourceTree = "<group>"; };
- BE0898F01860D42B0021A679 /* settings.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = settings.cxx; path = ../../../vcl/source/app/settings.cxx; sourceTree = "<group>"; };
- BE0898F21860D42B0021A679 /* sound.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sound.cxx; path = ../../../vcl/source/app/sound.cxx; sourceTree = "<group>"; };
- BE0898F31860D42B0021A679 /* stdtext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = stdtext.cxx; path = ../../../vcl/source/app/stdtext.cxx; sourceTree = "<group>"; };
- BE0898F41860D42B0021A679 /* svapp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svapp.cxx; path = ../../../vcl/source/app/svapp.cxx; sourceTree = "<group>"; };
- BE0898F51860D42B0021A679 /* svdata.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdata.cxx; path = ../../../vcl/source/app/svdata.cxx; sourceTree = "<group>"; };
- BE0898F61860D42B0021A679 /* svmain.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svmain.cxx; path = ../../../vcl/source/app/svmain.cxx; sourceTree = "<group>"; };
- BE0898F71860D42B0021A679 /* svmainhook.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svmainhook.cxx; path = ../../../vcl/source/app/svmainhook.cxx; sourceTree = "<group>"; };
- BE0898F81860D42B0021A679 /* timer.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = timer.cxx; path = ../../../vcl/source/app/timer.cxx; sourceTree = "<group>"; };
- BE0898F91860D42B0021A679 /* unohelp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = unohelp.cxx; path = ../../../vcl/source/app/unohelp.cxx; sourceTree = "<group>"; };
- BE0898FA1860D42B0021A679 /* unohelp2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = unohelp2.cxx; path = ../../../vcl/source/app/unohelp2.cxx; sourceTree = "<group>"; };
- BE0898FB1860D42B0021A679 /* vclevent.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vclevent.cxx; path = ../../../vcl/source/app/vclevent.cxx; sourceTree = "<group>"; };
- BE0899141860F6450021A679 /* ctfonts.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ctfonts.cxx; path = ../../../vcl/quartz/ctfonts.cxx; sourceTree = "<group>"; };
- BE0899151860F6450021A679 /* ctlayout.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ctlayout.cxx; path = ../../../vcl/quartz/ctlayout.cxx; sourceTree = "<group>"; };
- BE0899161860F6450021A679 /* salbmp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = salbmp.cxx; path = ../../../vcl/quartz/salbmp.cxx; sourceTree = "<group>"; };
- BE0899171860F6450021A679 /* salgdi.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = salgdi.cxx; path = ../../../vcl/quartz/salgdi.cxx; sourceTree = "<group>"; };
- BE0899181860F6450021A679 /* salgdicommon.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = salgdicommon.cxx; path = ../../../vcl/quartz/salgdicommon.cxx; sourceTree = "<group>"; };
- BE08991B1860F6450021A679 /* salvd.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = salvd.cxx; path = ../../../vcl/quartz/salvd.cxx; sourceTree = "<group>"; };
- BE08991C1860F6450021A679 /* utils.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = utils.cxx; path = ../../../vcl/quartz/utils.cxx; sourceTree = "<group>"; };
- BE35B53918868EFD001B7439 /* dummies.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dummies.cxx; path = ../../../vcl/ios/dummies.cxx; sourceTree = "<group>"; };
- BE35B53A18868EFD001B7439 /* iosinst.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = iosinst.cxx; path = ../../../vcl/ios/iosinst.cxx; sourceTree = "<group>"; };
- BE35B53C18869D69001B7439 /* svpbmp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svpbmp.cxx; path = ../../../vcl/headless/svpbmp.cxx; sourceTree = "<group>"; };
- BE35B53D18869D69001B7439 /* svpdata.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svpdata.cxx; path = ../../../vcl/headless/svpdata.cxx; sourceTree = "<group>"; };
- BE35B53E18869D69001B7439 /* svpdummies.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svpdummies.cxx; path = ../../../vcl/headless/svpdummies.cxx; sourceTree = "<group>"; };
- BE35B53F18869D69001B7439 /* svpframe.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svpframe.cxx; path = ../../../vcl/headless/svpframe.cxx; sourceTree = "<group>"; };
- BE35B54018869D69001B7439 /* svpgdi.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svpgdi.cxx; path = ../../../vcl/headless/svpgdi.cxx; sourceTree = "<group>"; };
- BE35B54118869D69001B7439 /* svpinst.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svpinst.cxx; path = ../../../vcl/headless/svpinst.cxx; sourceTree = "<group>"; };
- BE35B54218869D69001B7439 /* svpvd.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svpvd.cxx; path = ../../../vcl/headless/svpvd.cxx; sourceTree = "<group>"; };
- BE35B5441886C50A001B7439 /* alpha.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = alpha.cxx; path = ../../../vcl/source/gdi/alpha.cxx; sourceTree = "<group>"; };
- BE35B5451886C50A001B7439 /* animate.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = animate.cxx; path = ../../../vcl/source/gdi/animate.cxx; sourceTree = "<group>"; };
- BE35B5461886C50A001B7439 /* base14.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = base14.cxx; path = ../../../vcl/source/gdi/base14.cxx; sourceTree = "<group>"; };
- BE35B5471886C50A001B7439 /* bitmap.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bitmap.cxx; path = ../../../vcl/source/gdi/bitmap.cxx; sourceTree = "<group>"; };
- BE35B5481886C50A001B7439 /* bitmap3.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bitmap3.cxx; path = ../../../vcl/source/gdi/bitmap3.cxx; sourceTree = "<group>"; };
- BE35B5491886C50A001B7439 /* bitmap4.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bitmap4.cxx; path = ../../../vcl/source/gdi/bitmap4.cxx; sourceTree = "<group>"; };
- BE35B54A1886C50A001B7439 /* bitmapex.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bitmapex.cxx; path = ../../../vcl/source/gdi/bitmapex.cxx; sourceTree = "<group>"; };
- BE35B54B1886C50A001B7439 /* bmpacc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bmpacc.cxx; path = ../../../vcl/source/gdi/bmpacc.cxx; sourceTree = "<group>"; };
- BE35B54C1886C50A001B7439 /* bmpacc2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bmpacc2.cxx; path = ../../../vcl/source/gdi/bmpacc2.cxx; sourceTree = "<group>"; };
- BE35B54D1886C50A001B7439 /* bmpacc3.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bmpacc3.cxx; path = ../../../vcl/source/gdi/bmpacc3.cxx; sourceTree = "<group>"; };
- BE35B54E1886C50A001B7439 /* bmpfast.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bmpfast.cxx; path = ../../../vcl/source/gdi/bmpfast.cxx; sourceTree = "<group>"; };
- BE35B54F1886C50A001B7439 /* configsettings.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = configsettings.cxx; path = ../../../vcl/source/gdi/configsettings.cxx; sourceTree = "<group>"; };
- BE35B5501886C50A001B7439 /* cvtgrf.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cvtgrf.cxx; path = ../../../vcl/source/gdi/cvtgrf.cxx; sourceTree = "<group>"; };
- BE35B5511886C50A001B7439 /* cvtsvm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cvtsvm.cxx; path = ../../../vcl/source/gdi/cvtsvm.cxx; sourceTree = "<group>"; };
- BE35B5521886C50A001B7439 /* dibtools.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dibtools.cxx; path = ../../../vcl/source/gdi/dibtools.cxx; sourceTree = "<group>"; };
- BE35B5531886C50A001B7439 /* embeddedfontshelper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = embeddedfontshelper.cxx; path = ../../../vcl/source/gdi/embeddedfontshelper.cxx; sourceTree = "<group>"; };
- BE35B5541886C50A001B7439 /* extoutdevdata.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = extoutdevdata.cxx; path = ../../../vcl/source/gdi/extoutdevdata.cxx; sourceTree = "<group>"; };
- BE35B5551886C50A001B7439 /* font.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = font.cxx; path = ../../../vcl/source/gdi/font.cxx; sourceTree = "<group>"; };
- BE35B5561886C50A001B7439 /* gdimetafiletools.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gdimetafiletools.cxx; path = ../../../vcl/source/gdi/gdimetafiletools.cxx; sourceTree = "<group>"; };
- BE35B5571886C50A001B7439 /* gdimtf.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gdimtf.cxx; path = ../../../vcl/source/gdi/gdimtf.cxx; sourceTree = "<group>"; };
- BE35B5581886C50A001B7439 /* gfxlink.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gfxlink.cxx; path = ../../../vcl/source/gdi/gfxlink.cxx; sourceTree = "<group>"; };
- BE35B5591886C50A001B7439 /* gradient.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gradient.cxx; path = ../../../vcl/source/gdi/gradient.cxx; sourceTree = "<group>"; };
- BE35B55A1886C50A001B7439 /* graph.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = graph.cxx; path = ../../../vcl/source/gdi/graph.cxx; sourceTree = "<group>"; };
- BE35B55B1886C50A001B7439 /* graphictools.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = graphictools.cxx; path = ../../../vcl/source/gdi/graphictools.cxx; sourceTree = "<group>"; };
- BE35B55C1886C50A001B7439 /* hatch.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = hatch.cxx; path = ../../../vcl/source/gdi/hatch.cxx; sourceTree = "<group>"; };
- BE35B55D1886C50A001B7439 /* image.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = image.cxx; path = ../../../vcl/source/gdi/image.cxx; sourceTree = "<group>"; };
- BE35B55E1886C50A001B7439 /* imagerepository.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = imagerepository.cxx; path = ../../../vcl/source/gdi/imagerepository.cxx; sourceTree = "<group>"; };
- BE35B55F1886C50A001B7439 /* impanmvw.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = impanmvw.cxx; path = ../../../vcl/source/gdi/impanmvw.cxx; sourceTree = "<group>"; };
- BE35B5601886C50A001B7439 /* impbmp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = impbmp.cxx; path = ../../../vcl/source/gdi/impbmp.cxx; sourceTree = "<group>"; };
- BE35B5611886C50A001B7439 /* impfont.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = impfont.cxx; path = ../../../vcl/source/gdi/impfont.cxx; sourceTree = "<group>"; };
- BE35B5621886C50A001B7439 /* impgraph.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = impgraph.cxx; path = ../../../vcl/source/gdi/impgraph.cxx; sourceTree = "<group>"; };
- BE35B5631886C50A001B7439 /* impimage.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = impimage.cxx; path = ../../../vcl/source/gdi/impimage.cxx; sourceTree = "<group>"; };
- BE35B5641886C50A001B7439 /* impimagetree.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = impimagetree.cxx; path = ../../../vcl/source/gdi/impimagetree.cxx; sourceTree = "<group>"; };
- BE35B5651886C50A001B7439 /* impvect.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = impvect.cxx; path = ../../../vcl/source/gdi/impvect.cxx; sourceTree = "<group>"; };
- BE35B5661886C50A001B7439 /* jobset.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = jobset.cxx; path = ../../../vcl/source/gdi/jobset.cxx; sourceTree = "<group>"; };
- BE35B5671886C50A001B7439 /* lineinfo.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = lineinfo.cxx; path = ../../../vcl/source/gdi/lineinfo.cxx; sourceTree = "<group>"; };
- BE35B5681886C50A001B7439 /* mapmod.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = mapmod.cxx; path = ../../../vcl/source/gdi/mapmod.cxx; sourceTree = "<group>"; };
- BE35B5691886C50A001B7439 /* metaact.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = metaact.cxx; path = ../../../vcl/source/gdi/metaact.cxx; sourceTree = "<group>"; };
- BE35B56A1886C50A001B7439 /* metric.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = metric.cxx; path = ../../../vcl/source/gdi/metric.cxx; sourceTree = "<group>"; };
- BE35B56B1886C50A001B7439 /* octree.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = octree.cxx; path = ../../../vcl/source/gdi/octree.cxx; sourceTree = "<group>"; };
- BE35B56C1886C50A001B7439 /* oldprintadaptor.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = oldprintadaptor.cxx; path = ../../../vcl/source/gdi/oldprintadaptor.cxx; sourceTree = "<group>"; };
- BE35B5751886C50A001B7439 /* pdfextoutdevdata.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pdfextoutdevdata.cxx; path = ../../../vcl/source/gdi/pdfextoutdevdata.cxx; sourceTree = "<group>"; };
- BE35B5761886C50A001B7439 /* pdffontcache.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pdffontcache.cxx; path = ../../../vcl/source/gdi/pdffontcache.cxx; sourceTree = "<group>"; };
- BE35B5771886C50A001B7439 /* pdfwriter_impl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pdfwriter_impl.cxx; path = ../../../vcl/source/gdi/pdfwriter_impl.cxx; sourceTree = "<group>"; };
- BE35B5781886C50A001B7439 /* pdfwriter_impl2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pdfwriter_impl2.cxx; path = ../../../vcl/source/gdi/pdfwriter_impl2.cxx; sourceTree = "<group>"; };
- BE35B5791886C50A001B7439 /* pdfwriter.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pdfwriter.cxx; path = ../../../vcl/source/gdi/pdfwriter.cxx; sourceTree = "<group>"; };
- BE35B57A1886C50A001B7439 /* pngread.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pngread.cxx; path = ../../../vcl/source/gdi/pngread.cxx; sourceTree = "<group>"; };
- BE35B57B1886C50A001B7439 /* pngwrite.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pngwrite.cxx; path = ../../../vcl/source/gdi/pngwrite.cxx; sourceTree = "<group>"; };
- BE35B57C1886C50A001B7439 /* print.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = print.cxx; path = ../../../vcl/source/gdi/print.cxx; sourceTree = "<group>"; };
- BE35B57D1886C50A001B7439 /* print2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = print2.cxx; path = ../../../vcl/source/gdi/print2.cxx; sourceTree = "<group>"; };
- BE35B57E1886C50A001B7439 /* print3.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = print3.cxx; path = ../../../vcl/source/gdi/print3.cxx; sourceTree = "<group>"; };
- BE35B57F1886C50A001B7439 /* regband.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = regband.cxx; path = ../../../vcl/source/gdi/regband.cxx; sourceTree = "<group>"; };
- BE35B5801886C50A001B7439 /* region.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = region.cxx; path = ../../../vcl/source/gdi/region.cxx; sourceTree = "<group>"; };
- BE35B5811886C50A001B7439 /* regionband.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = regionband.cxx; path = ../../../vcl/source/gdi/regionband.cxx; sourceTree = "<group>"; };
- BE35B5821886C50A001B7439 /* salgdilayout.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = salgdilayout.cxx; path = ../../../vcl/source/gdi/salgdilayout.cxx; sourceTree = "<group>"; };
- BE35B5831886C50A001B7439 /* sallayout.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sallayout.cxx; path = ../../../vcl/source/gdi/sallayout.cxx; sourceTree = "<group>"; };
- BE35B5841886C50A001B7439 /* salmisc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = salmisc.cxx; path = ../../../vcl/source/gdi/salmisc.cxx; sourceTree = "<group>"; };
- BE35B5851886C50A001B7439 /* salnativewidgets-none.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "salnativewidgets-none.cxx"; path = "../../../vcl/source/gdi/salnativewidgets-none.cxx"; sourceTree = "<group>"; };
- BE35B5861886C50A001B7439 /* svgdata.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svgdata.cxx; path = ../../../vcl/source/gdi/svgdata.cxx; sourceTree = "<group>"; };
- BE35B5871886C50A001B7439 /* textlayout.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textlayout.cxx; path = ../../../vcl/source/gdi/textlayout.cxx; sourceTree = "<group>"; };
- BE35B5881886C50A001B7439 /* virdev.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = virdev.cxx; path = ../../../vcl/source/gdi/virdev.cxx; sourceTree = "<group>"; };
- BE35B5891886C50A001B7439 /* wall.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = wall.cxx; path = ../../../vcl/source/gdi/wall.cxx; sourceTree = "<group>"; };
- BE35B58B188FFA88001B7439 /* access_control.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = access_control.cxx; path = ../../../cppuhelper/source/access_control.cxx; sourceTree = "<group>"; };
- BE35B58C188FFA88001B7439 /* bootstrap.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bootstrap.cxx; path = ../../../cppuhelper/source/bootstrap.cxx; sourceTree = "<group>"; };
- BE35B58D188FFA88001B7439 /* compat.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = compat.cxx; path = ../../../cppuhelper/source/compat.cxx; sourceTree = "<group>"; };
- BE35B58E188FFA88001B7439 /* component_context.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = component_context.cxx; path = ../../../cppuhelper/source/component_context.cxx; sourceTree = "<group>"; };
- BE35B58F188FFA88001B7439 /* component.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = component.cxx; path = ../../../cppuhelper/source/component.cxx; sourceTree = "<group>"; };
- BE35B590188FFA88001B7439 /* defaultbootstrap.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = defaultbootstrap.cxx; path = ../../../cppuhelper/source/defaultbootstrap.cxx; sourceTree = "<group>"; };
- BE35B591188FFA88001B7439 /* exc_thrower.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = exc_thrower.cxx; path = ../../../cppuhelper/source/exc_thrower.cxx; sourceTree = "<group>"; };
- BE35B592188FFA88001B7439 /* factory.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = factory.cxx; path = ../../../cppuhelper/source/factory.cxx; sourceTree = "<group>"; };
- BE35B593188FFA88001B7439 /* findsofficepath.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = findsofficepath.c; path = ../../../cppuhelper/source/findsofficepath.c; sourceTree = "<group>"; };
- BE35B594188FFA88001B7439 /* implbase_ex.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = implbase_ex.cxx; path = ../../../cppuhelper/source/implbase_ex.cxx; sourceTree = "<group>"; };
- BE35B595188FFA88001B7439 /* implbase.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = implbase.cxx; path = ../../../cppuhelper/source/implbase.cxx; sourceTree = "<group>"; };
- BE35B596188FFA88001B7439 /* implementationentry.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = implementationentry.cxx; path = ../../../cppuhelper/source/implementationentry.cxx; sourceTree = "<group>"; };
- BE35B597188FFA88001B7439 /* interfacecontainer.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = interfacecontainer.cxx; path = ../../../cppuhelper/source/interfacecontainer.cxx; sourceTree = "<group>"; };
- BE35B598188FFA88001B7439 /* macro_expander.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = macro_expander.cxx; path = ../../../cppuhelper/source/macro_expander.cxx; sourceTree = "<group>"; };
- BE35B599188FFA88001B7439 /* paths.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = paths.cxx; path = ../../../cppuhelper/source/paths.cxx; sourceTree = "<group>"; };
- BE35B59A188FFA88001B7439 /* propertysetmixin.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = propertysetmixin.cxx; path = ../../../cppuhelper/source/propertysetmixin.cxx; sourceTree = "<group>"; };
- BE35B59B188FFA88001B7439 /* propshlp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = propshlp.cxx; path = ../../../cppuhelper/source/propshlp.cxx; sourceTree = "<group>"; };
- BE35B59C188FFA88001B7439 /* servicemanager.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = servicemanager.cxx; path = ../../../cppuhelper/source/servicemanager.cxx; sourceTree = "<group>"; };
- BE35B59D188FFA88001B7439 /* shlib.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = shlib.cxx; path = ../../../cppuhelper/source/shlib.cxx; sourceTree = "<group>"; };
- BE35B59E188FFA88001B7439 /* supportsservice.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = supportsservice.cxx; path = ../../../cppuhelper/source/supportsservice.cxx; sourceTree = "<group>"; };
- BE35B59F188FFA88001B7439 /* tdmgr.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tdmgr.cxx; path = ../../../cppuhelper/source/tdmgr.cxx; sourceTree = "<group>"; };
- BE35B5A0188FFA88001B7439 /* typemanager.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = typemanager.cxx; path = ../../../cppuhelper/source/typemanager.cxx; sourceTree = "<group>"; };
- BE35B5A1188FFA88001B7439 /* typeprovider.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = typeprovider.cxx; path = ../../../cppuhelper/source/typeprovider.cxx; sourceTree = "<group>"; };
- BE35B5A2188FFA88001B7439 /* unourl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = unourl.cxx; path = ../../../cppuhelper/source/unourl.cxx; sourceTree = "<group>"; };
- BE35B5A3188FFA88001B7439 /* weak.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = weak.cxx; path = ../../../cppuhelper/source/weak.cxx; sourceTree = "<group>"; };
- BE35B5A71890520E001B7439 /* objface.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = objface.cxx; path = ../../../sfx2/source/control/objface.cxx; sourceTree = "<group>"; };
- BE55B06B18D87CC600950228 /* DocumentTableViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DocumentTableViewController.h; sourceTree = "<group>"; };
- BE55B06C18D87CC600950228 /* DocumentTableViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DocumentTableViewController.m; sourceTree = "<group>"; };
- BE55B06F18D96FB000950228 /* displayinfo.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = displayinfo.cxx; path = ../../../svx/source/sdr/contact/displayinfo.cxx; sourceTree = "<group>"; };
- BE55B07018D96FB000950228 /* objectcontact.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = objectcontact.cxx; path = ../../../svx/source/sdr/contact/objectcontact.cxx; sourceTree = "<group>"; };
- BE55B07118D96FB000950228 /* objectcontactofobjlistpainter.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = objectcontactofobjlistpainter.cxx; path = ../../../svx/source/sdr/contact/objectcontactofobjlistpainter.cxx; sourceTree = "<group>"; };
- BE55B07218D96FB000950228 /* objectcontactofpageview.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = objectcontactofpageview.cxx; path = ../../../svx/source/sdr/contact/objectcontactofpageview.cxx; sourceTree = "<group>"; };
- BE55B07318D96FB000950228 /* sdrmediawindow.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sdrmediawindow.cxx; path = ../../../svx/source/sdr/contact/sdrmediawindow.cxx; sourceTree = "<group>"; };
- BE55B07418D96FB000950228 /* viewcontact.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewcontact.cxx; path = ../../../svx/source/sdr/contact/viewcontact.cxx; sourceTree = "<group>"; };
- BE55B07518D96FB000950228 /* viewcontactofe3d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewcontactofe3d.cxx; path = ../../../svx/source/sdr/contact/viewcontactofe3d.cxx; sourceTree = "<group>"; };
- BE55B07618D96FB000950228 /* viewcontactofe3dcube.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewcontactofe3dcube.cxx; path = ../../../svx/source/sdr/contact/viewcontactofe3dcube.cxx; sourceTree = "<group>"; };
- BE55B07718D96FB000950228 /* viewcontactofe3dextrude.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewcontactofe3dextrude.cxx; path = ../../../svx/source/sdr/contact/viewcontactofe3dextrude.cxx; sourceTree = "<group>"; };
- BE55B07818D96FB000950228 /* viewcontactofe3dlathe.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewcontactofe3dlathe.cxx; path = ../../../svx/source/sdr/contact/viewcontactofe3dlathe.cxx; sourceTree = "<group>"; };
- BE55B07918D96FB000950228 /* viewcontactofe3dpolygon.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewcontactofe3dpolygon.cxx; path = ../../../svx/source/sdr/contact/viewcontactofe3dpolygon.cxx; sourceTree = "<group>"; };
- BE55B07A18D96FB000950228 /* viewcontactofe3dscene.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewcontactofe3dscene.cxx; path = ../../../svx/source/sdr/contact/viewcontactofe3dscene.cxx; sourceTree = "<group>"; };
- BE55B07B18D96FB000950228 /* viewcontactofe3dsphere.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewcontactofe3dsphere.cxx; path = ../../../svx/source/sdr/contact/viewcontactofe3dsphere.cxx; sourceTree = "<group>"; };
- BE55B07C18D96FB000950228 /* viewcontactofgraphic.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewcontactofgraphic.cxx; path = ../../../svx/source/sdr/contact/viewcontactofgraphic.cxx; sourceTree = "<group>"; };
- BE55B07D18D96FB000950228 /* viewcontactofgroup.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewcontactofgroup.cxx; path = ../../../svx/source/sdr/contact/viewcontactofgroup.cxx; sourceTree = "<group>"; };
- BE55B07E18D96FB000950228 /* viewcontactofmasterpagedescriptor.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewcontactofmasterpagedescriptor.cxx; path = ../../../svx/source/sdr/contact/viewcontactofmasterpagedescriptor.cxx; sourceTree = "<group>"; };
- BE55B07F18D96FB000950228 /* viewcontactofopengl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewcontactofopengl.cxx; path = ../../../svx/source/sdr/contact/viewcontactofopengl.cxx; sourceTree = "<group>"; };
- BE55B08018D96FB000950228 /* viewcontactofpageobj.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewcontactofpageobj.cxx; path = ../../../svx/source/sdr/contact/viewcontactofpageobj.cxx; sourceTree = "<group>"; };
- BE55B08118D96FB000950228 /* viewcontactofsdrcaptionobj.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewcontactofsdrcaptionobj.cxx; path = ../../../svx/source/sdr/contact/viewcontactofsdrcaptionobj.cxx; sourceTree = "<group>"; };
- BE55B08218D96FB000950228 /* viewcontactofsdrcircobj.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewcontactofsdrcircobj.cxx; path = ../../../svx/source/sdr/contact/viewcontactofsdrcircobj.cxx; sourceTree = "<group>"; };
- BE55B08318D96FB000950228 /* viewcontactofsdredgeobj.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewcontactofsdredgeobj.cxx; path = ../../../svx/source/sdr/contact/viewcontactofsdredgeobj.cxx; sourceTree = "<group>"; };
- BE55B08418D96FB000950228 /* viewcontactofsdrmeasureobj.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewcontactofsdrmeasureobj.cxx; path = ../../../svx/source/sdr/contact/viewcontactofsdrmeasureobj.cxx; sourceTree = "<group>"; };
- BE55B08518D96FB000950228 /* viewcontactofsdrmediaobj.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewcontactofsdrmediaobj.cxx; path = ../../../svx/source/sdr/contact/viewcontactofsdrmediaobj.cxx; sourceTree = "<group>"; };
- BE55B08618D96FB000950228 /* viewcontactofsdrobj.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewcontactofsdrobj.cxx; path = ../../../svx/source/sdr/contact/viewcontactofsdrobj.cxx; sourceTree = "<group>"; };
- BE55B08718D96FB000950228 /* viewcontactofsdrobjcustomshape.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewcontactofsdrobjcustomshape.cxx; path = ../../../svx/source/sdr/contact/viewcontactofsdrobjcustomshape.cxx; sourceTree = "<group>"; };
- BE55B08818D96FB000950228 /* viewcontactofsdrole2obj.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewcontactofsdrole2obj.cxx; path = ../../../svx/source/sdr/contact/viewcontactofsdrole2obj.cxx; sourceTree = "<group>"; };
- BE55B08918D96FB000950228 /* viewcontactofsdrpage.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewcontactofsdrpage.cxx; path = ../../../svx/source/sdr/contact/viewcontactofsdrpage.cxx; sourceTree = "<group>"; };
- BE55B08A18D96FB000950228 /* viewcontactofsdrpathobj.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewcontactofsdrpathobj.cxx; path = ../../../svx/source/sdr/contact/viewcontactofsdrpathobj.cxx; sourceTree = "<group>"; };
- BE55B08B18D96FB000950228 /* viewcontactofsdrrectobj.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewcontactofsdrrectobj.cxx; path = ../../../svx/source/sdr/contact/viewcontactofsdrrectobj.cxx; sourceTree = "<group>"; };
- BE55B08C18D96FB000950228 /* viewcontactoftextobj.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewcontactoftextobj.cxx; path = ../../../svx/source/sdr/contact/viewcontactoftextobj.cxx; sourceTree = "<group>"; };
- BE55B08D18D96FB000950228 /* viewcontactofunocontrol.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewcontactofunocontrol.cxx; path = ../../../svx/source/sdr/contact/viewcontactofunocontrol.cxx; sourceTree = "<group>"; };
- BE55B08E18D96FB000950228 /* viewcontactofvirtobj.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewcontactofvirtobj.cxx; path = ../../../svx/source/sdr/contact/viewcontactofvirtobj.cxx; sourceTree = "<group>"; };
- BE55B08F18D96FB000950228 /* viewobjectcontact.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewobjectcontact.cxx; path = ../../../svx/source/sdr/contact/viewobjectcontact.cxx; sourceTree = "<group>"; };
- BE55B09018D96FB000950228 /* viewobjectcontactofe3d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewobjectcontactofe3d.cxx; path = ../../../svx/source/sdr/contact/viewobjectcontactofe3d.cxx; sourceTree = "<group>"; };
- BE55B09118D96FB000950228 /* viewobjectcontactofe3dscene.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewobjectcontactofe3dscene.cxx; path = ../../../svx/source/sdr/contact/viewobjectcontactofe3dscene.cxx; sourceTree = "<group>"; };
- BE55B09218D96FB000950228 /* viewobjectcontactofgraphic.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewobjectcontactofgraphic.cxx; path = ../../../svx/source/sdr/contact/viewobjectcontactofgraphic.cxx; sourceTree = "<group>"; };
- BE55B09318D96FB000950228 /* viewobjectcontactofgroup.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewobjectcontactofgroup.cxx; path = ../../../svx/source/sdr/contact/viewobjectcontactofgroup.cxx; sourceTree = "<group>"; };
- BE55B09418D96FB000950228 /* viewobjectcontactofmasterpagedescriptor.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewobjectcontactofmasterpagedescriptor.cxx; path = ../../../svx/source/sdr/contact/viewobjectcontactofmasterpagedescriptor.cxx; sourceTree = "<group>"; };
- BE55B09518D96FB000950228 /* viewobjectcontactofpageobj.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewobjectcontactofpageobj.cxx; path = ../../../svx/source/sdr/contact/viewobjectcontactofpageobj.cxx; sourceTree = "<group>"; };
- BE55B09618D96FB000950228 /* viewobjectcontactofsdrmediaobj.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewobjectcontactofsdrmediaobj.cxx; path = ../../../svx/source/sdr/contact/viewobjectcontactofsdrmediaobj.cxx; sourceTree = "<group>"; };
- BE55B09718D96FB000950228 /* viewobjectcontactofsdrobj.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewobjectcontactofsdrobj.cxx; path = ../../../svx/source/sdr/contact/viewobjectcontactofsdrobj.cxx; sourceTree = "<group>"; };
- BE55B09818D96FB000950228 /* viewobjectcontactofsdrole2obj.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewobjectcontactofsdrole2obj.cxx; path = ../../../svx/source/sdr/contact/viewobjectcontactofsdrole2obj.cxx; sourceTree = "<group>"; };
- BE55B09918D96FB000950228 /* viewobjectcontactofsdrpage.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewobjectcontactofsdrpage.cxx; path = ../../../svx/source/sdr/contact/viewobjectcontactofsdrpage.cxx; sourceTree = "<group>"; };
- BE55B09A18D96FB000950228 /* viewobjectcontactofunocontrol.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewobjectcontactofunocontrol.cxx; path = ../../../svx/source/sdr/contact/viewobjectcontactofunocontrol.cxx; sourceTree = "<group>"; };
- BE55B09B18D96FB000950228 /* viewobjectcontactredirector.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewobjectcontactredirector.cxx; path = ../../../svx/source/sdr/contact/viewobjectcontactredirector.cxx; sourceTree = "<group>"; };
- BE55B09D18D97E2700950228 /* anchoreddrawobject.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = anchoreddrawobject.cxx; path = ../../../sw/source/core/layout/anchoreddrawobject.cxx; sourceTree = "<group>"; };
- BE55B09E18D97E2700950228 /* anchoredobject.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = anchoredobject.cxx; path = ../../../sw/source/core/layout/anchoredobject.cxx; sourceTree = "<group>"; };
- BE55B09F18D97E2700950228 /* atrfrm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = atrfrm.cxx; path = ../../../sw/source/core/layout/atrfrm.cxx; sourceTree = "<group>"; };
- BE55B0A018D97E2700950228 /* calcmove.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = calcmove.cxx; path = ../../../sw/source/core/layout/calcmove.cxx; sourceTree = "<group>"; };
- BE55B0A118D97E2700950228 /* colfrm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = colfrm.cxx; path = ../../../sw/source/core/layout/colfrm.cxx; sourceTree = "<group>"; };
- BE55B0A218D97E2700950228 /* dbg_lay.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dbg_lay.cxx; path = ../../../sw/source/core/layout/dbg_lay.cxx; sourceTree = "<group>"; };
- BE55B0A318D97E2700950228 /* dumpfilter.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dumpfilter.cxx; path = ../../../sw/source/core/layout/dumpfilter.cxx; sourceTree = "<group>"; };
- BE55B0A418D97E2700950228 /* findfrm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = findfrm.cxx; path = ../../../sw/source/core/layout/findfrm.cxx; sourceTree = "<group>"; };
- BE55B0A518D97E2700950228 /* flowfrm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = flowfrm.cxx; path = ../../../sw/source/core/layout/flowfrm.cxx; sourceTree = "<group>"; };
- BE55B0A618D97E2700950228 /* fly.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fly.cxx; path = ../../../sw/source/core/layout/fly.cxx; sourceTree = "<group>"; };
- BE55B0A718D97E2700950228 /* flycnt.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = flycnt.cxx; path = ../../../sw/source/core/layout/flycnt.cxx; sourceTree = "<group>"; };
- BE55B0A818D97E2700950228 /* flyincnt.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = flyincnt.cxx; path = ../../../sw/source/core/layout/flyincnt.cxx; sourceTree = "<group>"; };
- BE55B0A918D97E2700950228 /* flylay.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = flylay.cxx; path = ../../../sw/source/core/layout/flylay.cxx; sourceTree = "<group>"; };
- BE55B0AA18D97E2700950228 /* flypos.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = flypos.cxx; path = ../../../sw/source/core/layout/flypos.cxx; sourceTree = "<group>"; };
- BE55B0AB18D97E2700950228 /* frmtool.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = frmtool.cxx; path = ../../../sw/source/core/layout/frmtool.cxx; sourceTree = "<group>"; };
- BE55B0AC18D97E2700950228 /* ftnfrm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ftnfrm.cxx; path = ../../../sw/source/core/layout/ftnfrm.cxx; sourceTree = "<group>"; };
- BE55B0AD18D97E2700950228 /* hffrm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = hffrm.cxx; path = ../../../sw/source/core/layout/hffrm.cxx; sourceTree = "<group>"; };
- BE55B0AE18D97E2700950228 /* layact.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = layact.cxx; path = ../../../sw/source/core/layout/layact.cxx; sourceTree = "<group>"; };
- BE55B0AF18D97E2700950228 /* laycache.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = laycache.cxx; path = ../../../sw/source/core/layout/laycache.cxx; sourceTree = "<group>"; };
- BE55B0B018D97E2700950228 /* layouter.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = layouter.cxx; path = ../../../sw/source/core/layout/layouter.cxx; sourceTree = "<group>"; };
- BE55B0B118D97E2700950228 /* movedfwdfrmsbyobjpos.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = movedfwdfrmsbyobjpos.cxx; path = ../../../sw/source/core/layout/movedfwdfrmsbyobjpos.cxx; sourceTree = "<group>"; };
- BE55B0B218D97E2700950228 /* newfrm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = newfrm.cxx; path = ../../../sw/source/core/layout/newfrm.cxx; sourceTree = "<group>"; };
- BE55B0B318D97E2700950228 /* objectformatter.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = objectformatter.cxx; path = ../../../sw/source/core/layout/objectformatter.cxx; sourceTree = "<group>"; };
- BE55B0B418D97E2700950228 /* objectformatterlayfrm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = objectformatterlayfrm.cxx; path = ../../../sw/source/core/layout/objectformatterlayfrm.cxx; sourceTree = "<group>"; };
- BE55B0B518D97E2700950228 /* objectformattertxtfrm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = objectformattertxtfrm.cxx; path = ../../../sw/source/core/layout/objectformattertxtfrm.cxx; sourceTree = "<group>"; };
- BE55B0B618D97E2700950228 /* objstmpconsiderwrapinfl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = objstmpconsiderwrapinfl.cxx; path = ../../../sw/source/core/layout/objstmpconsiderwrapinfl.cxx; sourceTree = "<group>"; };
- BE55B0B718D97E2700950228 /* pagechg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pagechg.cxx; path = ../../../sw/source/core/layout/pagechg.cxx; sourceTree = "<group>"; };
- BE55B0B818D97E2700950228 /* pagedesc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pagedesc.cxx; path = ../../../sw/source/core/layout/pagedesc.cxx; sourceTree = "<group>"; };
- BE55B0B918D97E2700950228 /* paintfrm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = paintfrm.cxx; path = ../../../sw/source/core/layout/paintfrm.cxx; sourceTree = "<group>"; };
- BE55B0BA18D97E2700950228 /* sectfrm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sectfrm.cxx; path = ../../../sw/source/core/layout/sectfrm.cxx; sourceTree = "<group>"; };
- BE55B0BB18D97E2700950228 /* softpagebreak.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = softpagebreak.cxx; path = ../../../sw/source/core/layout/softpagebreak.cxx; sourceTree = "<group>"; };
- BE55B0BC18D97E2700950228 /* sortedobjs.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sortedobjs.cxx; path = ../../../sw/source/core/layout/sortedobjs.cxx; sourceTree = "<group>"; };
- BE55B0BD18D97E2700950228 /* ssfrm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ssfrm.cxx; path = ../../../sw/source/core/layout/ssfrm.cxx; sourceTree = "<group>"; };
- BE55B0BE18D97E2700950228 /* swselectionlist.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = swselectionlist.cxx; path = ../../../sw/source/core/layout/swselectionlist.cxx; sourceTree = "<group>"; };
- BE55B0BF18D97E2700950228 /* tabfrm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tabfrm.cxx; path = ../../../sw/source/core/layout/tabfrm.cxx; sourceTree = "<group>"; };
- BE55B0C018D97E2700950228 /* trvlfrm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = trvlfrm.cxx; path = ../../../sw/source/core/layout/trvlfrm.cxx; sourceTree = "<group>"; };
- BE55B0C118D97E2700950228 /* unusedf.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = unusedf.cxx; path = ../../../sw/source/core/layout/unusedf.cxx; sourceTree = "<group>"; };
- BE55B0C218D97E2700950228 /* virtoutp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = virtoutp.cxx; path = ../../../sw/source/core/layout/virtoutp.cxx; sourceTree = "<group>"; };
- BE55B0C318D97E2700950228 /* wsfrm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = wsfrm.cxx; path = ../../../sw/source/core/layout/wsfrm.cxx; sourceTree = "<group>"; };
- BE55B0C518D9AB0A00950228 /* bindings.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bindings.cxx; path = ../../../sfx2/source/control/bindings.cxx; sourceTree = "<group>"; };
- BE55B0C618D9AB0A00950228 /* ctrlitem.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ctrlitem.cxx; path = ../../../sfx2/source/control/ctrlitem.cxx; sourceTree = "<group>"; };
- BE55B0C718D9AB0A00950228 /* dispatch.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dispatch.cxx; path = ../../../sfx2/source/control/dispatch.cxx; sourceTree = "<group>"; };
- BE55B0C818D9AB0A00950228 /* minfitem.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = minfitem.cxx; path = ../../../sfx2/source/control/minfitem.cxx; sourceTree = "<group>"; };
- BE55B0C918D9AB0A00950228 /* msg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = msg.cxx; path = ../../../sfx2/source/control/msg.cxx; sourceTree = "<group>"; };
- BE55B0CA18D9AB0A00950228 /* msgpool.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = msgpool.cxx; path = ../../../sfx2/source/control/msgpool.cxx; sourceTree = "<group>"; };
- BE55B0CB18D9AB0A00950228 /* querystatus.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = querystatus.cxx; path = ../../../sfx2/source/control/querystatus.cxx; sourceTree = "<group>"; };
- BE55B0CC18D9AB0A00950228 /* recentdocsview.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = recentdocsview.cxx; path = ../../../sfx2/source/control/recentdocsview.cxx; sourceTree = "<group>"; };
- BE55B0CD18D9AB0A00950228 /* recentdocsviewitem.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = recentdocsviewitem.cxx; path = ../../../sfx2/source/control/recentdocsviewitem.cxx; sourceTree = "<group>"; };
- BE55B0CE18D9AB0A00950228 /* request.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = request.cxx; path = ../../../sfx2/source/control/request.cxx; sourceTree = "<group>"; };
- BE55B0CF18D9AB0A00950228 /* sfxstatuslistener.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sfxstatuslistener.cxx; path = ../../../sfx2/source/control/sfxstatuslistener.cxx; sourceTree = "<group>"; };
- BE55B0D018D9AB0A00950228 /* shell.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = shell.cxx; path = ../../../sfx2/source/control/shell.cxx; sourceTree = "<group>"; };
- BE55B0D118D9AB0A00950228 /* sorgitm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sorgitm.cxx; path = ../../../sfx2/source/control/sorgitm.cxx; sourceTree = "<group>"; };
- BE55B0D218D9AB0A00950228 /* statcach.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = statcach.cxx; path = ../../../sfx2/source/control/statcach.cxx; sourceTree = "<group>"; };
- BE55B0D318D9AB0A00950228 /* templateabstractview.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = templateabstractview.cxx; path = ../../../sfx2/source/control/templateabstractview.cxx; sourceTree = "<group>"; };
- BE55B0D418D9AB0A00950228 /* templatecontaineritem.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = templatecontaineritem.cxx; path = ../../../sfx2/source/control/templatecontaineritem.cxx; sourceTree = "<group>"; };
- BE55B0D518D9AB0A00950228 /* templatelocalview.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = templatelocalview.cxx; path = ../../../sfx2/source/control/templatelocalview.cxx; sourceTree = "<group>"; };
- BE55B0D618D9AB0A00950228 /* templateremoteview.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = templateremoteview.cxx; path = ../../../sfx2/source/control/templateremoteview.cxx; sourceTree = "<group>"; };
- BE55B0D718D9AB0A00950228 /* templatesearchview.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = templatesearchview.cxx; path = ../../../sfx2/source/control/templatesearchview.cxx; sourceTree = "<group>"; };
- BE55B0D818D9AB0A00950228 /* templateviewitem.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = templateviewitem.cxx; path = ../../../sfx2/source/control/templateviewitem.cxx; sourceTree = "<group>"; };
- BE55B0D918D9AB0A00950228 /* thumbnailview.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = thumbnailview.cxx; path = ../../../sfx2/source/control/thumbnailview.cxx; sourceTree = "<group>"; };
- BE55B0DA18D9AB0A00950228 /* thumbnailviewacc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = thumbnailviewacc.cxx; path = ../../../sfx2/source/control/thumbnailviewacc.cxx; sourceTree = "<group>"; };
- BE55B0DB18D9AB0A00950228 /* thumbnailviewitem.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = thumbnailviewitem.cxx; path = ../../../sfx2/source/control/thumbnailviewitem.cxx; sourceTree = "<group>"; };
- BE55B0DC18D9AB0A00950228 /* unoctitm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = unoctitm.cxx; path = ../../../sfx2/source/control/unoctitm.cxx; sourceTree = "<group>"; };
- BE55B0DE18D9AB5400950228 /* app.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = app.cxx; path = ../../../sfx2/source/appl/app.cxx; sourceTree = "<group>"; };
- BE55B0DF18D9AB5400950228 /* appbas.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appbas.cxx; path = ../../../sfx2/source/appl/appbas.cxx; sourceTree = "<group>"; };
- BE55B0E018D9AB5400950228 /* appbaslib.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appbaslib.cxx; path = ../../../sfx2/source/appl/appbaslib.cxx; sourceTree = "<group>"; };
- BE55B0E118D9AB5400950228 /* appcfg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appcfg.cxx; path = ../../../sfx2/source/appl/appcfg.cxx; sourceTree = "<group>"; };
- BE55B0E218D9AB5400950228 /* appchild.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appchild.cxx; path = ../../../sfx2/source/appl/appchild.cxx; sourceTree = "<group>"; };
- BE55B0E318D9AB5400950228 /* appdata.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appdata.cxx; path = ../../../sfx2/source/appl/appdata.cxx; sourceTree = "<group>"; };
- BE55B0E418D9AB5400950228 /* appdde.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appdde.cxx; path = ../../../sfx2/source/appl/appdde.cxx; sourceTree = "<group>"; };
- BE55B0E518D9AB5400950228 /* appdispatchprovider.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appdispatchprovider.cxx; path = ../../../sfx2/source/appl/appdispatchprovider.cxx; sourceTree = "<group>"; };
- BE55B0E618D9AB5400950228 /* appinit.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appinit.cxx; path = ../../../sfx2/source/appl/appinit.cxx; sourceTree = "<group>"; };
- BE55B0E718D9AB5400950228 /* appmain.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appmain.cxx; path = ../../../sfx2/source/appl/appmain.cxx; sourceTree = "<group>"; };
- BE55B0E818D9AB5400950228 /* appmisc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appmisc.cxx; path = ../../../sfx2/source/appl/appmisc.cxx; sourceTree = "<group>"; };
- BE55B0E918D9AB5400950228 /* appopen.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appopen.cxx; path = ../../../sfx2/source/appl/appopen.cxx; sourceTree = "<group>"; };
- BE55B0EA18D9AB5400950228 /* appquit.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appquit.cxx; path = ../../../sfx2/source/appl/appquit.cxx; sourceTree = "<group>"; };
- BE55B0EB18D9AB5400950228 /* appreg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appreg.cxx; path = ../../../sfx2/source/appl/appreg.cxx; sourceTree = "<group>"; };
- BE55B0EC18D9AB5400950228 /* appserv.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appserv.cxx; path = ../../../sfx2/source/appl/appserv.cxx; sourceTree = "<group>"; };
- BE55B0ED18D9AB5400950228 /* appuno.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appuno.cxx; path = ../../../sfx2/source/appl/appuno.cxx; sourceTree = "<group>"; };
- BE55B0EE18D9AB5400950228 /* childwin.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = childwin.cxx; path = ../../../sfx2/source/appl/childwin.cxx; sourceTree = "<group>"; };
- BE55B0EF18D9AB5400950228 /* fileobj.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fileobj.cxx; path = ../../../sfx2/source/appl/fileobj.cxx; sourceTree = "<group>"; };
- BE55B0F018D9AB5400950228 /* fwkhelper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fwkhelper.cxx; path = ../../../sfx2/source/appl/fwkhelper.cxx; sourceTree = "<group>"; };
- BE55B0F118D9AB5400950228 /* helpdispatch.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = helpdispatch.cxx; path = ../../../sfx2/source/appl/helpdispatch.cxx; sourceTree = "<group>"; };
- BE55B0F218D9AB5400950228 /* helpinterceptor.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = helpinterceptor.cxx; path = ../../../sfx2/source/appl/helpinterceptor.cxx; sourceTree = "<group>"; };
- BE55B0F318D9AB5400950228 /* imagemgr.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = imagemgr.cxx; path = ../../../sfx2/source/appl/imagemgr.cxx; sourceTree = "<group>"; };
- BE55B0F418D9AB5400950228 /* imestatuswindow.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = imestatuswindow.cxx; path = ../../../sfx2/source/appl/imestatuswindow.cxx; sourceTree = "<group>"; };
- BE55B0F518D9AB5400950228 /* impldde.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = impldde.cxx; path = ../../../sfx2/source/appl/impldde.cxx; sourceTree = "<group>"; };
- BE55B0F618D9AB5400950228 /* linkmgr2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = linkmgr2.cxx; path = ../../../sfx2/source/appl/linkmgr2.cxx; sourceTree = "<group>"; };
- BE55B0F718D9AB5400950228 /* linksrc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = linksrc.cxx; path = ../../../sfx2/source/appl/linksrc.cxx; sourceTree = "<group>"; };
- BE55B0F818D9AB5400950228 /* lnkbase2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = lnkbase2.cxx; path = ../../../sfx2/source/appl/lnkbase2.cxx; sourceTree = "<group>"; };
- BE55B0F918D9AB5400950228 /* macroloader.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = macroloader.cxx; path = ../../../sfx2/source/appl/macroloader.cxx; sourceTree = "<group>"; };
- BE55B0FA18D9AB5400950228 /* module.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = module.cxx; path = ../../../sfx2/source/appl/module.cxx; sourceTree = "<group>"; };
- BE55B0FB18D9AB5400950228 /* newhelp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = newhelp.cxx; path = ../../../sfx2/source/appl/newhelp.cxx; sourceTree = "<group>"; };
- BE55B0FC18D9AB5400950228 /* opengrf.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = opengrf.cxx; path = ../../../sfx2/source/appl/opengrf.cxx; sourceTree = "<group>"; };
- BE55B0FD18D9AB5400950228 /* openuriexternally.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = openuriexternally.cxx; path = ../../../sfx2/source/appl/openuriexternally.cxx; sourceTree = "<group>"; };
- BE55B0FF18D9AB5400950228 /* sfxhelp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sfxhelp.cxx; path = ../../../sfx2/source/appl/sfxhelp.cxx; sourceTree = "<group>"; };
- BE55B10018D9AB5400950228 /* sfxpicklist.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sfxpicklist.cxx; path = ../../../sfx2/source/appl/sfxpicklist.cxx; sourceTree = "<group>"; };
- BE55B10118D9AB5400950228 /* shutdownicon.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = shutdownicon.cxx; path = ../../../sfx2/source/appl/shutdownicon.cxx; sourceTree = "<group>"; };
- BE55B10218D9AB5400950228 /* shutdowniconaqua.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = shutdowniconaqua.mm; path = ../../../sfx2/source/appl/shutdowniconaqua.mm; sourceTree = "<group>"; };
- BE55B10318D9AB5400950228 /* workwin.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = workwin.cxx; path = ../../../sfx2/source/appl/workwin.cxx; sourceTree = "<group>"; };
- BE55B10418D9AB5400950228 /* xpackcreator.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xpackcreator.cxx; path = ../../../sfx2/source/appl/xpackcreator.cxx; sourceTree = "<group>"; };
- BE55B10618DAD89800950228 /* compat.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = compat.cxx; path = ../../../cppu/source/cppu/compat.cxx; sourceTree = "<group>"; };
- BE55B10718DAD89800950228 /* cppu_opt.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cppu_opt.cxx; path = ../../../cppu/source/cppu/cppu_opt.cxx; sourceTree = "<group>"; };
- BE55B10A18DB67A900950228 /* chart */ = {isa = PBXFileReference; lastKnownFileType = folder; name = chart; path = ../../../oox/source/drawingml/chart; sourceTree = "<group>"; };
- BE55B10B18DB67A900950228 /* clrscheme.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = clrscheme.cxx; path = ../../../oox/source/drawingml/clrscheme.cxx; sourceTree = "<group>"; };
- BE55B10C18DB67A900950228 /* clrschemecontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = clrschemecontext.cxx; path = ../../../oox/source/drawingml/clrschemecontext.cxx; sourceTree = "<group>"; };
- BE55B10D18DB67A900950228 /* color.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = color.cxx; path = ../../../oox/source/drawingml/color.cxx; sourceTree = "<group>"; };
- BE55B10E18DB67A900950228 /* colorchoicecontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = colorchoicecontext.cxx; path = ../../../oox/source/drawingml/colorchoicecontext.cxx; sourceTree = "<group>"; };
- BE55B10F18DB67A900950228 /* connectorshapecontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = connectorshapecontext.cxx; path = ../../../oox/source/drawingml/connectorshapecontext.cxx; sourceTree = "<group>"; };
- BE55B11018DB67A900950228 /* customshapegeometry.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = customshapegeometry.cxx; path = ../../../oox/source/drawingml/customshapegeometry.cxx; sourceTree = "<group>"; };
- BE55B11118DB67A900950228 /* customshapepresets1.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = customshapepresets1.cxx; path = ../../../oox/source/drawingml/customshapepresets1.cxx; sourceTree = "<group>"; };
- BE55B11218DB67A900950228 /* customshapepresets2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = customshapepresets2.cxx; path = ../../../oox/source/drawingml/customshapepresets2.cxx; sourceTree = "<group>"; };
- BE55B11318DB67A900950228 /* customshapepresets3.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = customshapepresets3.cxx; path = ../../../oox/source/drawingml/customshapepresets3.cxx; sourceTree = "<group>"; };
- BE55B11418DB67A900950228 /* customshapepresets4.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = customshapepresets4.cxx; path = ../../../oox/source/drawingml/customshapepresets4.cxx; sourceTree = "<group>"; };
- BE55B11518DB67A900950228 /* customshapepresets5.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = customshapepresets5.cxx; path = ../../../oox/source/drawingml/customshapepresets5.cxx; sourceTree = "<group>"; };
- BE55B11618DB67A900950228 /* customshapepresets6.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = customshapepresets6.cxx; path = ../../../oox/source/drawingml/customshapepresets6.cxx; sourceTree = "<group>"; };
- BE55B11718DB67A900950228 /* customshapeproperties.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = customshapeproperties.cxx; path = ../../../oox/source/drawingml/customshapeproperties.cxx; sourceTree = "<group>"; };
- BE55B11918DB67A900950228 /* diagram */ = {isa = PBXFileReference; lastKnownFileType = folder; name = diagram; path = ../../../oox/source/drawingml/diagram; sourceTree = "<group>"; };
- BE55B11A18DB67A900950228 /* drawingmltypes.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = drawingmltypes.cxx; path = ../../../oox/source/drawingml/drawingmltypes.cxx; sourceTree = "<group>"; };
- BE55B11B18DB67A900950228 /* effectproperties.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = effectproperties.cxx; path = ../../../oox/source/drawingml/effectproperties.cxx; sourceTree = "<group>"; };
- BE55B11C18DB67A900950228 /* effectpropertiescontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = effectpropertiescontext.cxx; path = ../../../oox/source/drawingml/effectpropertiescontext.cxx; sourceTree = "<group>"; };
- BE55B11D18DB67A900950228 /* embeddedwavaudiofile.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = embeddedwavaudiofile.cxx; path = ../../../oox/source/drawingml/embeddedwavaudiofile.cxx; sourceTree = "<group>"; };
- BE55B11E18DB67A900950228 /* fillproperties.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fillproperties.cxx; path = ../../../oox/source/drawingml/fillproperties.cxx; sourceTree = "<group>"; };
- BE55B11F18DB67A900950228 /* fillpropertiesgroupcontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fillpropertiesgroupcontext.cxx; path = ../../../oox/source/drawingml/fillpropertiesgroupcontext.cxx; sourceTree = "<group>"; };
- BE55B12018DB67A900950228 /* graphicshapecontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = graphicshapecontext.cxx; path = ../../../oox/source/drawingml/graphicshapecontext.cxx; sourceTree = "<group>"; };
- BE55B12118DB67A900950228 /* guidcontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = guidcontext.cxx; path = ../../../oox/source/drawingml/guidcontext.cxx; sourceTree = "<group>"; };
- BE55B12218DB67A900950228 /* hyperlinkcontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = hyperlinkcontext.cxx; path = ../../../oox/source/drawingml/hyperlinkcontext.cxx; sourceTree = "<group>"; };
- BE55B12318DB67A900950228 /* lineproperties.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = lineproperties.cxx; path = ../../../oox/source/drawingml/lineproperties.cxx; sourceTree = "<group>"; };
- BE55B12418DB67A900950228 /* linepropertiescontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = linepropertiescontext.cxx; path = ../../../oox/source/drawingml/linepropertiescontext.cxx; sourceTree = "<group>"; };
- BE55B12518DB67A900950228 /* objectdefaultcontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = objectdefaultcontext.cxx; path = ../../../oox/source/drawingml/objectdefaultcontext.cxx; sourceTree = "<group>"; };
- BE55B12618DB67A900950228 /* scene3dcontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = scene3dcontext.cxx; path = ../../../oox/source/drawingml/scene3dcontext.cxx; sourceTree = "<group>"; };
- BE55B12718DB67A900950228 /* shape.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = shape.cxx; path = ../../../oox/source/drawingml/shape.cxx; sourceTree = "<group>"; };
- BE55B12818DB67A900950228 /* shape3dproperties.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = shape3dproperties.cxx; path = ../../../oox/source/drawingml/shape3dproperties.cxx; sourceTree = "<group>"; };
- BE55B12918DB67A900950228 /* shapecontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = shapecontext.cxx; path = ../../../oox/source/drawingml/shapecontext.cxx; sourceTree = "<group>"; };
- BE55B12A18DB67A900950228 /* shapegroupcontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = shapegroupcontext.cxx; path = ../../../oox/source/drawingml/shapegroupcontext.cxx; sourceTree = "<group>"; };
- BE55B12B18DB67A900950228 /* shapepropertiescontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = shapepropertiescontext.cxx; path = ../../../oox/source/drawingml/shapepropertiescontext.cxx; sourceTree = "<group>"; };
- BE55B12C18DB67A900950228 /* shapepropertymap.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = shapepropertymap.cxx; path = ../../../oox/source/drawingml/shapepropertymap.cxx; sourceTree = "<group>"; };
- BE55B12D18DB67A900950228 /* shapestylecontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = shapestylecontext.cxx; path = ../../../oox/source/drawingml/shapestylecontext.cxx; sourceTree = "<group>"; };
- BE55B12E18DB67A900950228 /* spdefcontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = spdefcontext.cxx; path = ../../../oox/source/drawingml/spdefcontext.cxx; sourceTree = "<group>"; };
- BE55B12F18DB67A900950228 /* table */ = {isa = PBXFileReference; lastKnownFileType = folder; name = table; path = ../../../oox/source/drawingml/table; sourceTree = "<group>"; };
- BE55B13018DB67A900950228 /* textbody.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textbody.cxx; path = ../../../oox/source/drawingml/textbody.cxx; sourceTree = "<group>"; };
- BE55B13118DB67A900950228 /* textbodycontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textbodycontext.cxx; path = ../../../oox/source/drawingml/textbodycontext.cxx; sourceTree = "<group>"; };
- BE55B13218DB67A900950228 /* textbodyproperties.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textbodyproperties.cxx; path = ../../../oox/source/drawingml/textbodyproperties.cxx; sourceTree = "<group>"; };
- BE55B13318DB67A900950228 /* textbodypropertiescontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textbodypropertiescontext.cxx; path = ../../../oox/source/drawingml/textbodypropertiescontext.cxx; sourceTree = "<group>"; };
- BE55B13418DB67A900950228 /* textcharacterproperties.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textcharacterproperties.cxx; path = ../../../oox/source/drawingml/textcharacterproperties.cxx; sourceTree = "<group>"; };
- BE55B13518DB67A900950228 /* textcharacterpropertiescontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textcharacterpropertiescontext.cxx; path = ../../../oox/source/drawingml/textcharacterpropertiescontext.cxx; sourceTree = "<group>"; };
- BE55B13618DB67A900950228 /* texteffectscontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = texteffectscontext.cxx; path = ../../../oox/source/drawingml/texteffectscontext.cxx; sourceTree = "<group>"; };
- BE55B13718DB67A900950228 /* textfield.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textfield.cxx; path = ../../../oox/source/drawingml/textfield.cxx; sourceTree = "<group>"; };
- BE55B13818DB67A900950228 /* textfieldcontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textfieldcontext.cxx; path = ../../../oox/source/drawingml/textfieldcontext.cxx; sourceTree = "<group>"; };
- BE55B13918DB67A900950228 /* textfont.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textfont.cxx; path = ../../../oox/source/drawingml/textfont.cxx; sourceTree = "<group>"; };
- BE55B13A18DB67A900950228 /* textliststyle.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textliststyle.cxx; path = ../../../oox/source/drawingml/textliststyle.cxx; sourceTree = "<group>"; };
- BE55B13B18DB67A900950228 /* textliststylecontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textliststylecontext.cxx; path = ../../../oox/source/drawingml/textliststylecontext.cxx; sourceTree = "<group>"; };
- BE55B13C18DB67A900950228 /* textparagraph.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textparagraph.cxx; path = ../../../oox/source/drawingml/textparagraph.cxx; sourceTree = "<group>"; };
- BE55B13D18DB67A900950228 /* textparagraphproperties.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textparagraphproperties.cxx; path = ../../../oox/source/drawingml/textparagraphproperties.cxx; sourceTree = "<group>"; };
- BE55B13E18DB67A900950228 /* textparagraphpropertiescontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textparagraphpropertiescontext.cxx; path = ../../../oox/source/drawingml/textparagraphpropertiescontext.cxx; sourceTree = "<group>"; };
- BE55B13F18DB67A900950228 /* textrun.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textrun.cxx; path = ../../../oox/source/drawingml/textrun.cxx; sourceTree = "<group>"; };
- BE55B14018DB67A900950228 /* textspacingcontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textspacingcontext.cxx; path = ../../../oox/source/drawingml/textspacingcontext.cxx; sourceTree = "<group>"; };
- BE55B14118DB67A900950228 /* textspacingcontext.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = textspacingcontext.hxx; path = ../../../oox/source/drawingml/textspacingcontext.hxx; sourceTree = "<group>"; };
- BE55B14218DB67A900950228 /* texttabstoplistcontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = texttabstoplistcontext.cxx; path = ../../../oox/source/drawingml/texttabstoplistcontext.cxx; sourceTree = "<group>"; };
- BE55B14318DB67A900950228 /* texttabstoplistcontext.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = texttabstoplistcontext.hxx; path = ../../../oox/source/drawingml/texttabstoplistcontext.hxx; sourceTree = "<group>"; };
- BE55B14418DB67A900950228 /* theme.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = theme.cxx; path = ../../../oox/source/drawingml/theme.cxx; sourceTree = "<group>"; };
- BE55B14518DB67A900950228 /* themeelementscontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = themeelementscontext.cxx; path = ../../../oox/source/drawingml/themeelementscontext.cxx; sourceTree = "<group>"; };
- BE55B14618DB67A900950228 /* themefragmenthandler.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = themefragmenthandler.cxx; path = ../../../oox/source/drawingml/themefragmenthandler.cxx; sourceTree = "<group>"; };
- BE55B14718DB67A900950228 /* transform2dcontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = transform2dcontext.cxx; path = ../../../oox/source/drawingml/transform2dcontext.cxx; sourceTree = "<group>"; };
- BE55B14918DB6DE700950228 /* EnhancedCustomShape2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = EnhancedCustomShape2d.cxx; path = ../../../svx/source/customshapes/EnhancedCustomShape2d.cxx; sourceTree = "<group>"; };
- BE55B14A18DB6DE700950228 /* EnhancedCustomShape3d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = EnhancedCustomShape3d.cxx; path = ../../../svx/source/customshapes/EnhancedCustomShape3d.cxx; sourceTree = "<group>"; };
- BE55B14B18DB6DE700950228 /* EnhancedCustomShapeEngine.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = EnhancedCustomShapeEngine.cxx; path = ../../../svx/source/customshapes/EnhancedCustomShapeEngine.cxx; sourceTree = "<group>"; };
- BE55B14C18DB6DE700950228 /* EnhancedCustomShapeFontWork.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = EnhancedCustomShapeFontWork.cxx; path = ../../../svx/source/customshapes/EnhancedCustomShapeFontWork.cxx; sourceTree = "<group>"; };
- BE55B14D18DB6DE700950228 /* EnhancedCustomShapeFunctionParser.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = EnhancedCustomShapeFunctionParser.cxx; path = ../../../svx/source/customshapes/EnhancedCustomShapeFunctionParser.cxx; sourceTree = "<group>"; };
- BE55B14E18DB6DE700950228 /* EnhancedCustomShapeGeometry.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = EnhancedCustomShapeGeometry.cxx; path = ../../../svx/source/customshapes/EnhancedCustomShapeGeometry.cxx; sourceTree = "<group>"; };
- BE55B14F18DB6DE700950228 /* EnhancedCustomShapeHandle.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = EnhancedCustomShapeHandle.cxx; path = ../../../svx/source/customshapes/EnhancedCustomShapeHandle.cxx; sourceTree = "<group>"; };
- BE55B15018DB6DE700950228 /* EnhancedCustomShapeTypeNames.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = EnhancedCustomShapeTypeNames.cxx; path = ../../../svx/source/customshapes/EnhancedCustomShapeTypeNames.cxx; sourceTree = "<group>"; };
- BE55B15118DB6DE700950228 /* tbxcustomshapes.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tbxcustomshapes.cxx; path = ../../../svx/source/customshapes/tbxcustomshapes.cxx; sourceTree = "<group>"; };
- BE6DC8ED19D9A6E500AFB393 /* app.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = app.cxx; path = ../../../desktop/source/app/app.cxx; sourceTree = "<group>"; };
- BE6DC8EE19D9A6E500AFB393 /* appinit.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appinit.cxx; path = ../../../desktop/source/app/appinit.cxx; sourceTree = "<group>"; };
- BE6DC8EF19D9A6E500AFB393 /* check_ext_deps.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = check_ext_deps.cxx; path = ../../../desktop/source/app/check_ext_deps.cxx; sourceTree = "<group>"; };
- BE6DC8F019D9A6E500AFB393 /* cmdlineargs.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cmdlineargs.cxx; path = ../../../desktop/source/app/cmdlineargs.cxx; sourceTree = "<group>"; };
- BE6DC8F119D9A6E500AFB393 /* cmdlinehelp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cmdlinehelp.cxx; path = ../../../desktop/source/app/cmdlinehelp.cxx; sourceTree = "<group>"; };
- BE6DC8F219D9A6E500AFB393 /* configinit.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = configinit.cxx; path = ../../../desktop/source/app/configinit.cxx; sourceTree = "<group>"; };
- BE6DC8F319D9A6E500AFB393 /* desktopcontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = desktopcontext.cxx; path = ../../../desktop/source/app/desktopcontext.cxx; sourceTree = "<group>"; };
- BE6DC8F419D9A6E500AFB393 /* desktopcontext.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = desktopcontext.hxx; path = ../../../desktop/source/app/desktopcontext.hxx; sourceTree = "<group>"; };
- BE6DC8F519D9A6E500AFB393 /* desktopresid.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = desktopresid.cxx; path = ../../../desktop/source/app/desktopresid.cxx; sourceTree = "<group>"; };
- BE6DC8F619D9A6E500AFB393 /* dispatchwatcher.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dispatchwatcher.cxx; path = ../../../desktop/source/app/dispatchwatcher.cxx; sourceTree = "<group>"; };
- BE6DC8F719D9A6E500AFB393 /* langselect.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = langselect.cxx; path = ../../../desktop/source/app/langselect.cxx; sourceTree = "<group>"; };
- BE6DC8F819D9A6E500AFB393 /* lockfile2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = lockfile2.cxx; path = ../../../desktop/source/app/lockfile2.cxx; sourceTree = "<group>"; };
- BE6DC8F919D9A6E500AFB393 /* main.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = main.c; path = ../../../desktop/source/app/main.c; sourceTree = "<group>"; };
- BE6DC8FA19D9A6E500AFB393 /* officeipcthread.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = officeipcthread.cxx; path = ../../../desktop/source/app/officeipcthread.cxx; sourceTree = "<group>"; };
- BE6DC8FB19D9A6E500AFB393 /* sofficemain.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sofficemain.cxx; path = ../../../desktop/source/app/sofficemain.cxx; sourceTree = "<group>"; };
- BE6DC8FC19D9A6E500AFB393 /* userinstall.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = userinstall.cxx; path = ../../../desktop/source/app/userinstall.cxx; sourceTree = "<group>"; };
- BE6DC8FD19D9AF6100AFB393 /* IconThemeInfo.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = IconThemeInfo.cxx; path = ../../../vcl/source/app/IconThemeInfo.cxx; sourceTree = "<group>"; };
- BE6DC8FE19D9AF6100AFB393 /* IconThemeScanner.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = IconThemeScanner.cxx; path = ../../../vcl/source/app/IconThemeScanner.cxx; sourceTree = "<group>"; };
- BE6DC8FF19D9AF6100AFB393 /* IconThemeSelector.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = IconThemeSelector.cxx; path = ../../../vcl/source/app/IconThemeSelector.cxx; sourceTree = "<group>"; };
- BE6DC90119D9B55E00AFB393 /* alloc_arena.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = alloc_arena.cxx; path = ../../../sal/rtl/alloc_arena.cxx; sourceTree = "<group>"; };
- BE6DC90219D9B55E00AFB393 /* alloc_cache.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = alloc_cache.cxx; path = ../../../sal/rtl/alloc_cache.cxx; sourceTree = "<group>"; };
- BE6DC90319D9B55E00AFB393 /* alloc_fini.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = alloc_fini.cxx; path = ../../../sal/rtl/alloc_fini.cxx; sourceTree = "<group>"; };
- BE6DC90419D9B55E00AFB393 /* alloc_global.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = alloc_global.cxx; path = ../../../sal/rtl/alloc_global.cxx; sourceTree = "<group>"; };
- BE6DC90519D9B55E00AFB393 /* bootstrap.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bootstrap.cxx; path = ../../../sal/rtl/bootstrap.cxx; sourceTree = "<group>"; };
- BE6DC90619D9B55E00AFB393 /* byteseq.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = byteseq.cxx; path = ../../../sal/rtl/byteseq.cxx; sourceTree = "<group>"; };
- BE6DC90719D9B55E00AFB393 /* cipher.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cipher.cxx; path = ../../../sal/rtl/cipher.cxx; sourceTree = "<group>"; };
- BE6DC90819D9B55E00AFB393 /* cmdargs.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cmdargs.cxx; path = ../../../sal/rtl/cmdargs.cxx; sourceTree = "<group>"; };
- BE6DC90919D9B55E00AFB393 /* crc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = crc.cxx; path = ../../../sal/rtl/crc.cxx; sourceTree = "<group>"; };
- BE6DC90A19D9B55E00AFB393 /* digest.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = digest.cxx; path = ../../../sal/rtl/digest.cxx; sourceTree = "<group>"; };
- BE6DC90B19D9B55E00AFB393 /* hash.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = hash.cxx; path = ../../../sal/rtl/hash.cxx; sourceTree = "<group>"; };
- BE6DC90C19D9B55E00AFB393 /* locale.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = locale.cxx; path = ../../../sal/rtl/locale.cxx; sourceTree = "<group>"; };
- BE6DC90D19D9B55E00AFB393 /* logfile.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = logfile.cxx; path = ../../../sal/rtl/logfile.cxx; sourceTree = "<group>"; };
- BE6DC90E19D9B55E00AFB393 /* math.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = math.cxx; path = ../../../sal/rtl/math.cxx; sourceTree = "<group>"; };
- BE6DC90F19D9B55E00AFB393 /* random.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = random.cxx; path = ../../../sal/rtl/random.cxx; sourceTree = "<group>"; };
- BE6DC91019D9B55E00AFB393 /* rtl_process.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = rtl_process.cxx; path = ../../../sal/rtl/rtl_process.cxx; sourceTree = "<group>"; };
- BE6DC91119D9B55E00AFB393 /* strbuf.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = strbuf.cxx; path = ../../../sal/rtl/strbuf.cxx; sourceTree = "<group>"; };
- BE6DC91219D9B55E00AFB393 /* strimp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = strimp.cxx; path = ../../../sal/rtl/strimp.cxx; sourceTree = "<group>"; };
- BE6DC91319D9B55E00AFB393 /* string.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = string.cxx; path = ../../../sal/rtl/string.cxx; sourceTree = "<group>"; };
- BE6DC91419D9B55E00AFB393 /* strtmpl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = strtmpl.cxx; path = ../../../sal/rtl/strtmpl.cxx; sourceTree = "<group>"; };
- BE6DC91519D9B55E00AFB393 /* unload.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = unload.cxx; path = ../../../sal/rtl/unload.cxx; sourceTree = "<group>"; };
- BE6DC91619D9B55E00AFB393 /* uri.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = uri.cxx; path = ../../../sal/rtl/uri.cxx; sourceTree = "<group>"; };
- BE6DC91719D9B55E00AFB393 /* ustrbuf.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ustrbuf.cxx; path = ../../../sal/rtl/ustrbuf.cxx; sourceTree = "<group>"; };
- BE6DC91819D9B55E00AFB393 /* ustring.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ustring.cxx; path = ../../../sal/rtl/ustring.cxx; sourceTree = "<group>"; };
- BE6DC91919D9B55E00AFB393 /* uuid.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = uuid.cxx; path = ../../../sal/rtl/uuid.cxx; sourceTree = "<group>"; };
- BE6DC91B19D9B59400AFB393 /* compat.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = compat.cxx; path = ../../../sal/osl/all/compat.cxx; sourceTree = "<group>"; };
- BE6DC91C19D9B59400AFB393 /* debugbase.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = debugbase.cxx; path = ../../../sal/osl/all/debugbase.cxx; sourceTree = "<group>"; };
- BE6DC91D19D9B59400AFB393 /* filepath.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = filepath.c; path = ../../../sal/osl/all/filepath.c; sourceTree = "<group>"; };
- BE6DC91E19D9B59400AFB393 /* loadmodulerelative.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = loadmodulerelative.cxx; path = ../../../sal/osl/all/loadmodulerelative.cxx; sourceTree = "<group>"; };
- BE6DC91F19D9B59400AFB393 /* log.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = log.cxx; path = ../../../sal/osl/all/log.cxx; sourceTree = "<group>"; };
- BE6DC92019D9B59400AFB393 /* utility.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = utility.cxx; path = ../../../sal/osl/all/utility.cxx; sourceTree = "<group>"; };
- BE6DC92219D9B5DD00AFB393 /* backtrace.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = backtrace.c; path = ../../../sal/osl/unx/backtrace.c; sourceTree = "<group>"; };
- BE6DC92319D9B5DD00AFB393 /* conditn.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = conditn.cxx; path = ../../../sal/osl/unx/conditn.cxx; sourceTree = "<group>"; };
- BE6DC92419D9B5DD00AFB393 /* file_error_transl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = file_error_transl.cxx; path = ../../../sal/osl/unx/file_error_transl.cxx; sourceTree = "<group>"; };
- BE6DC92519D9B5DD00AFB393 /* file_misc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = file_misc.cxx; path = ../../../sal/osl/unx/file_misc.cxx; sourceTree = "<group>"; };
- BE6DC92619D9B5DD00AFB393 /* file_path_helper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = file_path_helper.cxx; path = ../../../sal/osl/unx/file_path_helper.cxx; sourceTree = "<group>"; };
- BE6DC92719D9B5DD00AFB393 /* file_stat.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = file_stat.cxx; path = ../../../sal/osl/unx/file_stat.cxx; sourceTree = "<group>"; };
- BE6DC92819D9B5DD00AFB393 /* file_url.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = file_url.cxx; path = ../../../sal/osl/unx/file_url.cxx; sourceTree = "<group>"; };
- BE6DC92919D9B5DD00AFB393 /* file_volume.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = file_volume.cxx; path = ../../../sal/osl/unx/file_volume.cxx; sourceTree = "<group>"; };
- BE6DC92A19D9B5DD00AFB393 /* file.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = file.cxx; path = ../../../sal/osl/unx/file.cxx; sourceTree = "<group>"; };
- BE6DC92B19D9B5DD00AFB393 /* interlck.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = interlck.c; path = ../../../sal/osl/unx/interlck.c; sourceTree = "<group>"; };
- BE6DC92C19D9B5DD00AFB393 /* memory.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = memory.c; path = ../../../sal/osl/unx/memory.c; sourceTree = "<group>"; };
- BE6DC92D19D9B5DD00AFB393 /* module.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = module.cxx; path = ../../../sal/osl/unx/module.cxx; sourceTree = "<group>"; };
- BE6DC92E19D9B5DD00AFB393 /* mutex.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = mutex.c; path = ../../../sal/osl/unx/mutex.c; sourceTree = "<group>"; };
- BE6DC92F19D9B5DD00AFB393 /* nlsupport.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = nlsupport.c; path = ../../../sal/osl/unx/nlsupport.c; sourceTree = "<group>"; };
- BE6DC93019D9B5DD00AFB393 /* osxlocale.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = osxlocale.cxx; path = ../../../sal/osl/unx/osxlocale.cxx; sourceTree = "<group>"; };
- BE6DC93119D9B5DD00AFB393 /* pipe.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pipe.cxx; path = ../../../sal/osl/unx/pipe.cxx; sourceTree = "<group>"; };
- BE6DC93219D9B5DD00AFB393 /* process_impl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = process_impl.cxx; path = ../../../sal/osl/unx/process_impl.cxx; sourceTree = "<group>"; };
- BE6DC93319D9B5DD00AFB393 /* process.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = process.cxx; path = ../../../sal/osl/unx/process.cxx; sourceTree = "<group>"; };
- BE6DC93419D9B5DD00AFB393 /* profile.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = profile.cxx; path = ../../../sal/osl/unx/profile.cxx; sourceTree = "<group>"; };
- BE6DC93519D9B5DD00AFB393 /* readwrite_helper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = readwrite_helper.c; path = ../../../sal/osl/unx/readwrite_helper.c; sourceTree = "<group>"; };
- BE6DC93619D9B5DD00AFB393 /* salinit.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = salinit.cxx; path = ../../../sal/osl/unx/salinit.cxx; sourceTree = "<group>"; };
- BE6DC93719D9B5DD00AFB393 /* security.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = security.cxx; path = ../../../sal/osl/unx/security.cxx; sourceTree = "<group>"; };
- BE6DC93819D9B5DD00AFB393 /* signal.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = signal.c; path = ../../../sal/osl/unx/signal.c; sourceTree = "<group>"; };
- BE6DC93919D9B5DD00AFB393 /* socket.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = socket.c; path = ../../../sal/osl/unx/socket.c; sourceTree = "<group>"; };
- BE6DC93A19D9B5DD00AFB393 /* system.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = system.c; path = ../../../sal/osl/unx/system.c; sourceTree = "<group>"; };
- BE6DC93B19D9B5DD00AFB393 /* tempfile.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tempfile.cxx; path = ../../../sal/osl/unx/tempfile.cxx; sourceTree = "<group>"; };
- BE6DC93C19D9B5DD00AFB393 /* thread.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = thread.c; path = ../../../sal/osl/unx/thread.c; sourceTree = "<group>"; };
- BE6DC93D19D9B5DD00AFB393 /* time.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = time.c; path = ../../../sal/osl/unx/time.c; sourceTree = "<group>"; };
- BE6DC93E19D9B5DD00AFB393 /* uunxapi.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = uunxapi.cxx; path = ../../../sal/osl/unx/uunxapi.cxx; sourceTree = "<group>"; };
- BE6DC93F19D9B5DD00AFB393 /* uunxapi.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = uunxapi.mm; path = ../../../sal/osl/unx/uunxapi.mm; sourceTree = "<group>"; };
- BE6F3D67192E286B00D6FCC0 /* bitmap.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bitmap.cxx; path = ../../../vcl/source/outdev/bitmap.cxx; sourceTree = "<group>"; };
- BE6F3D68192E286B00D6FCC0 /* clipping.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = clipping.cxx; path = ../../../vcl/source/outdev/clipping.cxx; sourceTree = "<group>"; };
- BE6F3D69192E286B00D6FCC0 /* curvedshapes.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = curvedshapes.cxx; path = ../../../vcl/source/outdev/curvedshapes.cxx; sourceTree = "<group>"; };
- BE6F3D6A192E286B00D6FCC0 /* font.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = font.cxx; path = ../../../vcl/source/outdev/font.cxx; sourceTree = "<group>"; };
- BE6F3D6B192E286B00D6FCC0 /* gradient.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gradient.cxx; path = ../../../vcl/source/outdev/gradient.cxx; sourceTree = "<group>"; };
- BE6F3D6C192E286B00D6FCC0 /* hatch.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = hatch.cxx; path = ../../../vcl/source/outdev/hatch.cxx; sourceTree = "<group>"; };
- BE6F3D6D192E286B00D6FCC0 /* line.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = line.cxx; path = ../../../vcl/source/outdev/line.cxx; sourceTree = "<group>"; };
- BE6F3D6E192E286B00D6FCC0 /* map.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = map.cxx; path = ../../../vcl/source/outdev/map.cxx; sourceTree = "<group>"; };
- BE6F3D6F192E286B00D6FCC0 /* mask.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = mask.cxx; path = ../../../vcl/source/outdev/mask.cxx; sourceTree = "<group>"; };
- BE6F3D70192E286B00D6FCC0 /* nativecontrols.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = nativecontrols.cxx; path = ../../../vcl/source/outdev/nativecontrols.cxx; sourceTree = "<group>"; };
- BE6F3D71192E286B00D6FCC0 /* outdev.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = outdev.cxx; path = ../../../vcl/source/outdev/outdev.cxx; sourceTree = "<group>"; };
- BE6F3D72192E286B00D6FCC0 /* outdevstate.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = outdevstate.cxx; path = ../../../vcl/source/outdev/outdevstate.cxx; sourceTree = "<group>"; };
- BE6F3D73192E286B00D6FCC0 /* pixel.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pixel.cxx; path = ../../../vcl/source/outdev/pixel.cxx; sourceTree = "<group>"; };
- BE6F3D74192E286B00D6FCC0 /* polygon.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = polygon.cxx; path = ../../../vcl/source/outdev/polygon.cxx; sourceTree = "<group>"; };
- BE6F3D75192E286B00D6FCC0 /* polyline.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = polyline.cxx; path = ../../../vcl/source/outdev/polyline.cxx; sourceTree = "<group>"; };
- BE6F3D76192E286B00D6FCC0 /* rect.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = rect.cxx; path = ../../../vcl/source/outdev/rect.cxx; sourceTree = "<group>"; };
- BE6F3D77192E286B00D6FCC0 /* text.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = text.cxx; path = ../../../vcl/source/outdev/text.cxx; sourceTree = "<group>"; };
- BE6F3D78192E286B00D6FCC0 /* textline.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textline.cxx; path = ../../../vcl/source/outdev/textline.cxx; sourceTree = "<group>"; };
- BE6F3D79192E286B00D6FCC0 /* transparent.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = transparent.cxx; path = ../../../vcl/source/outdev/transparent.cxx; sourceTree = "<group>"; };
- BE6F3D7A192E286B00D6FCC0 /* wallpaper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = wallpaper.cxx; path = ../../../vcl/source/outdev/wallpaper.cxx; sourceTree = "<group>"; };
- BE6F3D7C192E28B300D6FCC0 /* FilterConfigCache.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = FilterConfigCache.cxx; path = ../../../vcl/source/filter/FilterConfigCache.cxx; sourceTree = "<group>"; };
- BE6F3D7D192E28B300D6FCC0 /* FilterConfigItem.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = FilterConfigItem.cxx; path = ../../../vcl/source/filter/FilterConfigItem.cxx; sourceTree = "<group>"; };
- BE6F3D7E192E28B300D6FCC0 /* graphicfilter.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = graphicfilter.cxx; path = ../../../vcl/source/filter/graphicfilter.cxx; sourceTree = "<group>"; };
- BE6F3D7F192E28B300D6FCC0 /* graphicfilter2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = graphicfilter2.cxx; path = ../../../vcl/source/filter/graphicfilter2.cxx; sourceTree = "<group>"; };
- BE6F3D80192E28B300D6FCC0 /* GraphicNativeMetadata.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = GraphicNativeMetadata.cxx; path = ../../../vcl/source/filter/GraphicNativeMetadata.cxx; sourceTree = "<group>"; };
- BE6F3D81192E28B300D6FCC0 /* GraphicNativeTransform.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = GraphicNativeTransform.cxx; path = ../../../vcl/source/filter/GraphicNativeTransform.cxx; sourceTree = "<group>"; };
- BE6F3D82192E28B300D6FCC0 /* sgfbram.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sgfbram.cxx; path = ../../../vcl/source/filter/sgfbram.cxx; sourceTree = "<group>"; };
- BE6F3D83192E28B300D6FCC0 /* sgvmain.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sgvmain.cxx; path = ../../../vcl/source/filter/sgvmain.cxx; sourceTree = "<group>"; };
- BE6F3D84192E28B300D6FCC0 /* sgvspln.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sgvspln.cxx; path = ../../../vcl/source/filter/sgvspln.cxx; sourceTree = "<group>"; };
- BE6F3D85192E28B300D6FCC0 /* sgvtext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sgvtext.cxx; path = ../../../vcl/source/filter/sgvtext.cxx; sourceTree = "<group>"; };
- BE6F3D87192E28E400D6FCC0 /* emfwr.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = emfwr.cxx; path = ../../../vcl/source/filter/wmf/emfwr.cxx; sourceTree = "<group>"; };
- BE6F3D88192E28E400D6FCC0 /* enhwmf.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = enhwmf.cxx; path = ../../../vcl/source/filter/wmf/enhwmf.cxx; sourceTree = "<group>"; };
- BE6F3D89192E28E400D6FCC0 /* winmtf.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = winmtf.cxx; path = ../../../vcl/source/filter/wmf/winmtf.cxx; sourceTree = "<group>"; };
- BE6F3D8A192E28E400D6FCC0 /* winwmf.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = winwmf.cxx; path = ../../../vcl/source/filter/wmf/winwmf.cxx; sourceTree = "<group>"; };
- BE6F3D8B192E28E400D6FCC0 /* wmf.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = wmf.cxx; path = ../../../vcl/source/filter/wmf/wmf.cxx; sourceTree = "<group>"; };
- BE6F3D8C192E28E400D6FCC0 /* wmfwr.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = wmfwr.cxx; path = ../../../vcl/source/filter/wmf/wmfwr.cxx; sourceTree = "<group>"; };
- BE7C277218D1DDF600C4908C /* acmplwrd.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = acmplwrd.cxx; path = ../../../sw/source/core/doc/acmplwrd.cxx; sourceTree = "<group>"; };
- BE7C277318D1DDF600C4908C /* dbgoutsw.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dbgoutsw.cxx; path = ../../../sw/source/core/doc/dbgoutsw.cxx; sourceTree = "<group>"; };
- BE7C277418D1DDF600C4908C /* doc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = doc.cxx; path = ../../../sw/source/core/doc/doc.cxx; sourceTree = "<group>"; };
- BE7C277518D1DDF600C4908C /* docbasic.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docbasic.cxx; path = ../../../sw/source/core/doc/docbasic.cxx; sourceTree = "<group>"; };
- BE7C277618D1DDF600C4908C /* docbm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docbm.cxx; path = ../../../sw/source/core/doc/docbm.cxx; sourceTree = "<group>"; };
- BE7C277718D1DDF600C4908C /* docchart.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docchart.cxx; path = ../../../sw/source/core/doc/docchart.cxx; sourceTree = "<group>"; };
- BE7C277818D1DDF600C4908C /* doccomp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = doccomp.cxx; path = ../../../sw/source/core/doc/doccomp.cxx; sourceTree = "<group>"; };
- BE7C277918D1DDF600C4908C /* doccorr.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = doccorr.cxx; path = ../../../sw/source/core/doc/doccorr.cxx; sourceTree = "<group>"; };
- BE7C277A18D1DDF600C4908C /* docdde.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docdde.cxx; path = ../../../sw/source/core/doc/docdde.cxx; sourceTree = "<group>"; };
- BE7C277B18D1DDF600C4908C /* docdesc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docdesc.cxx; path = ../../../sw/source/core/doc/docdesc.cxx; sourceTree = "<group>"; };
- BE7C277C18D1DDF600C4908C /* docdraw.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docdraw.cxx; path = ../../../sw/source/core/doc/docdraw.cxx; sourceTree = "<group>"; };
- BE7C277D18D1DDF600C4908C /* docedt.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docedt.cxx; path = ../../../sw/source/core/doc/docedt.cxx; sourceTree = "<group>"; };
- BE7C277E18D1DDF600C4908C /* docfld.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docfld.cxx; path = ../../../sw/source/core/doc/docfld.cxx; sourceTree = "<group>"; };
- BE7C277F18D1DDF600C4908C /* docfly.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docfly.cxx; path = ../../../sw/source/core/doc/docfly.cxx; sourceTree = "<group>"; };
- BE7C278018D1DDF600C4908C /* docfmt.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docfmt.cxx; path = ../../../sw/source/core/doc/docfmt.cxx; sourceTree = "<group>"; };
- BE7C278118D1DDF600C4908C /* docftn.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docftn.cxx; path = ../../../sw/source/core/doc/docftn.cxx; sourceTree = "<group>"; };
- BE7C278218D1DDF600C4908C /* docglbl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docglbl.cxx; path = ../../../sw/source/core/doc/docglbl.cxx; sourceTree = "<group>"; };
- BE7C278318D1DDF600C4908C /* docglos.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docglos.cxx; path = ../../../sw/source/core/doc/docglos.cxx; sourceTree = "<group>"; };
- BE7C278418D1DDF600C4908C /* doclay.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = doclay.cxx; path = ../../../sw/source/core/doc/doclay.cxx; sourceTree = "<group>"; };
- BE7C278518D1DDF600C4908C /* docnew.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docnew.cxx; path = ../../../sw/source/core/doc/docnew.cxx; sourceTree = "<group>"; };
- BE7C278618D1DDF600C4908C /* docnum.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docnum.cxx; path = ../../../sw/source/core/doc/docnum.cxx; sourceTree = "<group>"; };
- BE7C278718D1DDF600C4908C /* docredln.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docredln.cxx; path = ../../../sw/source/core/doc/docredln.cxx; sourceTree = "<group>"; };
- BE7C278818D1DDF600C4908C /* docruby.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docruby.cxx; path = ../../../sw/source/core/doc/docruby.cxx; sourceTree = "<group>"; };
- BE7C278918D1DDF600C4908C /* docsort.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docsort.cxx; path = ../../../sw/source/core/doc/docsort.cxx; sourceTree = "<group>"; };
- BE7C278A18D1DDF600C4908C /* docstat.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docstat.cxx; path = ../../../sw/source/core/doc/docstat.cxx; sourceTree = "<group>"; };
- BE7C278B18D1DDF600C4908C /* doctxm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = doctxm.cxx; path = ../../../sw/source/core/doc/doctxm.cxx; sourceTree = "<group>"; };
- BE7C278C18D1DDF600C4908C /* docxforms.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docxforms.cxx; path = ../../../sw/source/core/doc/docxforms.cxx; sourceTree = "<group>"; };
- BE7C278D18D1DDF600C4908C /* extinput.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = extinput.cxx; path = ../../../sw/source/core/doc/extinput.cxx; sourceTree = "<group>"; };
- BE7C278E18D1DDF600C4908C /* fmtcol.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fmtcol.cxx; path = ../../../sw/source/core/doc/fmtcol.cxx; sourceTree = "<group>"; };
- BE7C278F18D1DDF600C4908C /* ftnidx.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ftnidx.cxx; path = ../../../sw/source/core/doc/ftnidx.cxx; sourceTree = "<group>"; };
- BE7C279018D1DDF600C4908C /* gctable.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gctable.cxx; path = ../../../sw/source/core/doc/gctable.cxx; sourceTree = "<group>"; };
- BE7C279118D1DDF600C4908C /* htmltbl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = htmltbl.cxx; path = ../../../sw/source/core/doc/htmltbl.cxx; sourceTree = "<group>"; };
- BE7C279218D1DDF600C4908C /* lineinfo.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = lineinfo.cxx; path = ../../../sw/source/core/doc/lineinfo.cxx; sourceTree = "<group>"; };
- BE7C279318D1DDF600C4908C /* list.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = list.cxx; path = ../../../sw/source/core/doc/list.cxx; sourceTree = "<group>"; };
- BE7C279418D1DDF600C4908C /* notxtfrm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = notxtfrm.cxx; path = ../../../sw/source/core/doc/notxtfrm.cxx; sourceTree = "<group>"; };
- BE7C279518D1DDF600C4908C /* number.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = number.cxx; path = ../../../sw/source/core/doc/number.cxx; sourceTree = "<group>"; };
- BE7C279618D1DDF600C4908C /* poolfmt.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = poolfmt.cxx; path = ../../../sw/source/core/doc/poolfmt.cxx; sourceTree = "<group>"; };
- BE7C279718D1DDF600C4908C /* sortopt.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sortopt.cxx; path = ../../../sw/source/core/doc/sortopt.cxx; sourceTree = "<group>"; };
- BE7C279818D1DDF600C4908C /* swserv.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = swserv.cxx; path = ../../../sw/source/core/doc/swserv.cxx; sourceTree = "<group>"; };
- BE7C279918D1DDF600C4908C /* swstylemanager.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = swstylemanager.cxx; path = ../../../sw/source/core/doc/swstylemanager.cxx; sourceTree = "<group>"; };
- BE7C279A18D1DDF600C4908C /* SwStyleNameMapper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = SwStyleNameMapper.cxx; path = ../../../sw/source/core/doc/SwStyleNameMapper.cxx; sourceTree = "<group>"; };
- BE7C279B18D1DDF600C4908C /* tblafmt.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tblafmt.cxx; path = ../../../sw/source/core/doc/tblafmt.cxx; sourceTree = "<group>"; };
- BE7C279C18D1DDF600C4908C /* tblcpy.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tblcpy.cxx; path = ../../../sw/source/core/doc/tblcpy.cxx; sourceTree = "<group>"; };
- BE7C279D18D1DDF600C4908C /* tblrwcl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tblrwcl.cxx; path = ../../../sw/source/core/doc/tblrwcl.cxx; sourceTree = "<group>"; };
- BE7C279E18D1DDF600C4908C /* visiturl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = visiturl.cxx; path = ../../../sw/source/core/doc/visiturl.cxx; sourceTree = "<group>"; };
+ BE03BF9118F9648F00620DC7 /* udata.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = udata.cpp; path = ../../ioswork/UnpackedTarball/icu/source/common/udata.cpp; sourceTree = SOURCE_ROOT; };
+ BE03BF9218F9A7CC00620DC7 /* icudt58l.dat */ = {isa = PBXFileReference; lastKnownFileType = file; name = icudt58l.dat; path = ../../ioswork/UnpackedTarball/icu/source/data/in/icudt58l.dat; sourceTree = SOURCE_ROOT; };
+ BE03BF9518FC1A1C00620DC7 /* xdictionary.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xdictionary.cxx; path = ../../../i18npool/source/breakiterator/xdictionary.cxx; sourceTree = SOURCE_ROOT; };
+ BE0898E81860D42B0021A679 /* brand.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = brand.cxx; path = ../../../vcl/source/app/brand.cxx; sourceTree = SOURCE_ROOT; };
+ BE0898E91860D42B0021A679 /* dbggui.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dbggui.cxx; path = ../../../vcl/source/app/dbggui.cxx; sourceTree = SOURCE_ROOT; };
+ BE0898EA1860D42B0021A679 /* dndhelp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dndhelp.cxx; path = ../../../vcl/source/app/dndhelp.cxx; sourceTree = SOURCE_ROOT; };
+ BE0898EB1860D42B0021A679 /* help.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = help.cxx; path = ../../../vcl/source/app/help.cxx; sourceTree = SOURCE_ROOT; };
+ BE0898EC1860D42B0021A679 /* i18nhelp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = i18nhelp.cxx; path = ../../../vcl/source/app/i18nhelp.cxx; sourceTree = SOURCE_ROOT; };
+ BE0898EE1860D42B0021A679 /* salvtables.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = salvtables.cxx; path = ../../../vcl/source/app/salvtables.cxx; sourceTree = SOURCE_ROOT; };
+ BE0898EF1860D42B0021A679 /* session.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = session.cxx; path = ../../../vcl/source/app/session.cxx; sourceTree = SOURCE_ROOT; };
+ BE0898F01860D42B0021A679 /* settings.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = settings.cxx; path = ../../../vcl/source/app/settings.cxx; sourceTree = SOURCE_ROOT; };
+ BE0898F21860D42B0021A679 /* sound.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sound.cxx; path = ../../../vcl/source/app/sound.cxx; sourceTree = SOURCE_ROOT; };
+ BE0898F31860D42B0021A679 /* stdtext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = stdtext.cxx; path = ../../../vcl/source/app/stdtext.cxx; sourceTree = SOURCE_ROOT; };
+ BE0898F41860D42B0021A679 /* svapp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svapp.cxx; path = ../../../vcl/source/app/svapp.cxx; sourceTree = SOURCE_ROOT; };
+ BE0898F51860D42B0021A679 /* svdata.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdata.cxx; path = ../../../vcl/source/app/svdata.cxx; sourceTree = SOURCE_ROOT; };
+ BE0898F61860D42B0021A679 /* svmain.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svmain.cxx; path = ../../../vcl/source/app/svmain.cxx; sourceTree = SOURCE_ROOT; };
+ BE0898F71860D42B0021A679 /* svmainhook.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svmainhook.cxx; path = ../../../vcl/source/app/svmainhook.cxx; sourceTree = SOURCE_ROOT; };
+ BE0898F81860D42B0021A679 /* timer.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = timer.cxx; path = ../../../vcl/source/app/timer.cxx; sourceTree = SOURCE_ROOT; };
+ BE0898F91860D42B0021A679 /* unohelp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = unohelp.cxx; path = ../../../vcl/source/app/unohelp.cxx; sourceTree = SOURCE_ROOT; };
+ BE0898FA1860D42B0021A679 /* unohelp2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = unohelp2.cxx; path = ../../../vcl/source/app/unohelp2.cxx; sourceTree = SOURCE_ROOT; };
+ BE0898FB1860D42B0021A679 /* vclevent.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vclevent.cxx; path = ../../../vcl/source/app/vclevent.cxx; sourceTree = SOURCE_ROOT; };
+ BE0899141860F6450021A679 /* ctfonts.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ctfonts.cxx; path = ../../../vcl/quartz/ctfonts.cxx; sourceTree = SOURCE_ROOT; };
+ BE0899161860F6450021A679 /* salbmp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = salbmp.cxx; path = ../../../vcl/quartz/salbmp.cxx; sourceTree = SOURCE_ROOT; };
+ BE0899171860F6450021A679 /* salgdi.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = salgdi.cxx; path = ../../../vcl/quartz/salgdi.cxx; sourceTree = SOURCE_ROOT; };
+ BE0899181860F6450021A679 /* salgdicommon.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = salgdicommon.cxx; path = ../../../vcl/quartz/salgdicommon.cxx; sourceTree = SOURCE_ROOT; };
+ BE08991B1860F6450021A679 /* salvd.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = salvd.cxx; path = ../../../vcl/quartz/salvd.cxx; sourceTree = SOURCE_ROOT; };
+ BE08991C1860F6450021A679 /* utils.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = utils.cxx; path = ../../../vcl/quartz/utils.cxx; sourceTree = SOURCE_ROOT; };
+ BE35B53918868EFD001B7439 /* dummies.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dummies.cxx; path = ../../../vcl/ios/dummies.cxx; sourceTree = SOURCE_ROOT; };
+ BE35B53A18868EFD001B7439 /* iosinst.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = iosinst.cxx; path = ../../../vcl/ios/iosinst.cxx; sourceTree = SOURCE_ROOT; };
+ BE35B53C18869D69001B7439 /* svpbmp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svpbmp.cxx; path = ../../../vcl/headless/svpbmp.cxx; sourceTree = SOURCE_ROOT; };
+ BE35B53D18869D69001B7439 /* svpdata.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svpdata.cxx; path = ../../../vcl/headless/svpdata.cxx; sourceTree = SOURCE_ROOT; };
+ BE35B53E18869D69001B7439 /* svpdummies.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svpdummies.cxx; path = ../../../vcl/headless/svpdummies.cxx; sourceTree = SOURCE_ROOT; };
+ BE35B53F18869D69001B7439 /* svpframe.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svpframe.cxx; path = ../../../vcl/headless/svpframe.cxx; sourceTree = SOURCE_ROOT; };
+ BE35B54018869D69001B7439 /* svpgdi.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svpgdi.cxx; path = ../../../vcl/headless/svpgdi.cxx; sourceTree = SOURCE_ROOT; };
+ BE35B54118869D69001B7439 /* svpinst.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svpinst.cxx; path = ../../../vcl/headless/svpinst.cxx; sourceTree = SOURCE_ROOT; };
+ BE35B54218869D69001B7439 /* svpvd.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svpvd.cxx; path = ../../../vcl/headless/svpvd.cxx; sourceTree = SOURCE_ROOT; };
+ BE35B5441886C50A001B7439 /* alpha.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = alpha.cxx; path = ../../../vcl/source/gdi/alpha.cxx; sourceTree = SOURCE_ROOT; };
+ BE35B5451886C50A001B7439 /* animate.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = animate.cxx; path = ../../../vcl/source/gdi/animate.cxx; sourceTree = SOURCE_ROOT; };
+ BE35B5461886C50A001B7439 /* base14.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = base14.cxx; path = ../../../vcl/source/gdi/base14.cxx; sourceTree = SOURCE_ROOT; };
+ BE35B5471886C50A001B7439 /* bitmap.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bitmap.cxx; path = ../../../vcl/source/gdi/bitmap.cxx; sourceTree = SOURCE_ROOT; };
+ BE35B5481886C50A001B7439 /* bitmap3.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bitmap3.cxx; path = ../../../vcl/source/gdi/bitmap3.cxx; sourceTree = SOURCE_ROOT; };
+ BE35B5491886C50A001B7439 /* bitmap4.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bitmap4.cxx; path = ../../../vcl/source/gdi/bitmap4.cxx; sourceTree = SOURCE_ROOT; };
+ BE35B54A1886C50A001B7439 /* bitmapex.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bitmapex.cxx; path = ../../../vcl/source/gdi/bitmapex.cxx; sourceTree = SOURCE_ROOT; };
+ BE35B54B1886C50A001B7439 /* bmpacc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bmpacc.cxx; path = ../../../vcl/source/gdi/bmpacc.cxx; sourceTree = SOURCE_ROOT; };
+ BE35B54C1886C50A001B7439 /* bmpacc2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bmpacc2.cxx; path = ../../../vcl/source/gdi/bmpacc2.cxx; sourceTree = SOURCE_ROOT; };
+ BE35B54D1886C50A001B7439 /* bmpacc3.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bmpacc3.cxx; path = ../../../vcl/source/gdi/bmpacc3.cxx; sourceTree = SOURCE_ROOT; };
+ BE35B54E1886C50A001B7439 /* bmpfast.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bmpfast.cxx; path = ../../../vcl/source/gdi/bmpfast.cxx; sourceTree = SOURCE_ROOT; };
+ BE35B54F1886C50A001B7439 /* configsettings.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = configsettings.cxx; path = ../../../vcl/source/gdi/configsettings.cxx; sourceTree = SOURCE_ROOT; };
+ BE35B5501886C50A001B7439 /* cvtgrf.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cvtgrf.cxx; path = ../../../vcl/source/gdi/cvtgrf.cxx; sourceTree = SOURCE_ROOT; };
+ BE35B5521886C50A001B7439 /* dibtools.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dibtools.cxx; path = ../../../vcl/source/gdi/dibtools.cxx; sourceTree = SOURCE_ROOT; };
+ BE35B5531886C50A001B7439 /* embeddedfontshelper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = embeddedfontshelper.cxx; path = ../../../vcl/source/gdi/embeddedfontshelper.cxx; sourceTree = SOURCE_ROOT; };
+ BE35B5541886C50A001B7439 /* extoutdevdata.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = extoutdevdata.cxx; path = ../../../vcl/source/gdi/extoutdevdata.cxx; sourceTree = SOURCE_ROOT; };
+ BE35B5561886C50A001B7439 /* gdimetafiletools.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gdimetafiletools.cxx; path = ../../../vcl/source/gdi/gdimetafiletools.cxx; sourceTree = SOURCE_ROOT; };
+ BE35B5571886C50A001B7439 /* gdimtf.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gdimtf.cxx; path = ../../../vcl/source/gdi/gdimtf.cxx; sourceTree = SOURCE_ROOT; };
+ BE35B5581886C50A001B7439 /* gfxlink.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gfxlink.cxx; path = ../../../vcl/source/gdi/gfxlink.cxx; sourceTree = SOURCE_ROOT; };
+ BE35B5591886C50A001B7439 /* gradient.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gradient.cxx; path = ../../../vcl/source/gdi/gradient.cxx; sourceTree = SOURCE_ROOT; };
+ BE35B55A1886C50A001B7439 /* graph.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = graph.cxx; path = ../../../vcl/source/gdi/graph.cxx; sourceTree = SOURCE_ROOT; };
+ BE35B55B1886C50A001B7439 /* graphictools.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = graphictools.cxx; path = ../../../vcl/source/gdi/graphictools.cxx; sourceTree = SOURCE_ROOT; };
+ BE35B55C1886C50A001B7439 /* hatch.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = hatch.cxx; path = ../../../vcl/source/gdi/hatch.cxx; sourceTree = SOURCE_ROOT; };
+ BE35B55F1886C50A001B7439 /* impanmvw.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = impanmvw.cxx; path = ../../../vcl/source/gdi/impanmvw.cxx; sourceTree = SOURCE_ROOT; };
+ BE35B5601886C50A001B7439 /* impbmp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = impbmp.cxx; path = ../../../vcl/source/gdi/impbmp.cxx; sourceTree = SOURCE_ROOT; };
+ BE35B5621886C50A001B7439 /* impgraph.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = impgraph.cxx; path = ../../../vcl/source/gdi/impgraph.cxx; sourceTree = SOURCE_ROOT; };
+ BE35B5651886C50A001B7439 /* impvect.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = impvect.cxx; path = ../../../vcl/source/gdi/impvect.cxx; sourceTree = SOURCE_ROOT; };
+ BE35B5661886C50A001B7439 /* jobset.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = jobset.cxx; path = ../../../vcl/source/gdi/jobset.cxx; sourceTree = SOURCE_ROOT; };
+ BE35B5671886C50A001B7439 /* lineinfo.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = lineinfo.cxx; path = ../../../vcl/source/gdi/lineinfo.cxx; sourceTree = SOURCE_ROOT; };
+ BE35B5681886C50A001B7439 /* mapmod.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = mapmod.cxx; path = ../../../vcl/source/gdi/mapmod.cxx; sourceTree = SOURCE_ROOT; };
+ BE35B5691886C50A001B7439 /* metaact.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = metaact.cxx; path = ../../../vcl/source/gdi/metaact.cxx; sourceTree = SOURCE_ROOT; };
+ BE35B56B1886C50A001B7439 /* octree.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = octree.cxx; path = ../../../vcl/source/gdi/octree.cxx; sourceTree = SOURCE_ROOT; };
+ BE35B56C1886C50A001B7439 /* oldprintadaptor.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = oldprintadaptor.cxx; path = ../../../vcl/source/gdi/oldprintadaptor.cxx; sourceTree = SOURCE_ROOT; };
+ BE35B5751886C50A001B7439 /* pdfextoutdevdata.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pdfextoutdevdata.cxx; path = ../../../vcl/source/gdi/pdfextoutdevdata.cxx; sourceTree = SOURCE_ROOT; };
+ BE35B5761886C50A001B7439 /* pdffontcache.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pdffontcache.cxx; path = ../../../vcl/source/gdi/pdffontcache.cxx; sourceTree = SOURCE_ROOT; };
+ BE35B5771886C50A001B7439 /* pdfwriter_impl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pdfwriter_impl.cxx; path = ../../../vcl/source/gdi/pdfwriter_impl.cxx; sourceTree = SOURCE_ROOT; };
+ BE35B5781886C50A001B7439 /* pdfwriter_impl2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pdfwriter_impl2.cxx; path = ../../../vcl/source/gdi/pdfwriter_impl2.cxx; sourceTree = SOURCE_ROOT; };
+ BE35B5791886C50A001B7439 /* pdfwriter.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pdfwriter.cxx; path = ../../../vcl/source/gdi/pdfwriter.cxx; sourceTree = SOURCE_ROOT; };
+ BE35B57A1886C50A001B7439 /* pngread.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pngread.cxx; path = ../../../vcl/source/gdi/pngread.cxx; sourceTree = SOURCE_ROOT; };
+ BE35B57B1886C50A001B7439 /* pngwrite.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pngwrite.cxx; path = ../../../vcl/source/gdi/pngwrite.cxx; sourceTree = SOURCE_ROOT; };
+ BE35B57C1886C50A001B7439 /* print.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = print.cxx; path = ../../../vcl/source/gdi/print.cxx; sourceTree = SOURCE_ROOT; };
+ BE35B57D1886C50A001B7439 /* print2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = print2.cxx; path = ../../../vcl/source/gdi/print2.cxx; sourceTree = SOURCE_ROOT; };
+ BE35B57E1886C50A001B7439 /* print3.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = print3.cxx; path = ../../../vcl/source/gdi/print3.cxx; sourceTree = SOURCE_ROOT; };
+ BE35B57F1886C50A001B7439 /* regband.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = regband.cxx; path = ../../../vcl/source/gdi/regband.cxx; sourceTree = SOURCE_ROOT; };
+ BE35B5801886C50A001B7439 /* region.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = region.cxx; path = ../../../vcl/source/gdi/region.cxx; sourceTree = SOURCE_ROOT; };
+ BE35B5811886C50A001B7439 /* regionband.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = regionband.cxx; path = ../../../vcl/source/gdi/regionband.cxx; sourceTree = SOURCE_ROOT; };
+ BE35B5821886C50A001B7439 /* salgdilayout.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = salgdilayout.cxx; path = ../../../vcl/source/gdi/salgdilayout.cxx; sourceTree = SOURCE_ROOT; };
+ BE35B5831886C50A001B7439 /* sallayout.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sallayout.cxx; path = ../../../vcl/source/gdi/sallayout.cxx; sourceTree = SOURCE_ROOT; };
+ BE35B5841886C50A001B7439 /* salmisc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = salmisc.cxx; path = ../../../vcl/source/gdi/salmisc.cxx; sourceTree = SOURCE_ROOT; };
+ BE35B5851886C50A001B7439 /* salnativewidgets-none.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "salnativewidgets-none.cxx"; path = "../../../vcl/source/gdi/salnativewidgets-none.cxx"; sourceTree = SOURCE_ROOT; };
+ BE35B5861886C50A001B7439 /* svgdata.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svgdata.cxx; path = ../../../vcl/source/gdi/svgdata.cxx; sourceTree = SOURCE_ROOT; };
+ BE35B5871886C50A001B7439 /* textlayout.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textlayout.cxx; path = ../../../vcl/source/gdi/textlayout.cxx; sourceTree = SOURCE_ROOT; };
+ BE35B5881886C50A001B7439 /* virdev.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = virdev.cxx; path = ../../../vcl/source/gdi/virdev.cxx; sourceTree = SOURCE_ROOT; };
+ BE35B5891886C50A001B7439 /* wall.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = wall.cxx; path = ../../../vcl/source/gdi/wall.cxx; sourceTree = SOURCE_ROOT; };
+ BE35B58B188FFA88001B7439 /* access_control.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = access_control.cxx; path = ../../../cppuhelper/source/access_control.cxx; sourceTree = SOURCE_ROOT; };
+ BE35B58C188FFA88001B7439 /* bootstrap.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bootstrap.cxx; path = ../../../cppuhelper/source/bootstrap.cxx; sourceTree = SOURCE_ROOT; };
+ BE35B58D188FFA88001B7439 /* compat.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = compat.cxx; path = ../../../cppuhelper/source/compat.cxx; sourceTree = SOURCE_ROOT; };
+ BE35B58E188FFA88001B7439 /* component_context.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = component_context.cxx; path = ../../../cppuhelper/source/component_context.cxx; sourceTree = SOURCE_ROOT; };
+ BE35B58F188FFA88001B7439 /* component.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = component.cxx; path = ../../../cppuhelper/source/component.cxx; sourceTree = SOURCE_ROOT; };
+ BE35B590188FFA88001B7439 /* defaultbootstrap.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = defaultbootstrap.cxx; path = ../../../cppuhelper/source/defaultbootstrap.cxx; sourceTree = SOURCE_ROOT; };
+ BE35B591188FFA88001B7439 /* exc_thrower.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = exc_thrower.cxx; path = ../../../cppuhelper/source/exc_thrower.cxx; sourceTree = SOURCE_ROOT; };
+ BE35B592188FFA88001B7439 /* factory.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = factory.cxx; path = ../../../cppuhelper/source/factory.cxx; sourceTree = SOURCE_ROOT; };
+ BE35B593188FFA88001B7439 /* findsofficepath.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = findsofficepath.c; path = ../../../cppuhelper/source/findsofficepath.c; sourceTree = SOURCE_ROOT; };
+ BE35B594188FFA88001B7439 /* implbase_ex.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = implbase_ex.cxx; path = ../../../cppuhelper/source/implbase_ex.cxx; sourceTree = SOURCE_ROOT; };
+ BE35B595188FFA88001B7439 /* implbase.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = implbase.cxx; path = ../../../cppuhelper/source/implbase.cxx; sourceTree = SOURCE_ROOT; };
+ BE35B596188FFA88001B7439 /* implementationentry.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = implementationentry.cxx; path = ../../../cppuhelper/source/implementationentry.cxx; sourceTree = SOURCE_ROOT; };
+ BE35B597188FFA88001B7439 /* interfacecontainer.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = interfacecontainer.cxx; path = ../../../cppuhelper/source/interfacecontainer.cxx; sourceTree = SOURCE_ROOT; };
+ BE35B598188FFA88001B7439 /* macro_expander.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = macro_expander.cxx; path = ../../../cppuhelper/source/macro_expander.cxx; sourceTree = SOURCE_ROOT; };
+ BE35B599188FFA88001B7439 /* paths.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = paths.cxx; path = ../../../cppuhelper/source/paths.cxx; sourceTree = SOURCE_ROOT; };
+ BE35B59A188FFA88001B7439 /* propertysetmixin.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = propertysetmixin.cxx; path = ../../../cppuhelper/source/propertysetmixin.cxx; sourceTree = SOURCE_ROOT; };
+ BE35B59B188FFA88001B7439 /* propshlp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = propshlp.cxx; path = ../../../cppuhelper/source/propshlp.cxx; sourceTree = SOURCE_ROOT; };
+ BE35B59C188FFA88001B7439 /* servicemanager.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = servicemanager.cxx; path = ../../../cppuhelper/source/servicemanager.cxx; sourceTree = SOURCE_ROOT; };
+ BE35B59D188FFA88001B7439 /* shlib.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = shlib.cxx; path = ../../../cppuhelper/source/shlib.cxx; sourceTree = SOURCE_ROOT; };
+ BE35B59E188FFA88001B7439 /* supportsservice.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = supportsservice.cxx; path = ../../../cppuhelper/source/supportsservice.cxx; sourceTree = SOURCE_ROOT; };
+ BE35B59F188FFA88001B7439 /* tdmgr.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tdmgr.cxx; path = ../../../cppuhelper/source/tdmgr.cxx; sourceTree = SOURCE_ROOT; };
+ BE35B5A0188FFA88001B7439 /* typemanager.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = typemanager.cxx; path = ../../../cppuhelper/source/typemanager.cxx; sourceTree = SOURCE_ROOT; };
+ BE35B5A1188FFA88001B7439 /* typeprovider.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = typeprovider.cxx; path = ../../../cppuhelper/source/typeprovider.cxx; sourceTree = SOURCE_ROOT; };
+ BE35B5A2188FFA88001B7439 /* unourl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = unourl.cxx; path = ../../../cppuhelper/source/unourl.cxx; sourceTree = SOURCE_ROOT; };
+ BE35B5A3188FFA88001B7439 /* weak.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = weak.cxx; path = ../../../cppuhelper/source/weak.cxx; sourceTree = SOURCE_ROOT; };
+ BE35B5A71890520E001B7439 /* objface.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = objface.cxx; path = ../../../sfx2/source/control/objface.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B06B18D87CC600950228 /* DocumentTableViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = DocumentTableViewController.h; path = TiledLibreOffice/DocumentTableViewController.h; sourceTree = SOURCE_ROOT; };
+ BE55B06C18D87CC600950228 /* DocumentTableViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = DocumentTableViewController.m; path = TiledLibreOffice/DocumentTableViewController.m; sourceTree = SOURCE_ROOT; };
+ BE55B06F18D96FB000950228 /* displayinfo.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = displayinfo.cxx; path = ../../../svx/source/sdr/contact/displayinfo.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B07018D96FB000950228 /* objectcontact.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = objectcontact.cxx; path = ../../../svx/source/sdr/contact/objectcontact.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B07118D96FB000950228 /* objectcontactofobjlistpainter.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = objectcontactofobjlistpainter.cxx; path = ../../../svx/source/sdr/contact/objectcontactofobjlistpainter.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B07218D96FB000950228 /* objectcontactofpageview.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = objectcontactofpageview.cxx; path = ../../../svx/source/sdr/contact/objectcontactofpageview.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B07318D96FB000950228 /* sdrmediawindow.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sdrmediawindow.cxx; path = ../../../svx/source/sdr/contact/sdrmediawindow.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B07418D96FB000950228 /* viewcontact.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewcontact.cxx; path = ../../../svx/source/sdr/contact/viewcontact.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B07518D96FB000950228 /* viewcontactofe3d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewcontactofe3d.cxx; path = ../../../svx/source/sdr/contact/viewcontactofe3d.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B07618D96FB000950228 /* viewcontactofe3dcube.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewcontactofe3dcube.cxx; path = ../../../svx/source/sdr/contact/viewcontactofe3dcube.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B07718D96FB000950228 /* viewcontactofe3dextrude.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewcontactofe3dextrude.cxx; path = ../../../svx/source/sdr/contact/viewcontactofe3dextrude.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B07818D96FB000950228 /* viewcontactofe3dlathe.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewcontactofe3dlathe.cxx; path = ../../../svx/source/sdr/contact/viewcontactofe3dlathe.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B07918D96FB000950228 /* viewcontactofe3dpolygon.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewcontactofe3dpolygon.cxx; path = ../../../svx/source/sdr/contact/viewcontactofe3dpolygon.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B07A18D96FB000950228 /* viewcontactofe3dscene.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewcontactofe3dscene.cxx; path = ../../../svx/source/sdr/contact/viewcontactofe3dscene.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B07B18D96FB000950228 /* viewcontactofe3dsphere.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewcontactofe3dsphere.cxx; path = ../../../svx/source/sdr/contact/viewcontactofe3dsphere.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B07C18D96FB000950228 /* viewcontactofgraphic.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewcontactofgraphic.cxx; path = ../../../svx/source/sdr/contact/viewcontactofgraphic.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B07D18D96FB000950228 /* viewcontactofgroup.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewcontactofgroup.cxx; path = ../../../svx/source/sdr/contact/viewcontactofgroup.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B07E18D96FB000950228 /* viewcontactofmasterpagedescriptor.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewcontactofmasterpagedescriptor.cxx; path = ../../../svx/source/sdr/contact/viewcontactofmasterpagedescriptor.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B08018D96FB000950228 /* viewcontactofpageobj.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewcontactofpageobj.cxx; path = ../../../svx/source/sdr/contact/viewcontactofpageobj.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B08118D96FB000950228 /* viewcontactofsdrcaptionobj.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewcontactofsdrcaptionobj.cxx; path = ../../../svx/source/sdr/contact/viewcontactofsdrcaptionobj.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B08218D96FB000950228 /* viewcontactofsdrcircobj.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewcontactofsdrcircobj.cxx; path = ../../../svx/source/sdr/contact/viewcontactofsdrcircobj.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B08318D96FB000950228 /* viewcontactofsdredgeobj.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewcontactofsdredgeobj.cxx; path = ../../../svx/source/sdr/contact/viewcontactofsdredgeobj.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B08418D96FB000950228 /* viewcontactofsdrmeasureobj.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewcontactofsdrmeasureobj.cxx; path = ../../../svx/source/sdr/contact/viewcontactofsdrmeasureobj.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B08518D96FB000950228 /* viewcontactofsdrmediaobj.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewcontactofsdrmediaobj.cxx; path = ../../../svx/source/sdr/contact/viewcontactofsdrmediaobj.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B08618D96FB000950228 /* viewcontactofsdrobj.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewcontactofsdrobj.cxx; path = ../../../svx/source/sdr/contact/viewcontactofsdrobj.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B08718D96FB000950228 /* viewcontactofsdrobjcustomshape.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewcontactofsdrobjcustomshape.cxx; path = ../../../svx/source/sdr/contact/viewcontactofsdrobjcustomshape.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B08818D96FB000950228 /* viewcontactofsdrole2obj.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewcontactofsdrole2obj.cxx; path = ../../../svx/source/sdr/contact/viewcontactofsdrole2obj.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B08918D96FB000950228 /* viewcontactofsdrpage.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewcontactofsdrpage.cxx; path = ../../../svx/source/sdr/contact/viewcontactofsdrpage.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B08A18D96FB000950228 /* viewcontactofsdrpathobj.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewcontactofsdrpathobj.cxx; path = ../../../svx/source/sdr/contact/viewcontactofsdrpathobj.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B08B18D96FB000950228 /* viewcontactofsdrrectobj.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewcontactofsdrrectobj.cxx; path = ../../../svx/source/sdr/contact/viewcontactofsdrrectobj.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B08C18D96FB000950228 /* viewcontactoftextobj.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewcontactoftextobj.cxx; path = ../../../svx/source/sdr/contact/viewcontactoftextobj.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B08D18D96FB000950228 /* viewcontactofunocontrol.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewcontactofunocontrol.cxx; path = ../../../svx/source/sdr/contact/viewcontactofunocontrol.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B08E18D96FB000950228 /* viewcontactofvirtobj.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewcontactofvirtobj.cxx; path = ../../../svx/source/sdr/contact/viewcontactofvirtobj.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B08F18D96FB000950228 /* viewobjectcontact.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewobjectcontact.cxx; path = ../../../svx/source/sdr/contact/viewobjectcontact.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B09018D96FB000950228 /* viewobjectcontactofe3d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewobjectcontactofe3d.cxx; path = ../../../svx/source/sdr/contact/viewobjectcontactofe3d.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B09118D96FB000950228 /* viewobjectcontactofe3dscene.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewobjectcontactofe3dscene.cxx; path = ../../../svx/source/sdr/contact/viewobjectcontactofe3dscene.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B09218D96FB000950228 /* viewobjectcontactofgraphic.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewobjectcontactofgraphic.cxx; path = ../../../svx/source/sdr/contact/viewobjectcontactofgraphic.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B09318D96FB000950228 /* viewobjectcontactofgroup.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewobjectcontactofgroup.cxx; path = ../../../svx/source/sdr/contact/viewobjectcontactofgroup.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B09418D96FB000950228 /* viewobjectcontactofmasterpagedescriptor.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewobjectcontactofmasterpagedescriptor.cxx; path = ../../../svx/source/sdr/contact/viewobjectcontactofmasterpagedescriptor.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B09518D96FB000950228 /* viewobjectcontactofpageobj.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewobjectcontactofpageobj.cxx; path = ../../../svx/source/sdr/contact/viewobjectcontactofpageobj.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B09618D96FB000950228 /* viewobjectcontactofsdrmediaobj.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewobjectcontactofsdrmediaobj.cxx; path = ../../../svx/source/sdr/contact/viewobjectcontactofsdrmediaobj.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B09718D96FB000950228 /* viewobjectcontactofsdrobj.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewobjectcontactofsdrobj.cxx; path = ../../../svx/source/sdr/contact/viewobjectcontactofsdrobj.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B09818D96FB000950228 /* viewobjectcontactofsdrole2obj.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewobjectcontactofsdrole2obj.cxx; path = ../../../svx/source/sdr/contact/viewobjectcontactofsdrole2obj.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B09918D96FB000950228 /* viewobjectcontactofsdrpage.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewobjectcontactofsdrpage.cxx; path = ../../../svx/source/sdr/contact/viewobjectcontactofsdrpage.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B09A18D96FB000950228 /* viewobjectcontactofunocontrol.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewobjectcontactofunocontrol.cxx; path = ../../../svx/source/sdr/contact/viewobjectcontactofunocontrol.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B09B18D96FB000950228 /* viewobjectcontactredirector.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewobjectcontactredirector.cxx; path = ../../../svx/source/sdr/contact/viewobjectcontactredirector.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B09D18D97E2700950228 /* anchoreddrawobject.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = anchoreddrawobject.cxx; path = ../../../sw/source/core/layout/anchoreddrawobject.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B09E18D97E2700950228 /* anchoredobject.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = anchoredobject.cxx; path = ../../../sw/source/core/layout/anchoredobject.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B09F18D97E2700950228 /* atrfrm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = atrfrm.cxx; path = ../../../sw/source/core/layout/atrfrm.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0A018D97E2700950228 /* calcmove.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = calcmove.cxx; path = ../../../sw/source/core/layout/calcmove.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0A118D97E2700950228 /* colfrm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = colfrm.cxx; path = ../../../sw/source/core/layout/colfrm.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0A218D97E2700950228 /* dbg_lay.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dbg_lay.cxx; path = ../../../sw/source/core/layout/dbg_lay.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0A318D97E2700950228 /* dumpfilter.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dumpfilter.cxx; path = ../../../sw/source/core/layout/dumpfilter.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0A418D97E2700950228 /* findfrm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = findfrm.cxx; path = ../../../sw/source/core/layout/findfrm.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0A518D97E2700950228 /* flowfrm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = flowfrm.cxx; path = ../../../sw/source/core/layout/flowfrm.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0A618D97E2700950228 /* fly.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fly.cxx; path = ../../../sw/source/core/layout/fly.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0A718D97E2700950228 /* flycnt.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = flycnt.cxx; path = ../../../sw/source/core/layout/flycnt.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0A818D97E2700950228 /* flyincnt.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = flyincnt.cxx; path = ../../../sw/source/core/layout/flyincnt.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0A918D97E2700950228 /* flylay.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = flylay.cxx; path = ../../../sw/source/core/layout/flylay.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0AA18D97E2700950228 /* flypos.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = flypos.cxx; path = ../../../sw/source/core/layout/flypos.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0AB18D97E2700950228 /* frmtool.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = frmtool.cxx; path = ../../../sw/source/core/layout/frmtool.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0AC18D97E2700950228 /* ftnfrm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ftnfrm.cxx; path = ../../../sw/source/core/layout/ftnfrm.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0AD18D97E2700950228 /* hffrm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = hffrm.cxx; path = ../../../sw/source/core/layout/hffrm.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0AE18D97E2700950228 /* layact.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = layact.cxx; path = ../../../sw/source/core/layout/layact.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0AF18D97E2700950228 /* laycache.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = laycache.cxx; path = ../../../sw/source/core/layout/laycache.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0B018D97E2700950228 /* layouter.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = layouter.cxx; path = ../../../sw/source/core/layout/layouter.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0B118D97E2700950228 /* movedfwdfrmsbyobjpos.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = movedfwdfrmsbyobjpos.cxx; path = ../../../sw/source/core/layout/movedfwdfrmsbyobjpos.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0B218D97E2700950228 /* newfrm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = newfrm.cxx; path = ../../../sw/source/core/layout/newfrm.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0B318D97E2700950228 /* objectformatter.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = objectformatter.cxx; path = ../../../sw/source/core/layout/objectformatter.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0B418D97E2700950228 /* objectformatterlayfrm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = objectformatterlayfrm.cxx; path = ../../../sw/source/core/layout/objectformatterlayfrm.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0B518D97E2700950228 /* objectformattertxtfrm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = objectformattertxtfrm.cxx; path = ../../../sw/source/core/layout/objectformattertxtfrm.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0B618D97E2700950228 /* objstmpconsiderwrapinfl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = objstmpconsiderwrapinfl.cxx; path = ../../../sw/source/core/layout/objstmpconsiderwrapinfl.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0B718D97E2700950228 /* pagechg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pagechg.cxx; path = ../../../sw/source/core/layout/pagechg.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0B818D97E2700950228 /* pagedesc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pagedesc.cxx; path = ../../../sw/source/core/layout/pagedesc.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0B918D97E2700950228 /* paintfrm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = paintfrm.cxx; path = ../../../sw/source/core/layout/paintfrm.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0BA18D97E2700950228 /* sectfrm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sectfrm.cxx; path = ../../../sw/source/core/layout/sectfrm.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0BB18D97E2700950228 /* softpagebreak.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = softpagebreak.cxx; path = ../../../sw/source/core/layout/softpagebreak.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0BC18D97E2700950228 /* sortedobjs.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sortedobjs.cxx; path = ../../../sw/source/core/layout/sortedobjs.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0BD18D97E2700950228 /* ssfrm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ssfrm.cxx; path = ../../../sw/source/core/layout/ssfrm.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0BE18D97E2700950228 /* swselectionlist.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = swselectionlist.cxx; path = ../../../sw/source/core/layout/swselectionlist.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0BF18D97E2700950228 /* tabfrm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tabfrm.cxx; path = ../../../sw/source/core/layout/tabfrm.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0C018D97E2700950228 /* trvlfrm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = trvlfrm.cxx; path = ../../../sw/source/core/layout/trvlfrm.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0C118D97E2700950228 /* unusedf.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = unusedf.cxx; path = ../../../sw/source/core/layout/unusedf.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0C218D97E2700950228 /* virtoutp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = virtoutp.cxx; path = ../../../sw/source/core/layout/virtoutp.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0C318D97E2700950228 /* wsfrm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = wsfrm.cxx; path = ../../../sw/source/core/layout/wsfrm.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0C518D9AB0A00950228 /* bindings.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bindings.cxx; path = ../../../sfx2/source/control/bindings.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0C618D9AB0A00950228 /* ctrlitem.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ctrlitem.cxx; path = ../../../sfx2/source/control/ctrlitem.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0C718D9AB0A00950228 /* dispatch.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dispatch.cxx; path = ../../../sfx2/source/control/dispatch.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0C818D9AB0A00950228 /* minfitem.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = minfitem.cxx; path = ../../../sfx2/source/control/minfitem.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0C918D9AB0A00950228 /* msg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = msg.cxx; path = ../../../sfx2/source/control/msg.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0CA18D9AB0A00950228 /* msgpool.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = msgpool.cxx; path = ../../../sfx2/source/control/msgpool.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0CC18D9AB0A00950228 /* recentdocsview.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = recentdocsview.cxx; path = ../../../sfx2/source/control/recentdocsview.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0CD18D9AB0A00950228 /* recentdocsviewitem.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = recentdocsviewitem.cxx; path = ../../../sfx2/source/control/recentdocsviewitem.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0CE18D9AB0A00950228 /* request.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = request.cxx; path = ../../../sfx2/source/control/request.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0CF18D9AB0A00950228 /* sfxstatuslistener.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sfxstatuslistener.cxx; path = ../../../sfx2/source/control/sfxstatuslistener.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0D018D9AB0A00950228 /* shell.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = shell.cxx; path = ../../../sfx2/source/control/shell.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0D118D9AB0A00950228 /* sorgitm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sorgitm.cxx; path = ../../../sfx2/source/control/sorgitm.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0D218D9AB0A00950228 /* statcach.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = statcach.cxx; path = ../../../sfx2/source/control/statcach.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0D418D9AB0A00950228 /* templatecontaineritem.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = templatecontaineritem.cxx; path = ../../../sfx2/source/control/templatecontaineritem.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0D518D9AB0A00950228 /* templatelocalview.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = templatelocalview.cxx; path = ../../../sfx2/source/control/templatelocalview.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0D718D9AB0A00950228 /* templatesearchview.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = templatesearchview.cxx; path = ../../../sfx2/source/control/templatesearchview.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0D818D9AB0A00950228 /* templateviewitem.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = templateviewitem.cxx; path = ../../../sfx2/source/control/templateviewitem.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0D918D9AB0A00950228 /* thumbnailview.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = thumbnailview.cxx; path = ../../../sfx2/source/control/thumbnailview.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0DA18D9AB0A00950228 /* thumbnailviewacc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = thumbnailviewacc.cxx; path = ../../../sfx2/source/control/thumbnailviewacc.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0DB18D9AB0A00950228 /* thumbnailviewitem.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = thumbnailviewitem.cxx; path = ../../../sfx2/source/control/thumbnailviewitem.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0DC18D9AB0A00950228 /* unoctitm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = unoctitm.cxx; path = ../../../sfx2/source/control/unoctitm.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0DE18D9AB5400950228 /* app.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = app.cxx; path = ../../../sfx2/source/appl/app.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0DF18D9AB5400950228 /* appbas.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appbas.cxx; path = ../../../sfx2/source/appl/appbas.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0E018D9AB5400950228 /* appbaslib.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appbaslib.cxx; path = ../../../sfx2/source/appl/appbaslib.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0E118D9AB5400950228 /* appcfg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appcfg.cxx; path = ../../../sfx2/source/appl/appcfg.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0E218D9AB5400950228 /* appchild.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appchild.cxx; path = ../../../sfx2/source/appl/appchild.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0E318D9AB5400950228 /* appdata.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appdata.cxx; path = ../../../sfx2/source/appl/appdata.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0E418D9AB5400950228 /* appdde.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appdde.cxx; path = ../../../sfx2/source/appl/appdde.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0E518D9AB5400950228 /* appdispatchprovider.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appdispatchprovider.cxx; path = ../../../sfx2/source/appl/appdispatchprovider.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0E618D9AB5400950228 /* appinit.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appinit.cxx; path = ../../../sfx2/source/appl/appinit.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0E718D9AB5400950228 /* appmain.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appmain.cxx; path = ../../../sfx2/source/appl/appmain.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0E818D9AB5400950228 /* appmisc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appmisc.cxx; path = ../../../sfx2/source/appl/appmisc.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0E918D9AB5400950228 /* appopen.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appopen.cxx; path = ../../../sfx2/source/appl/appopen.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0EA18D9AB5400950228 /* appquit.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appquit.cxx; path = ../../../sfx2/source/appl/appquit.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0EB18D9AB5400950228 /* appreg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appreg.cxx; path = ../../../sfx2/source/appl/appreg.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0EC18D9AB5400950228 /* appserv.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appserv.cxx; path = ../../../sfx2/source/appl/appserv.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0ED18D9AB5400950228 /* appuno.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appuno.cxx; path = ../../../sfx2/source/appl/appuno.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0EE18D9AB5400950228 /* childwin.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = childwin.cxx; path = ../../../sfx2/source/appl/childwin.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0EF18D9AB5400950228 /* fileobj.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fileobj.cxx; path = ../../../sfx2/source/appl/fileobj.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0F018D9AB5400950228 /* fwkhelper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fwkhelper.cxx; path = ../../../sfx2/source/appl/fwkhelper.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0F118D9AB5400950228 /* helpdispatch.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = helpdispatch.cxx; path = ../../../sfx2/source/appl/helpdispatch.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0F218D9AB5400950228 /* helpinterceptor.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = helpinterceptor.cxx; path = ../../../sfx2/source/appl/helpinterceptor.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0F318D9AB5400950228 /* imagemgr.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = imagemgr.cxx; path = ../../../sfx2/source/appl/imagemgr.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0F418D9AB5400950228 /* imestatuswindow.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = imestatuswindow.cxx; path = ../../../sfx2/source/appl/imestatuswindow.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0F518D9AB5400950228 /* impldde.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = impldde.cxx; path = ../../../sfx2/source/appl/impldde.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0F618D9AB5400950228 /* linkmgr2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = linkmgr2.cxx; path = ../../../sfx2/source/appl/linkmgr2.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0F718D9AB5400950228 /* linksrc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = linksrc.cxx; path = ../../../sfx2/source/appl/linksrc.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0F818D9AB5400950228 /* lnkbase2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = lnkbase2.cxx; path = ../../../sfx2/source/appl/lnkbase2.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0F918D9AB5400950228 /* macroloader.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = macroloader.cxx; path = ../../../sfx2/source/appl/macroloader.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0FA18D9AB5400950228 /* module.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = module.cxx; path = ../../../sfx2/source/appl/module.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0FB18D9AB5400950228 /* newhelp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = newhelp.cxx; path = ../../../sfx2/source/appl/newhelp.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0FC18D9AB5400950228 /* opengrf.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = opengrf.cxx; path = ../../../sfx2/source/appl/opengrf.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0FD18D9AB5400950228 /* openuriexternally.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = openuriexternally.cxx; path = ../../../sfx2/source/appl/openuriexternally.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B0FF18D9AB5400950228 /* sfxhelp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sfxhelp.cxx; path = ../../../sfx2/source/appl/sfxhelp.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B10018D9AB5400950228 /* sfxpicklist.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sfxpicklist.cxx; path = ../../../sfx2/source/appl/sfxpicklist.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B10118D9AB5400950228 /* shutdownicon.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = shutdownicon.cxx; path = ../../../sfx2/source/appl/shutdownicon.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B10218D9AB5400950228 /* shutdowniconaqua.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = shutdowniconaqua.mm; path = ../../../sfx2/source/appl/shutdowniconaqua.mm; sourceTree = SOURCE_ROOT; };
+ BE55B10318D9AB5400950228 /* workwin.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = workwin.cxx; path = ../../../sfx2/source/appl/workwin.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B10418D9AB5400950228 /* xpackcreator.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xpackcreator.cxx; path = ../../../sfx2/source/appl/xpackcreator.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B10618DAD89800950228 /* compat.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = compat.cxx; path = ../../../cppu/source/cppu/compat.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B10718DAD89800950228 /* cppu_opt.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cppu_opt.cxx; path = ../../../cppu/source/cppu/cppu_opt.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B10A18DB67A900950228 /* chart */ = {isa = PBXFileReference; lastKnownFileType = folder; name = chart; path = ../../../oox/source/drawingml/chart; sourceTree = SOURCE_ROOT; };
+ BE55B10B18DB67A900950228 /* clrscheme.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = clrscheme.cxx; path = ../../../oox/source/drawingml/clrscheme.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B10C18DB67A900950228 /* clrschemecontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = clrschemecontext.cxx; path = ../../../oox/source/drawingml/clrschemecontext.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B10D18DB67A900950228 /* color.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = color.cxx; path = ../../../oox/source/drawingml/color.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B10E18DB67A900950228 /* colorchoicecontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = colorchoicecontext.cxx; path = ../../../oox/source/drawingml/colorchoicecontext.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B10F18DB67A900950228 /* connectorshapecontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = connectorshapecontext.cxx; path = ../../../oox/source/drawingml/connectorshapecontext.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B11018DB67A900950228 /* customshapegeometry.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = customshapegeometry.cxx; path = ../../../oox/source/drawingml/customshapegeometry.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B11718DB67A900950228 /* customshapeproperties.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = customshapeproperties.cxx; path = ../../../oox/source/drawingml/customshapeproperties.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B11918DB67A900950228 /* diagram */ = {isa = PBXFileReference; lastKnownFileType = folder; name = diagram; path = ../../../oox/source/drawingml/diagram; sourceTree = SOURCE_ROOT; };
+ BE55B11A18DB67A900950228 /* drawingmltypes.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = drawingmltypes.cxx; path = ../../../oox/source/drawingml/drawingmltypes.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B11B18DB67A900950228 /* effectproperties.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = effectproperties.cxx; path = ../../../oox/source/drawingml/effectproperties.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B11C18DB67A900950228 /* effectpropertiescontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = effectpropertiescontext.cxx; path = ../../../oox/source/drawingml/effectpropertiescontext.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B11D18DB67A900950228 /* embeddedwavaudiofile.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = embeddedwavaudiofile.cxx; path = ../../../oox/source/drawingml/embeddedwavaudiofile.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B11E18DB67A900950228 /* fillproperties.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fillproperties.cxx; path = ../../../oox/source/drawingml/fillproperties.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B11F18DB67A900950228 /* fillpropertiesgroupcontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fillpropertiesgroupcontext.cxx; path = ../../../oox/source/drawingml/fillpropertiesgroupcontext.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B12018DB67A900950228 /* graphicshapecontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = graphicshapecontext.cxx; path = ../../../oox/source/drawingml/graphicshapecontext.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B12118DB67A900950228 /* guidcontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = guidcontext.cxx; path = ../../../oox/source/drawingml/guidcontext.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B12218DB67A900950228 /* hyperlinkcontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = hyperlinkcontext.cxx; path = ../../../oox/source/drawingml/hyperlinkcontext.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B12318DB67A900950228 /* lineproperties.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = lineproperties.cxx; path = ../../../oox/source/drawingml/lineproperties.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B12418DB67A900950228 /* linepropertiescontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = linepropertiescontext.cxx; path = ../../../oox/source/drawingml/linepropertiescontext.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B12518DB67A900950228 /* objectdefaultcontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = objectdefaultcontext.cxx; path = ../../../oox/source/drawingml/objectdefaultcontext.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B12618DB67A900950228 /* scene3dcontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = scene3dcontext.cxx; path = ../../../oox/source/drawingml/scene3dcontext.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B12718DB67A900950228 /* shape.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = shape.cxx; path = ../../../oox/source/drawingml/shape.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B12818DB67A900950228 /* shape3dproperties.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = shape3dproperties.cxx; path = ../../../oox/source/drawingml/shape3dproperties.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B12918DB67A900950228 /* shapecontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = shapecontext.cxx; path = ../../../oox/source/drawingml/shapecontext.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B12A18DB67A900950228 /* shapegroupcontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = shapegroupcontext.cxx; path = ../../../oox/source/drawingml/shapegroupcontext.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B12B18DB67A900950228 /* shapepropertiescontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = shapepropertiescontext.cxx; path = ../../../oox/source/drawingml/shapepropertiescontext.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B12C18DB67A900950228 /* shapepropertymap.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = shapepropertymap.cxx; path = ../../../oox/source/drawingml/shapepropertymap.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B12D18DB67A900950228 /* shapestylecontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = shapestylecontext.cxx; path = ../../../oox/source/drawingml/shapestylecontext.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B12E18DB67A900950228 /* spdefcontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = spdefcontext.cxx; path = ../../../oox/source/drawingml/spdefcontext.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B12F18DB67A900950228 /* table */ = {isa = PBXFileReference; lastKnownFileType = folder; name = table; path = ../../../oox/source/drawingml/table; sourceTree = SOURCE_ROOT; };
+ BE55B13018DB67A900950228 /* textbody.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textbody.cxx; path = ../../../oox/source/drawingml/textbody.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B13118DB67A900950228 /* textbodycontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textbodycontext.cxx; path = ../../../oox/source/drawingml/textbodycontext.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B13218DB67A900950228 /* textbodyproperties.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textbodyproperties.cxx; path = ../../../oox/source/drawingml/textbodyproperties.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B13318DB67A900950228 /* textbodypropertiescontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textbodypropertiescontext.cxx; path = ../../../oox/source/drawingml/textbodypropertiescontext.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B13418DB67A900950228 /* textcharacterproperties.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textcharacterproperties.cxx; path = ../../../oox/source/drawingml/textcharacterproperties.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B13518DB67A900950228 /* textcharacterpropertiescontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textcharacterpropertiescontext.cxx; path = ../../../oox/source/drawingml/textcharacterpropertiescontext.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B13618DB67A900950228 /* texteffectscontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = texteffectscontext.cxx; path = ../../../oox/source/drawingml/texteffectscontext.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B13718DB67A900950228 /* textfield.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textfield.cxx; path = ../../../oox/source/drawingml/textfield.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B13818DB67A900950228 /* textfieldcontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textfieldcontext.cxx; path = ../../../oox/source/drawingml/textfieldcontext.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B13918DB67A900950228 /* textfont.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textfont.cxx; path = ../../../oox/source/drawingml/textfont.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B13A18DB67A900950228 /* textliststyle.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textliststyle.cxx; path = ../../../oox/source/drawingml/textliststyle.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B13B18DB67A900950228 /* textliststylecontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textliststylecontext.cxx; path = ../../../oox/source/drawingml/textliststylecontext.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B13C18DB67A900950228 /* textparagraph.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textparagraph.cxx; path = ../../../oox/source/drawingml/textparagraph.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B13D18DB67A900950228 /* textparagraphproperties.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textparagraphproperties.cxx; path = ../../../oox/source/drawingml/textparagraphproperties.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B13E18DB67A900950228 /* textparagraphpropertiescontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textparagraphpropertiescontext.cxx; path = ../../../oox/source/drawingml/textparagraphpropertiescontext.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B13F18DB67A900950228 /* textrun.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textrun.cxx; path = ../../../oox/source/drawingml/textrun.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B14018DB67A900950228 /* textspacingcontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textspacingcontext.cxx; path = ../../../oox/source/drawingml/textspacingcontext.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B14118DB67A900950228 /* textspacingcontext.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = textspacingcontext.hxx; path = ../../../oox/source/drawingml/textspacingcontext.hxx; sourceTree = SOURCE_ROOT; };
+ BE55B14218DB67A900950228 /* texttabstoplistcontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = texttabstoplistcontext.cxx; path = ../../../oox/source/drawingml/texttabstoplistcontext.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B14318DB67A900950228 /* texttabstoplistcontext.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = texttabstoplistcontext.hxx; path = ../../../oox/source/drawingml/texttabstoplistcontext.hxx; sourceTree = SOURCE_ROOT; };
+ BE55B14418DB67A900950228 /* theme.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = theme.cxx; path = ../../../oox/source/drawingml/theme.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B14518DB67A900950228 /* themeelementscontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = themeelementscontext.cxx; path = ../../../oox/source/drawingml/themeelementscontext.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B14618DB67A900950228 /* themefragmenthandler.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = themefragmenthandler.cxx; path = ../../../oox/source/drawingml/themefragmenthandler.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B14718DB67A900950228 /* transform2dcontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = transform2dcontext.cxx; path = ../../../oox/source/drawingml/transform2dcontext.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B14918DB6DE700950228 /* EnhancedCustomShape2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = EnhancedCustomShape2d.cxx; path = ../../../svx/source/customshapes/EnhancedCustomShape2d.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B14A18DB6DE700950228 /* EnhancedCustomShape3d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = EnhancedCustomShape3d.cxx; path = ../../../svx/source/customshapes/EnhancedCustomShape3d.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B14B18DB6DE700950228 /* EnhancedCustomShapeEngine.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = EnhancedCustomShapeEngine.cxx; path = ../../../svx/source/customshapes/EnhancedCustomShapeEngine.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B14C18DB6DE700950228 /* EnhancedCustomShapeFontWork.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = EnhancedCustomShapeFontWork.cxx; path = ../../../svx/source/customshapes/EnhancedCustomShapeFontWork.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B14D18DB6DE700950228 /* EnhancedCustomShapeFunctionParser.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = EnhancedCustomShapeFunctionParser.cxx; path = ../../../svx/source/customshapes/EnhancedCustomShapeFunctionParser.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B14E18DB6DE700950228 /* EnhancedCustomShapeGeometry.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = EnhancedCustomShapeGeometry.cxx; path = ../../../svx/source/customshapes/EnhancedCustomShapeGeometry.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B14F18DB6DE700950228 /* EnhancedCustomShapeHandle.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = EnhancedCustomShapeHandle.cxx; path = ../../../svx/source/customshapes/EnhancedCustomShapeHandle.cxx; sourceTree = SOURCE_ROOT; };
+ BE55B15018DB6DE700950228 /* EnhancedCustomShapeTypeNames.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = EnhancedCustomShapeTypeNames.cxx; path = ../../../svx/source/customshapes/EnhancedCustomShapeTypeNames.cxx; sourceTree = SOURCE_ROOT; };
+ BE6DC8ED19D9A6E500AFB393 /* app.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = app.cxx; path = ../../../desktop/source/app/app.cxx; sourceTree = SOURCE_ROOT; };
+ BE6DC8EE19D9A6E500AFB393 /* appinit.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appinit.cxx; path = ../../../desktop/source/app/appinit.cxx; sourceTree = SOURCE_ROOT; };
+ BE6DC8EF19D9A6E500AFB393 /* check_ext_deps.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = check_ext_deps.cxx; path = ../../../desktop/source/app/check_ext_deps.cxx; sourceTree = SOURCE_ROOT; };
+ BE6DC8F019D9A6E500AFB393 /* cmdlineargs.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cmdlineargs.cxx; path = ../../../desktop/source/app/cmdlineargs.cxx; sourceTree = SOURCE_ROOT; };
+ BE6DC8F119D9A6E500AFB393 /* cmdlinehelp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cmdlinehelp.cxx; path = ../../../desktop/source/app/cmdlinehelp.cxx; sourceTree = SOURCE_ROOT; };
+ BE6DC8F319D9A6E500AFB393 /* desktopcontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = desktopcontext.cxx; path = ../../../desktop/source/app/desktopcontext.cxx; sourceTree = SOURCE_ROOT; };
+ BE6DC8F419D9A6E500AFB393 /* desktopcontext.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = desktopcontext.hxx; path = ../../../desktop/source/app/desktopcontext.hxx; sourceTree = SOURCE_ROOT; };
+ BE6DC8F519D9A6E500AFB393 /* desktopresid.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = desktopresid.cxx; path = ../../../desktop/source/app/desktopresid.cxx; sourceTree = SOURCE_ROOT; };
+ BE6DC8F619D9A6E500AFB393 /* dispatchwatcher.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dispatchwatcher.cxx; path = ../../../desktop/source/app/dispatchwatcher.cxx; sourceTree = SOURCE_ROOT; };
+ BE6DC8F719D9A6E500AFB393 /* langselect.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = langselect.cxx; path = ../../../desktop/source/app/langselect.cxx; sourceTree = SOURCE_ROOT; };
+ BE6DC8F819D9A6E500AFB393 /* lockfile2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = lockfile2.cxx; path = ../../../desktop/source/app/lockfile2.cxx; sourceTree = SOURCE_ROOT; };
+ BE6DC8F919D9A6E500AFB393 /* main.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = main.c; path = ../../../desktop/source/app/main.c; sourceTree = SOURCE_ROOT; };
+ BE6DC8FA19D9A6E500AFB393 /* officeipcthread.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = officeipcthread.cxx; path = ../../../desktop/source/app/officeipcthread.cxx; sourceTree = SOURCE_ROOT; };
+ BE6DC8FB19D9A6E500AFB393 /* sofficemain.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sofficemain.cxx; path = ../../../desktop/source/app/sofficemain.cxx; sourceTree = SOURCE_ROOT; };
+ BE6DC8FC19D9A6E500AFB393 /* userinstall.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = userinstall.cxx; path = ../../../desktop/source/app/userinstall.cxx; sourceTree = SOURCE_ROOT; };
+ BE6DC8FD19D9AF6100AFB393 /* IconThemeInfo.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = IconThemeInfo.cxx; path = ../../../vcl/source/app/IconThemeInfo.cxx; sourceTree = SOURCE_ROOT; };
+ BE6DC8FE19D9AF6100AFB393 /* IconThemeScanner.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = IconThemeScanner.cxx; path = ../../../vcl/source/app/IconThemeScanner.cxx; sourceTree = SOURCE_ROOT; };
+ BE6DC8FF19D9AF6100AFB393 /* IconThemeSelector.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = IconThemeSelector.cxx; path = ../../../vcl/source/app/IconThemeSelector.cxx; sourceTree = SOURCE_ROOT; };
+ BE6DC90119D9B55E00AFB393 /* alloc_arena.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = alloc_arena.cxx; path = ../../../sal/rtl/alloc_arena.cxx; sourceTree = SOURCE_ROOT; };
+ BE6DC90219D9B55E00AFB393 /* alloc_cache.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = alloc_cache.cxx; path = ../../../sal/rtl/alloc_cache.cxx; sourceTree = SOURCE_ROOT; };
+ BE6DC90319D9B55E00AFB393 /* alloc_fini.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = alloc_fini.cxx; path = ../../../sal/rtl/alloc_fini.cxx; sourceTree = SOURCE_ROOT; };
+ BE6DC90419D9B55E00AFB393 /* alloc_global.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = alloc_global.cxx; path = ../../../sal/rtl/alloc_global.cxx; sourceTree = SOURCE_ROOT; };
+ BE6DC90519D9B55E00AFB393 /* bootstrap.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bootstrap.cxx; path = ../../../sal/rtl/bootstrap.cxx; sourceTree = SOURCE_ROOT; };
+ BE6DC90619D9B55E00AFB393 /* byteseq.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = byteseq.cxx; path = ../../../sal/rtl/byteseq.cxx; sourceTree = SOURCE_ROOT; };
+ BE6DC90719D9B55E00AFB393 /* cipher.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cipher.cxx; path = ../../../sal/rtl/cipher.cxx; sourceTree = SOURCE_ROOT; };
+ BE6DC90819D9B55E00AFB393 /* cmdargs.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cmdargs.cxx; path = ../../../sal/rtl/cmdargs.cxx; sourceTree = SOURCE_ROOT; };
+ BE6DC90919D9B55E00AFB393 /* crc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = crc.cxx; path = ../../../sal/rtl/crc.cxx; sourceTree = SOURCE_ROOT; };
+ BE6DC90A19D9B55E00AFB393 /* digest.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = digest.cxx; path = ../../../sal/rtl/digest.cxx; sourceTree = SOURCE_ROOT; };
+ BE6DC90B19D9B55E00AFB393 /* hash.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = hash.cxx; path = ../../../sal/rtl/hash.cxx; sourceTree = SOURCE_ROOT; };
+ BE6DC90C19D9B55E00AFB393 /* locale.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = locale.cxx; path = ../../../sal/rtl/locale.cxx; sourceTree = SOURCE_ROOT; };
+ BE6DC90E19D9B55E00AFB393 /* math.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = math.cxx; path = ../../../sal/rtl/math.cxx; sourceTree = SOURCE_ROOT; };
+ BE6DC90F19D9B55E00AFB393 /* random.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = random.cxx; path = ../../../sal/rtl/random.cxx; sourceTree = SOURCE_ROOT; };
+ BE6DC91019D9B55E00AFB393 /* rtl_process.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = rtl_process.cxx; path = ../../../sal/rtl/rtl_process.cxx; sourceTree = SOURCE_ROOT; };
+ BE6DC91119D9B55E00AFB393 /* strbuf.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = strbuf.cxx; path = ../../../sal/rtl/strbuf.cxx; sourceTree = SOURCE_ROOT; };
+ BE6DC91219D9B55E00AFB393 /* strimp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = strimp.cxx; path = ../../../sal/rtl/strimp.cxx; sourceTree = SOURCE_ROOT; };
+ BE6DC91319D9B55E00AFB393 /* string.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = string.cxx; path = ../../../sal/rtl/string.cxx; sourceTree = SOURCE_ROOT; };
+ BE6DC91419D9B55E00AFB393 /* strtmpl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = strtmpl.cxx; path = ../../../sal/rtl/strtmpl.cxx; sourceTree = SOURCE_ROOT; };
+ BE6DC91519D9B55E00AFB393 /* unload.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = unload.cxx; path = ../../../sal/rtl/unload.cxx; sourceTree = SOURCE_ROOT; };
+ BE6DC91619D9B55E00AFB393 /* uri.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = uri.cxx; path = ../../../sal/rtl/uri.cxx; sourceTree = SOURCE_ROOT; };
+ BE6DC91719D9B55E00AFB393 /* ustrbuf.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ustrbuf.cxx; path = ../../../sal/rtl/ustrbuf.cxx; sourceTree = SOURCE_ROOT; };
+ BE6DC91819D9B55E00AFB393 /* ustring.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ustring.cxx; path = ../../../sal/rtl/ustring.cxx; sourceTree = SOURCE_ROOT; };
+ BE6DC91919D9B55E00AFB393 /* uuid.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = uuid.cxx; path = ../../../sal/rtl/uuid.cxx; sourceTree = SOURCE_ROOT; };
+ BE6DC91B19D9B59400AFB393 /* compat.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = compat.cxx; path = ../../../sal/osl/all/compat.cxx; sourceTree = SOURCE_ROOT; };
+ BE6DC91C19D9B59400AFB393 /* debugbase.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = debugbase.cxx; path = ../../../sal/osl/all/debugbase.cxx; sourceTree = SOURCE_ROOT; };
+ BE6DC91E19D9B59400AFB393 /* loadmodulerelative.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = loadmodulerelative.cxx; path = ../../../sal/osl/all/loadmodulerelative.cxx; sourceTree = SOURCE_ROOT; };
+ BE6DC91F19D9B59400AFB393 /* log.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = log.cxx; path = ../../../sal/osl/all/log.cxx; sourceTree = SOURCE_ROOT; };
+ BE6DC92019D9B59400AFB393 /* utility.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = utility.cxx; path = ../../../sal/osl/all/utility.cxx; sourceTree = SOURCE_ROOT; };
+ BE6DC92219D9B5DD00AFB393 /* backtrace.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = backtrace.c; path = ../../../sal/osl/unx/backtrace.c; sourceTree = SOURCE_ROOT; };
+ BE6DC92319D9B5DD00AFB393 /* conditn.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = conditn.cxx; path = ../../../sal/osl/unx/conditn.cxx; sourceTree = SOURCE_ROOT; };
+ BE6DC92419D9B5DD00AFB393 /* file_error_transl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = file_error_transl.cxx; path = ../../../sal/osl/unx/file_error_transl.cxx; sourceTree = SOURCE_ROOT; };
+ BE6DC92519D9B5DD00AFB393 /* file_misc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = file_misc.cxx; path = ../../../sal/osl/unx/file_misc.cxx; sourceTree = SOURCE_ROOT; };
+ BE6DC92619D9B5DD00AFB393 /* file_path_helper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = file_path_helper.cxx; path = ../../../sal/osl/unx/file_path_helper.cxx; sourceTree = SOURCE_ROOT; };
+ BE6DC92719D9B5DD00AFB393 /* file_stat.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = file_stat.cxx; path = ../../../sal/osl/unx/file_stat.cxx; sourceTree = SOURCE_ROOT; };
+ BE6DC92819D9B5DD00AFB393 /* file_url.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = file_url.cxx; path = ../../../sal/osl/unx/file_url.cxx; sourceTree = SOURCE_ROOT; };
+ BE6DC92919D9B5DD00AFB393 /* file_volume.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = file_volume.cxx; path = ../../../sal/osl/unx/file_volume.cxx; sourceTree = SOURCE_ROOT; };
+ BE6DC92A19D9B5DD00AFB393 /* file.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = file.cxx; path = ../../../sal/osl/unx/file.cxx; sourceTree = SOURCE_ROOT; };
+ BE6DC92D19D9B5DD00AFB393 /* module.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = module.cxx; path = ../../../sal/osl/unx/module.cxx; sourceTree = SOURCE_ROOT; };
+ BE6DC93019D9B5DD00AFB393 /* osxlocale.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = osxlocale.cxx; path = ../../../sal/osl/unx/osxlocale.cxx; sourceTree = SOURCE_ROOT; };
+ BE6DC93119D9B5DD00AFB393 /* pipe.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pipe.cxx; path = ../../../sal/osl/unx/pipe.cxx; sourceTree = SOURCE_ROOT; };
+ BE6DC93219D9B5DD00AFB393 /* process_impl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = process_impl.cxx; path = ../../../sal/osl/unx/process_impl.cxx; sourceTree = SOURCE_ROOT; };
+ BE6DC93319D9B5DD00AFB393 /* process.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = process.cxx; path = ../../../sal/osl/unx/process.cxx; sourceTree = SOURCE_ROOT; };
+ BE6DC93419D9B5DD00AFB393 /* profile.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = profile.cxx; path = ../../../sal/osl/unx/profile.cxx; sourceTree = SOURCE_ROOT; };
+ BE6DC93619D9B5DD00AFB393 /* salinit.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = salinit.cxx; path = ../../../sal/osl/unx/salinit.cxx; sourceTree = SOURCE_ROOT; };
+ BE6DC93719D9B5DD00AFB393 /* security.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = security.cxx; path = ../../../sal/osl/unx/security.cxx; sourceTree = SOURCE_ROOT; };
+ BE6DC93B19D9B5DD00AFB393 /* tempfile.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tempfile.cxx; path = ../../../sal/osl/unx/tempfile.cxx; sourceTree = SOURCE_ROOT; };
+ BE6DC93E19D9B5DD00AFB393 /* uunxapi.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = uunxapi.cxx; path = ../../../sal/osl/unx/uunxapi.cxx; sourceTree = SOURCE_ROOT; };
+ BE6DC93F19D9B5DD00AFB393 /* uunxapi.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = uunxapi.mm; path = ../../../sal/osl/unx/uunxapi.mm; sourceTree = SOURCE_ROOT; };
+ BE6F3D67192E286B00D6FCC0 /* bitmap.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bitmap.cxx; path = ../../../vcl/source/outdev/bitmap.cxx; sourceTree = SOURCE_ROOT; };
+ BE6F3D68192E286B00D6FCC0 /* clipping.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = clipping.cxx; path = ../../../vcl/source/outdev/clipping.cxx; sourceTree = SOURCE_ROOT; };
+ BE6F3D69192E286B00D6FCC0 /* curvedshapes.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = curvedshapes.cxx; path = ../../../vcl/source/outdev/curvedshapes.cxx; sourceTree = SOURCE_ROOT; };
+ BE6F3D6A192E286B00D6FCC0 /* font.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = font.cxx; path = ../../../vcl/source/outdev/font.cxx; sourceTree = SOURCE_ROOT; };
+ BE6F3D6B192E286B00D6FCC0 /* gradient.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gradient.cxx; path = ../../../vcl/source/outdev/gradient.cxx; sourceTree = SOURCE_ROOT; };
+ BE6F3D6C192E286B00D6FCC0 /* hatch.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = hatch.cxx; path = ../../../vcl/source/outdev/hatch.cxx; sourceTree = SOURCE_ROOT; };
+ BE6F3D6D192E286B00D6FCC0 /* line.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = line.cxx; path = ../../../vcl/source/outdev/line.cxx; sourceTree = SOURCE_ROOT; };
+ BE6F3D6E192E286B00D6FCC0 /* map.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = map.cxx; path = ../../../vcl/source/outdev/map.cxx; sourceTree = SOURCE_ROOT; };
+ BE6F3D6F192E286B00D6FCC0 /* mask.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = mask.cxx; path = ../../../vcl/source/outdev/mask.cxx; sourceTree = SOURCE_ROOT; };
+ BE6F3D70192E286B00D6FCC0 /* nativecontrols.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = nativecontrols.cxx; path = ../../../vcl/source/outdev/nativecontrols.cxx; sourceTree = SOURCE_ROOT; };
+ BE6F3D71192E286B00D6FCC0 /* outdev.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = outdev.cxx; path = ../../../vcl/source/outdev/outdev.cxx; sourceTree = SOURCE_ROOT; };
+ BE6F3D72192E286B00D6FCC0 /* outdevstate.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = outdevstate.cxx; path = ../../../vcl/source/outdev/outdevstate.cxx; sourceTree = SOURCE_ROOT; };
+ BE6F3D73192E286B00D6FCC0 /* pixel.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pixel.cxx; path = ../../../vcl/source/outdev/pixel.cxx; sourceTree = SOURCE_ROOT; };
+ BE6F3D74192E286B00D6FCC0 /* polygon.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = polygon.cxx; path = ../../../vcl/source/outdev/polygon.cxx; sourceTree = SOURCE_ROOT; };
+ BE6F3D75192E286B00D6FCC0 /* polyline.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = polyline.cxx; path = ../../../vcl/source/outdev/polyline.cxx; sourceTree = SOURCE_ROOT; };
+ BE6F3D76192E286B00D6FCC0 /* rect.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = rect.cxx; path = ../../../vcl/source/outdev/rect.cxx; sourceTree = SOURCE_ROOT; };
+ BE6F3D77192E286B00D6FCC0 /* text.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = text.cxx; path = ../../../vcl/source/outdev/text.cxx; sourceTree = SOURCE_ROOT; };
+ BE6F3D78192E286B00D6FCC0 /* textline.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textline.cxx; path = ../../../vcl/source/outdev/textline.cxx; sourceTree = SOURCE_ROOT; };
+ BE6F3D79192E286B00D6FCC0 /* transparent.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = transparent.cxx; path = ../../../vcl/source/outdev/transparent.cxx; sourceTree = SOURCE_ROOT; };
+ BE6F3D7A192E286B00D6FCC0 /* wallpaper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = wallpaper.cxx; path = ../../../vcl/source/outdev/wallpaper.cxx; sourceTree = SOURCE_ROOT; };
+ BE6F3D7C192E28B300D6FCC0 /* FilterConfigCache.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = FilterConfigCache.cxx; path = ../../../vcl/source/filter/FilterConfigCache.cxx; sourceTree = SOURCE_ROOT; };
+ BE6F3D7D192E28B300D6FCC0 /* FilterConfigItem.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = FilterConfigItem.cxx; path = ../../../vcl/source/filter/FilterConfigItem.cxx; sourceTree = SOURCE_ROOT; };
+ BE6F3D7E192E28B300D6FCC0 /* graphicfilter.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = graphicfilter.cxx; path = ../../../vcl/source/filter/graphicfilter.cxx; sourceTree = SOURCE_ROOT; };
+ BE6F3D7F192E28B300D6FCC0 /* graphicfilter2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = graphicfilter2.cxx; path = ../../../vcl/source/filter/graphicfilter2.cxx; sourceTree = SOURCE_ROOT; };
+ BE6F3D80192E28B300D6FCC0 /* GraphicNativeMetadata.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = GraphicNativeMetadata.cxx; path = ../../../vcl/source/filter/GraphicNativeMetadata.cxx; sourceTree = SOURCE_ROOT; };
+ BE6F3D81192E28B300D6FCC0 /* GraphicNativeTransform.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = GraphicNativeTransform.cxx; path = ../../../vcl/source/filter/GraphicNativeTransform.cxx; sourceTree = SOURCE_ROOT; };
+ BE6F3D82192E28B300D6FCC0 /* sgfbram.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sgfbram.cxx; path = ../../../vcl/source/filter/sgfbram.cxx; sourceTree = SOURCE_ROOT; };
+ BE6F3D83192E28B300D6FCC0 /* sgvmain.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sgvmain.cxx; path = ../../../vcl/source/filter/sgvmain.cxx; sourceTree = SOURCE_ROOT; };
+ BE6F3D84192E28B300D6FCC0 /* sgvspln.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sgvspln.cxx; path = ../../../vcl/source/filter/sgvspln.cxx; sourceTree = SOURCE_ROOT; };
+ BE6F3D85192E28B300D6FCC0 /* sgvtext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sgvtext.cxx; path = ../../../vcl/source/filter/sgvtext.cxx; sourceTree = SOURCE_ROOT; };
+ BE6F3D87192E28E400D6FCC0 /* emfwr.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = emfwr.cxx; path = ../../../vcl/source/filter/wmf/emfwr.cxx; sourceTree = SOURCE_ROOT; };
+ BE6F3D88192E28E400D6FCC0 /* enhwmf.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = enhwmf.cxx; path = ../../../vcl/source/filter/wmf/enhwmf.cxx; sourceTree = SOURCE_ROOT; };
+ BE6F3D89192E28E400D6FCC0 /* winmtf.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = winmtf.cxx; path = ../../../vcl/source/filter/wmf/winmtf.cxx; sourceTree = SOURCE_ROOT; };
+ BE6F3D8A192E28E400D6FCC0 /* winwmf.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = winwmf.cxx; path = ../../../vcl/source/filter/wmf/winwmf.cxx; sourceTree = SOURCE_ROOT; };
+ BE6F3D8B192E28E400D6FCC0 /* wmf.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = wmf.cxx; path = ../../../vcl/source/filter/wmf/wmf.cxx; sourceTree = SOURCE_ROOT; };
+ BE6F3D8C192E28E400D6FCC0 /* wmfwr.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = wmfwr.cxx; path = ../../../vcl/source/filter/wmf/wmfwr.cxx; sourceTree = SOURCE_ROOT; };
+ BE7C277218D1DDF600C4908C /* acmplwrd.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = acmplwrd.cxx; path = ../../../sw/source/core/doc/acmplwrd.cxx; sourceTree = SOURCE_ROOT; };
+ BE7C277318D1DDF600C4908C /* dbgoutsw.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dbgoutsw.cxx; path = ../../../sw/source/core/doc/dbgoutsw.cxx; sourceTree = SOURCE_ROOT; };
+ BE7C277418D1DDF600C4908C /* doc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = doc.cxx; path = ../../../sw/source/core/doc/doc.cxx; sourceTree = SOURCE_ROOT; };
+ BE7C277518D1DDF600C4908C /* docbasic.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docbasic.cxx; path = ../../../sw/source/core/doc/docbasic.cxx; sourceTree = SOURCE_ROOT; };
+ BE7C277618D1DDF600C4908C /* docbm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docbm.cxx; path = ../../../sw/source/core/doc/docbm.cxx; sourceTree = SOURCE_ROOT; };
+ BE7C277718D1DDF600C4908C /* docchart.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docchart.cxx; path = ../../../sw/source/core/doc/docchart.cxx; sourceTree = SOURCE_ROOT; };
+ BE7C277818D1DDF600C4908C /* doccomp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = doccomp.cxx; path = ../../../sw/source/core/doc/doccomp.cxx; sourceTree = SOURCE_ROOT; };
+ BE7C277918D1DDF600C4908C /* doccorr.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = doccorr.cxx; path = ../../../sw/source/core/doc/doccorr.cxx; sourceTree = SOURCE_ROOT; };
+ BE7C277B18D1DDF600C4908C /* docdesc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docdesc.cxx; path = ../../../sw/source/core/doc/docdesc.cxx; sourceTree = SOURCE_ROOT; };
+ BE7C277C18D1DDF600C4908C /* docdraw.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docdraw.cxx; path = ../../../sw/source/core/doc/docdraw.cxx; sourceTree = SOURCE_ROOT; };
+ BE7C277D18D1DDF600C4908C /* docedt.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docedt.cxx; path = ../../../sw/source/core/doc/docedt.cxx; sourceTree = SOURCE_ROOT; };
+ BE7C277E18D1DDF600C4908C /* docfld.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docfld.cxx; path = ../../../sw/source/core/doc/docfld.cxx; sourceTree = SOURCE_ROOT; };
+ BE7C277F18D1DDF600C4908C /* docfly.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docfly.cxx; path = ../../../sw/source/core/doc/docfly.cxx; sourceTree = SOURCE_ROOT; };
+ BE7C278018D1DDF600C4908C /* docfmt.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docfmt.cxx; path = ../../../sw/source/core/doc/docfmt.cxx; sourceTree = SOURCE_ROOT; };
+ BE7C278118D1DDF600C4908C /* docftn.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docftn.cxx; path = ../../../sw/source/core/doc/docftn.cxx; sourceTree = SOURCE_ROOT; };
+ BE7C278218D1DDF600C4908C /* docglbl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docglbl.cxx; path = ../../../sw/source/core/doc/docglbl.cxx; sourceTree = SOURCE_ROOT; };
+ BE7C278318D1DDF600C4908C /* docglos.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docglos.cxx; path = ../../../sw/source/core/doc/docglos.cxx; sourceTree = SOURCE_ROOT; };
+ BE7C278418D1DDF600C4908C /* doclay.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = doclay.cxx; path = ../../../sw/source/core/doc/doclay.cxx; sourceTree = SOURCE_ROOT; };
+ BE7C278518D1DDF600C4908C /* docnew.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docnew.cxx; path = ../../../sw/source/core/doc/docnew.cxx; sourceTree = SOURCE_ROOT; };
+ BE7C278618D1DDF600C4908C /* docnum.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docnum.cxx; path = ../../../sw/source/core/doc/docnum.cxx; sourceTree = SOURCE_ROOT; };
+ BE7C278718D1DDF600C4908C /* docredln.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docredln.cxx; path = ../../../sw/source/core/doc/docredln.cxx; sourceTree = SOURCE_ROOT; };
+ BE7C278818D1DDF600C4908C /* docruby.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docruby.cxx; path = ../../../sw/source/core/doc/docruby.cxx; sourceTree = SOURCE_ROOT; };
+ BE7C278918D1DDF600C4908C /* docsort.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docsort.cxx; path = ../../../sw/source/core/doc/docsort.cxx; sourceTree = SOURCE_ROOT; };
+ BE7C278A18D1DDF600C4908C /* docstat.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docstat.cxx; path = ../../../sw/source/core/doc/docstat.cxx; sourceTree = SOURCE_ROOT; };
+ BE7C278B18D1DDF600C4908C /* doctxm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = doctxm.cxx; path = ../../../sw/source/core/doc/doctxm.cxx; sourceTree = SOURCE_ROOT; };
+ BE7C278C18D1DDF600C4908C /* docxforms.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docxforms.cxx; path = ../../../sw/source/core/doc/docxforms.cxx; sourceTree = SOURCE_ROOT; };
+ BE7C278D18D1DDF600C4908C /* extinput.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = extinput.cxx; path = ../../../sw/source/core/doc/extinput.cxx; sourceTree = SOURCE_ROOT; };
+ BE7C278E18D1DDF600C4908C /* fmtcol.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fmtcol.cxx; path = ../../../sw/source/core/doc/fmtcol.cxx; sourceTree = SOURCE_ROOT; };
+ BE7C278F18D1DDF600C4908C /* ftnidx.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ftnidx.cxx; path = ../../../sw/source/core/doc/ftnidx.cxx; sourceTree = SOURCE_ROOT; };
+ BE7C279018D1DDF600C4908C /* gctable.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gctable.cxx; path = ../../../sw/source/core/doc/gctable.cxx; sourceTree = SOURCE_ROOT; };
+ BE7C279118D1DDF600C4908C /* htmltbl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = htmltbl.cxx; path = ../../../sw/source/core/doc/htmltbl.cxx; sourceTree = SOURCE_ROOT; };
+ BE7C279218D1DDF600C4908C /* lineinfo.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = lineinfo.cxx; path = ../../../sw/source/core/doc/lineinfo.cxx; sourceTree = SOURCE_ROOT; };
+ BE7C279318D1DDF600C4908C /* list.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = list.cxx; path = ../../../sw/source/core/doc/list.cxx; sourceTree = SOURCE_ROOT; };
+ BE7C279418D1DDF600C4908C /* notxtfrm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = notxtfrm.cxx; path = ../../../sw/source/core/doc/notxtfrm.cxx; sourceTree = SOURCE_ROOT; };
+ BE7C279518D1DDF600C4908C /* number.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = number.cxx; path = ../../../sw/source/core/doc/number.cxx; sourceTree = SOURCE_ROOT; };
+ BE7C279618D1DDF600C4908C /* poolfmt.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = poolfmt.cxx; path = ../../../sw/source/core/doc/poolfmt.cxx; sourceTree = SOURCE_ROOT; };
+ BE7C279718D1DDF600C4908C /* sortopt.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sortopt.cxx; path = ../../../sw/source/core/doc/sortopt.cxx; sourceTree = SOURCE_ROOT; };
+ BE7C279818D1DDF600C4908C /* swserv.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = swserv.cxx; path = ../../../sw/source/core/doc/swserv.cxx; sourceTree = SOURCE_ROOT; };
+ BE7C279918D1DDF600C4908C /* swstylemanager.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = swstylemanager.cxx; path = ../../../sw/source/core/doc/swstylemanager.cxx; sourceTree = SOURCE_ROOT; };
+ BE7C279A18D1DDF600C4908C /* SwStyleNameMapper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = SwStyleNameMapper.cxx; path = ../../../sw/source/core/doc/SwStyleNameMapper.cxx; sourceTree = SOURCE_ROOT; };
+ BE7C279B18D1DDF600C4908C /* tblafmt.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tblafmt.cxx; path = ../../../sw/source/core/doc/tblafmt.cxx; sourceTree = SOURCE_ROOT; };
+ BE7C279C18D1DDF600C4908C /* tblcpy.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tblcpy.cxx; path = ../../../sw/source/core/doc/tblcpy.cxx; sourceTree = SOURCE_ROOT; };
+ BE7C279D18D1DDF600C4908C /* tblrwcl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tblrwcl.cxx; path = ../../../sw/source/core/doc/tblrwcl.cxx; sourceTree = SOURCE_ROOT; };
+ BE7C279E18D1DDF600C4908C /* visiturl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = visiturl.cxx; path = ../../../sw/source/core/doc/visiturl.cxx; sourceTree = SOURCE_ROOT; };
BE82BD7218218E2E00A447B5 /* TiledLibreOffice.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = TiledLibreOffice.app; sourceTree = BUILT_PRODUCTS_DIR; };
BE82BD7518218E2E00A447B5 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
BE82BD7718218E2E00A447B5 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
BE82BD7918218E2E00A447B5 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
- BE82BD7D18218E2E00A447B5 /* TiledLibreOffice-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "TiledLibreOffice-Info.plist"; sourceTree = "<group>"; };
+ BE82BD7D18218E2E00A447B5 /* TiledLibreOffice-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = "TiledLibreOffice-Info.plist"; path = "TiledLibreOffice/TiledLibreOffice-Info.plist"; sourceTree = SOURCE_ROOT; };
BE82BD7F18218E2E00A447B5 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
- BE82BD8118218E2E00A447B5 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
- BE82BD8318218E2E00A447B5 /* TiledLibreOffice-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "TiledLibreOffice-Prefix.pch"; sourceTree = "<group>"; };
- BE82BD8418218E2E00A447B5 /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
- BE82BD8518218E2E00A447B5 /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
- BE82BD8A18218E2E00A447B5 /* ViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ViewController.h; sourceTree = "<group>"; };
- BE82BD8B18218E2E00A447B5 /* ViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ViewController.m; sourceTree = "<group>"; };
- BE82BD8D18218E2E00A447B5 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = "<group>"; };
- BE82BD9418218E2E00A447B5 /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; };
- BE82BDAA182190E400A447B5 /* TiledView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TiledView.h; sourceTree = "<group>"; };
- BE82BDAB182190E400A447B5 /* TiledView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TiledView.m; sourceTree = "<group>"; };
- BE82BDAD1821A1D000A447B5 /* View.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = View.h; sourceTree = "<group>"; };
- BE82BDAE1821A1D000A447B5 /* View.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = View.m; sourceTree = "<group>"; };
- BE82C42918CA18610050EB79 /* ActionDescriptionProvider.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ActionDescriptionProvider.cxx; path = ../../../svx/source/svdraw/ActionDescriptionProvider.cxx; sourceTree = "<group>"; };
- BE82C42A18CA18610050EB79 /* charthelper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = charthelper.cxx; path = ../../../svx/source/svdraw/charthelper.cxx; sourceTree = "<group>"; };
- BE82C42B18CA18610050EB79 /* clonelist.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = clonelist.cxx; path = ../../../svx/source/svdraw/clonelist.cxx; sourceTree = "<group>"; };
- BE82C42C18CA18610050EB79 /* gradtrns.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gradtrns.cxx; path = ../../../svx/source/svdraw/gradtrns.cxx; sourceTree = "<group>"; };
- BE82C42D18CA18610050EB79 /* gradtrns.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = gradtrns.hxx; path = ../../../svx/source/svdraw/gradtrns.hxx; sourceTree = "<group>"; };
- BE82C42E18CA18610050EB79 /* polypolygoneditor.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = polypolygoneditor.cxx; path = ../../../svx/source/svdraw/polypolygoneditor.cxx; sourceTree = "<group>"; };
- BE82C42F18CA18610050EB79 /* sdrhittesthelper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sdrhittesthelper.cxx; path = ../../../svx/source/svdraw/sdrhittesthelper.cxx; sourceTree = "<group>"; };
- BE82C43018CA18610050EB79 /* sdrmasterpagedescriptor.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sdrmasterpagedescriptor.cxx; path = ../../../svx/source/svdraw/sdrmasterpagedescriptor.cxx; sourceTree = "<group>"; };
- BE82C43118CA18610050EB79 /* sdrpagewindow.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sdrpagewindow.cxx; path = ../../../svx/source/svdraw/sdrpagewindow.cxx; sourceTree = "<group>"; };
- BE82C43218CA18610050EB79 /* sdrpaintwindow.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sdrpaintwindow.cxx; path = ../../../svx/source/svdraw/sdrpaintwindow.cxx; sourceTree = "<group>"; };
- BE82C43318CA18610050EB79 /* sdrundomanager.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sdrundomanager.cxx; path = ../../../svx/source/svdraw/sdrundomanager.cxx; sourceTree = "<group>"; };
- BE82C43418CA18610050EB79 /* selectioncontroller.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = selectioncontroller.cxx; path = ../../../svx/source/svdraw/selectioncontroller.cxx; sourceTree = "<group>"; };
- BE82C43518CA18610050EB79 /* svdattr.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdattr.cxx; path = ../../../svx/source/svdraw/svdattr.cxx; sourceTree = "<group>"; };
- BE82C43618CA18610050EB79 /* svdcrtv.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdcrtv.cxx; path = ../../../svx/source/svdraw/svdcrtv.cxx; sourceTree = "<group>"; };
- BE82C43718CA18610050EB79 /* svddrag.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svddrag.cxx; path = ../../../svx/source/svdraw/svddrag.cxx; sourceTree = "<group>"; };
- BE82C43818CA18610050EB79 /* svddrgmt.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svddrgmt.cxx; path = ../../../svx/source/svdraw/svddrgmt.cxx; sourceTree = "<group>"; };
- BE82C43918CA18610050EB79 /* svddrgv.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svddrgv.cxx; path = ../../../svx/source/svdraw/svddrgv.cxx; sourceTree = "<group>"; };
- BE82C43A18CA18610050EB79 /* svdedtv.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdedtv.cxx; path = ../../../svx/source/svdraw/svdedtv.cxx; sourceTree = "<group>"; };
- BE82C43B18CA18610050EB79 /* svdedtv1.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdedtv1.cxx; path = ../../../svx/source/svdraw/svdedtv1.cxx; sourceTree = "<group>"; };
- BE82C43C18CA18610050EB79 /* svdedtv2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdedtv2.cxx; path = ../../../svx/source/svdraw/svdedtv2.cxx; sourceTree = "<group>"; };
- BE82C43D18CA18610050EB79 /* svdedxv.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdedxv.cxx; path = ../../../svx/source/svdraw/svdedxv.cxx; sourceTree = "<group>"; };
- BE82C43E18CA18610050EB79 /* svdetc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdetc.cxx; path = ../../../svx/source/svdraw/svdetc.cxx; sourceTree = "<group>"; };
- BE82C43F18CA18610050EB79 /* svdfmtf.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdfmtf.cxx; path = ../../../svx/source/svdraw/svdfmtf.cxx; sourceTree = "<group>"; };
- BE82C44018CA18610050EB79 /* svdglev.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdglev.cxx; path = ../../../svx/source/svdraw/svdglev.cxx; sourceTree = "<group>"; };
- BE82C44118CA18610050EB79 /* svdglue.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdglue.cxx; path = ../../../svx/source/svdraw/svdglue.cxx; sourceTree = "<group>"; };
- BE82C44218CA18610050EB79 /* svdhdl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdhdl.cxx; path = ../../../svx/source/svdraw/svdhdl.cxx; sourceTree = "<group>"; };
- BE82C44318CA18610050EB79 /* svdhlpln.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdhlpln.cxx; path = ../../../svx/source/svdraw/svdhlpln.cxx; sourceTree = "<group>"; };
- BE82C44418CA18610050EB79 /* svdibrow.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdibrow.cxx; path = ../../../svx/source/svdraw/svdibrow.cxx; sourceTree = "<group>"; };
- BE82C44518CA18610050EB79 /* svditer.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svditer.cxx; path = ../../../svx/source/svdraw/svditer.cxx; sourceTree = "<group>"; };
- BE82C44618CA18610050EB79 /* svdlayer.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdlayer.cxx; path = ../../../svx/source/svdraw/svdlayer.cxx; sourceTree = "<group>"; };
- BE82C44718CA18610050EB79 /* svdmark.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdmark.cxx; path = ../../../svx/source/svdraw/svdmark.cxx; sourceTree = "<group>"; };
- BE82C44818CA18610050EB79 /* svdmodel.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdmodel.cxx; path = ../../../svx/source/svdraw/svdmodel.cxx; sourceTree = "<group>"; };
- BE82C44918CA18610050EB79 /* svdmrkv.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdmrkv.cxx; path = ../../../svx/source/svdraw/svdmrkv.cxx; sourceTree = "<group>"; };
- BE82C44A18CA18610050EB79 /* svdmrkv1.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdmrkv1.cxx; path = ../../../svx/source/svdraw/svdmrkv1.cxx; sourceTree = "<group>"; };
- BE82C44B18CA18610050EB79 /* svdoashp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdoashp.cxx; path = ../../../svx/source/svdraw/svdoashp.cxx; sourceTree = "<group>"; };
- BE82C44C18CA18610050EB79 /* svdoattr.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdoattr.cxx; path = ../../../svx/source/svdraw/svdoattr.cxx; sourceTree = "<group>"; };
- BE82C44D18CA18610050EB79 /* svdobj.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdobj.cxx; path = ../../../svx/source/svdraw/svdobj.cxx; sourceTree = "<group>"; };
- BE82C44E18CA18610050EB79 /* svdocapt.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdocapt.cxx; path = ../../../svx/source/svdraw/svdocapt.cxx; sourceTree = "<group>"; };
- BE82C44F18CA18610050EB79 /* svdocirc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdocirc.cxx; path = ../../../svx/source/svdraw/svdocirc.cxx; sourceTree = "<group>"; };
- BE82C45018CA18610050EB79 /* svdoedge.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdoedge.cxx; path = ../../../svx/source/svdraw/svdoedge.cxx; sourceTree = "<group>"; };
- BE82C45118CA18610050EB79 /* svdograf.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdograf.cxx; path = ../../../svx/source/svdraw/svdograf.cxx; sourceTree = "<group>"; };
- BE82C45218CA18610050EB79 /* svdogrp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdogrp.cxx; path = ../../../svx/source/svdraw/svdogrp.cxx; sourceTree = "<group>"; };
- BE82C45318CA18610050EB79 /* svdomeas.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdomeas.cxx; path = ../../../svx/source/svdraw/svdomeas.cxx; sourceTree = "<group>"; };
- BE82C45418CA18610050EB79 /* svdomedia.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdomedia.cxx; path = ../../../svx/source/svdraw/svdomedia.cxx; sourceTree = "<group>"; };
- BE82C45518CA18610050EB79 /* svdoole2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdoole2.cxx; path = ../../../svx/source/svdraw/svdoole2.cxx; sourceTree = "<group>"; };
- BE82C45618CA18610050EB79 /* svdopage.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdopage.cxx; path = ../../../svx/source/svdraw/svdopage.cxx; sourceTree = "<group>"; };
- BE82C45718CA18610050EB79 /* svdopath.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdopath.cxx; path = ../../../svx/source/svdraw/svdopath.cxx; sourceTree = "<group>"; };
- BE82C45818CA18610050EB79 /* svdorect.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdorect.cxx; path = ../../../svx/source/svdraw/svdorect.cxx; sourceTree = "<group>"; };
- BE82C45918CA18610050EB79 /* svdotext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdotext.cxx; path = ../../../svx/source/svdraw/svdotext.cxx; sourceTree = "<group>"; };
- BE82C45A18CA18610050EB79 /* svdotextdecomposition.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdotextdecomposition.cxx; path = ../../../svx/source/svdraw/svdotextdecomposition.cxx; sourceTree = "<group>"; };
- BE82C45B18CA18610050EB79 /* svdotextpathdecomposition.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdotextpathdecomposition.cxx; path = ../../../svx/source/svdraw/svdotextpathdecomposition.cxx; sourceTree = "<group>"; };
- BE82C45C18CA18610050EB79 /* svdotxat.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdotxat.cxx; path = ../../../svx/source/svdraw/svdotxat.cxx; sourceTree = "<group>"; };
- BE82C45D18CA18610050EB79 /* svdotxdr.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdotxdr.cxx; path = ../../../svx/source/svdraw/svdotxdr.cxx; sourceTree = "<group>"; };
- BE82C45E18CA18610050EB79 /* svdotxed.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdotxed.cxx; path = ../../../svx/source/svdraw/svdotxed.cxx; sourceTree = "<group>"; };
- BE82C45F18CA18610050EB79 /* svdotxfl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdotxfl.cxx; path = ../../../svx/source/svdraw/svdotxfl.cxx; sourceTree = "<group>"; };
- BE82C46018CA18610050EB79 /* svdotxln.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdotxln.cxx; path = ../../../svx/source/svdraw/svdotxln.cxx; sourceTree = "<group>"; };
- BE82C46118CA18610050EB79 /* svdotxtr.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdotxtr.cxx; path = ../../../svx/source/svdraw/svdotxtr.cxx; sourceTree = "<group>"; };
- BE82C46218CA18610050EB79 /* svdouno.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdouno.cxx; path = ../../../svx/source/svdraw/svdouno.cxx; sourceTree = "<group>"; };
- BE82C46318CA18610050EB79 /* svdoutl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdoutl.cxx; path = ../../../svx/source/svdraw/svdoutl.cxx; sourceTree = "<group>"; };
- BE82C46418CA18610050EB79 /* svdoutlinercache.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdoutlinercache.cxx; path = ../../../svx/source/svdraw/svdoutlinercache.cxx; sourceTree = "<group>"; };
- BE82C46518CA18610050EB79 /* svdovirt.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdovirt.cxx; path = ../../../svx/source/svdraw/svdovirt.cxx; sourceTree = "<group>"; };
- BE82C46618CA18610050EB79 /* svdpage.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdpage.cxx; path = ../../../svx/source/svdraw/svdpage.cxx; sourceTree = "<group>"; };
- BE82C46718CA18610050EB79 /* svdpagv.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdpagv.cxx; path = ../../../svx/source/svdraw/svdpagv.cxx; sourceTree = "<group>"; };
- BE82C46818CA18610050EB79 /* svdpntv.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdpntv.cxx; path = ../../../svx/source/svdraw/svdpntv.cxx; sourceTree = "<group>"; };
- BE82C46918CA18610050EB79 /* svdpoev.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdpoev.cxx; path = ../../../svx/source/svdraw/svdpoev.cxx; sourceTree = "<group>"; };
- BE82C46A18CA18610050EB79 /* svdsnpv.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdsnpv.cxx; path = ../../../svx/source/svdraw/svdsnpv.cxx; sourceTree = "<group>"; };
- BE82C46B18CA18610050EB79 /* svdtext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdtext.cxx; path = ../../../svx/source/svdraw/svdtext.cxx; sourceTree = "<group>"; };
- BE82C46C18CA18610050EB79 /* svdtrans.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdtrans.cxx; path = ../../../svx/source/svdraw/svdtrans.cxx; sourceTree = "<group>"; };
- BE82C46D18CA18610050EB79 /* svdundo.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdundo.cxx; path = ../../../svx/source/svdraw/svdundo.cxx; sourceTree = "<group>"; };
- BE82C46E18CA18610050EB79 /* svdview.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdview.cxx; path = ../../../svx/source/svdraw/svdview.cxx; sourceTree = "<group>"; };
- BE82C46F18CA18610050EB79 /* svdviter.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdviter.cxx; path = ../../../svx/source/svdraw/svdviter.cxx; sourceTree = "<group>"; };
- BE82C47018CA18610050EB79 /* svdxcgv.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdxcgv.cxx; path = ../../../svx/source/svdraw/svdxcgv.cxx; sourceTree = "<group>"; };
- BE82C47318CA192D0050EB79 /* baseprocessor2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = baseprocessor2d.cxx; path = ../../../drawinglayer/source/processor2d/baseprocessor2d.cxx; sourceTree = "<group>"; };
- BE82C47418CA192D0050EB79 /* contourextractor2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = contourextractor2d.cxx; path = ../../../drawinglayer/source/processor2d/contourextractor2d.cxx; sourceTree = "<group>"; };
- BE82C47518CA192D0050EB79 /* getdigitlanguage.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = getdigitlanguage.cxx; path = ../../../drawinglayer/source/processor2d/getdigitlanguage.cxx; sourceTree = "<group>"; };
- BE82C47618CA192D0050EB79 /* helperwrongspellrenderer.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = helperwrongspellrenderer.cxx; path = ../../../drawinglayer/source/processor2d/helperwrongspellrenderer.cxx; sourceTree = "<group>"; };
- BE82C47718CA192D0050EB79 /* hittestprocessor2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = hittestprocessor2d.cxx; path = ../../../drawinglayer/source/processor2d/hittestprocessor2d.cxx; sourceTree = "<group>"; };
- BE82C47818CA192D0050EB79 /* linegeometryextractor2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = linegeometryextractor2d.cxx; path = ../../../drawinglayer/source/processor2d/linegeometryextractor2d.cxx; sourceTree = "<group>"; };
- BE82C47918CA192D0050EB79 /* objectinfoextractor2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = objectinfoextractor2d.cxx; path = ../../../drawinglayer/source/processor2d/objectinfoextractor2d.cxx; sourceTree = "<group>"; };
- BE82C47A18CA192D0050EB79 /* processor2dtools.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = processor2dtools.cxx; path = ../../../drawinglayer/source/processor2d/processor2dtools.cxx; sourceTree = "<group>"; };
- BE82C47B18CA192D0050EB79 /* processorfromoutputdevice.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = processorfromoutputdevice.cxx; path = ../../../drawinglayer/source/processor2d/processorfromoutputdevice.cxx; sourceTree = "<group>"; };
- BE82C47C18CA192D0050EB79 /* textaspolygonextractor2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textaspolygonextractor2d.cxx; path = ../../../drawinglayer/source/processor2d/textaspolygonextractor2d.cxx; sourceTree = "<group>"; };
- BE82C47D18CA192D0050EB79 /* vclhelperbufferdevice.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vclhelperbufferdevice.cxx; path = ../../../drawinglayer/source/processor2d/vclhelperbufferdevice.cxx; sourceTree = "<group>"; };
- BE82C47E18CA192D0050EB79 /* vclmetafileprocessor2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vclmetafileprocessor2d.cxx; path = ../../../drawinglayer/source/processor2d/vclmetafileprocessor2d.cxx; sourceTree = "<group>"; };
- BE82C47F18CA192D0050EB79 /* vclpixelprocessor2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vclpixelprocessor2d.cxx; path = ../../../drawinglayer/source/processor2d/vclpixelprocessor2d.cxx; sourceTree = "<group>"; };
- BE82C48018CA192D0050EB79 /* vclprocessor2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vclprocessor2d.cxx; path = ../../../drawinglayer/source/processor2d/vclprocessor2d.cxx; sourceTree = "<group>"; };
- BE82C48218CA19920050EB79 /* animatedprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = animatedprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/animatedprimitive2d.cxx; sourceTree = "<group>"; };
- BE82C48318CA19920050EB79 /* backgroundcolorprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = backgroundcolorprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/backgroundcolorprimitive2d.cxx; sourceTree = "<group>"; };
- BE82C48418CA19920050EB79 /* baseprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = baseprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/baseprimitive2d.cxx; sourceTree = "<group>"; };
- BE82C48518CA19920050EB79 /* bitmapprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bitmapprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/bitmapprimitive2d.cxx; sourceTree = "<group>"; };
- BE82C48618CA19920050EB79 /* borderlineprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = borderlineprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/borderlineprimitive2d.cxx; sourceTree = "<group>"; };
- BE82C48718CA19920050EB79 /* clippedborderlineprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = clippedborderlineprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/clippedborderlineprimitive2d.cxx; sourceTree = "<group>"; };
- BE82C48818CA19920050EB79 /* controlprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = controlprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/controlprimitive2d.cxx; sourceTree = "<group>"; };
- BE82C48918CA19920050EB79 /* cropprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cropprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/cropprimitive2d.cxx; sourceTree = "<group>"; };
- BE82C48A18CA19920050EB79 /* discretebitmapprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = discretebitmapprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/discretebitmapprimitive2d.cxx; sourceTree = "<group>"; };
- BE82C48B18CA19920050EB79 /* discreteshadowprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = discreteshadowprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/discreteshadowprimitive2d.cxx; sourceTree = "<group>"; };
- BE82C48C18CA19920050EB79 /* embedded3dprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = embedded3dprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/embedded3dprimitive2d.cxx; sourceTree = "<group>"; };
- BE82C48D18CA19920050EB79 /* epsprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = epsprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/epsprimitive2d.cxx; sourceTree = "<group>"; };
- BE82C48E18CA19920050EB79 /* fillgradientprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fillgradientprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/fillgradientprimitive2d.cxx; sourceTree = "<group>"; };
- BE82C48F18CA19920050EB79 /* fillgraphicprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fillgraphicprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/fillgraphicprimitive2d.cxx; sourceTree = "<group>"; };
- BE82C49018CA19920050EB79 /* fillhatchprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fillhatchprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/fillhatchprimitive2d.cxx; sourceTree = "<group>"; };
- BE82C49118CA19920050EB79 /* graphicprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = graphicprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/graphicprimitive2d.cxx; sourceTree = "<group>"; };
- BE82C49218CA19920050EB79 /* graphicprimitivehelper2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = graphicprimitivehelper2d.cxx; path = ../../../drawinglayer/source/primitive2d/graphicprimitivehelper2d.cxx; sourceTree = "<group>"; };
- BE82C49318CA19920050EB79 /* gridprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gridprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/gridprimitive2d.cxx; sourceTree = "<group>"; };
- BE82C49418CA19920050EB79 /* groupprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = groupprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/groupprimitive2d.cxx; sourceTree = "<group>"; };
- BE82C49518CA19920050EB79 /* helplineprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = helplineprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/helplineprimitive2d.cxx; sourceTree = "<group>"; };
- BE82C49618CA19920050EB79 /* hiddengeometryprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = hiddengeometryprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/hiddengeometryprimitive2d.cxx; sourceTree = "<group>"; };
- BE82C49718CA19920050EB79 /* invertprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = invertprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/invertprimitive2d.cxx; sourceTree = "<group>"; };
- BE82C49818CA19920050EB79 /* markerarrayprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = markerarrayprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/markerarrayprimitive2d.cxx; sourceTree = "<group>"; };
- BE82C49918CA19920050EB79 /* maskprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = maskprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/maskprimitive2d.cxx; sourceTree = "<group>"; };
- BE82C49A18CA19920050EB79 /* mediaprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = mediaprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/mediaprimitive2d.cxx; sourceTree = "<group>"; };
- BE82C49B18CA19920050EB79 /* metafileprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = metafileprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/metafileprimitive2d.cxx; sourceTree = "<group>"; };
- BE82C49C18CA19920050EB79 /* modifiedcolorprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = modifiedcolorprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/modifiedcolorprimitive2d.cxx; sourceTree = "<group>"; };
- BE82C49D18CA19920050EB79 /* objectinfoprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = objectinfoprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/objectinfoprimitive2d.cxx; sourceTree = "<group>"; };
- BE82C49E18CA19920050EB79 /* pagepreviewprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pagepreviewprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/pagepreviewprimitive2d.cxx; sourceTree = "<group>"; };
- BE82C49F18CA19920050EB79 /* patternfillprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = patternfillprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/patternfillprimitive2d.cxx; sourceTree = "<group>"; };
- BE82C4A018CA19920050EB79 /* pointarrayprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pointarrayprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/pointarrayprimitive2d.cxx; sourceTree = "<group>"; };
- BE82C4A118CA19920050EB79 /* polygonprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = polygonprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/polygonprimitive2d.cxx; sourceTree = "<group>"; };
- BE82C4A218CA19920050EB79 /* polypolygonprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = polypolygonprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/polypolygonprimitive2d.cxx; sourceTree = "<group>"; };
- BE82C4A318CA19920050EB79 /* primitivetools2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = primitivetools2d.cxx; path = ../../../drawinglayer/source/primitive2d/primitivetools2d.cxx; sourceTree = "<group>"; };
- BE82C4A418CA19920050EB79 /* sceneprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sceneprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/sceneprimitive2d.cxx; sourceTree = "<group>"; };
- BE82C4A518CA19920050EB79 /* sdrdecompositiontools2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sdrdecompositiontools2d.cxx; path = ../../../drawinglayer/source/primitive2d/sdrdecompositiontools2d.cxx; sourceTree = "<group>"; };
- BE82C4A618CA19920050EB79 /* shadowprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = shadowprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/shadowprimitive2d.cxx; sourceTree = "<group>"; };
- BE82C4A718CA19920050EB79 /* structuretagprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = structuretagprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/structuretagprimitive2d.cxx; sourceTree = "<group>"; };
- BE82C4A818CA19920050EB79 /* svggradientprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svggradientprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/svggradientprimitive2d.cxx; sourceTree = "<group>"; };
- BE82C4A918CA19920050EB79 /* textbreakuphelper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textbreakuphelper.cxx; path = ../../../drawinglayer/source/primitive2d/textbreakuphelper.cxx; sourceTree = "<group>"; };
- BE82C4AA18CA19920050EB79 /* textdecoratedprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textdecoratedprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/textdecoratedprimitive2d.cxx; sourceTree = "<group>"; };
- BE82C4AB18CA19920050EB79 /* texteffectprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = texteffectprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/texteffectprimitive2d.cxx; sourceTree = "<group>"; };
- BE82C4AC18CA19920050EB79 /* textenumsprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textenumsprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/textenumsprimitive2d.cxx; sourceTree = "<group>"; };
- BE82C4AD18CA19920050EB79 /* texthierarchyprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = texthierarchyprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/texthierarchyprimitive2d.cxx; sourceTree = "<group>"; };
- BE82C4AE18CA19920050EB79 /* textlayoutdevice.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textlayoutdevice.cxx; path = ../../../drawinglayer/source/primitive2d/textlayoutdevice.cxx; sourceTree = "<group>"; };
- BE82C4AF18CA19920050EB79 /* textlineprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textlineprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/textlineprimitive2d.cxx; sourceTree = "<group>"; };
- BE82C4B018CA19920050EB79 /* textprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/textprimitive2d.cxx; sourceTree = "<group>"; };
- BE82C4B118CA19920050EB79 /* textstrikeoutprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textstrikeoutprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/textstrikeoutprimitive2d.cxx; sourceTree = "<group>"; };
- BE82C4B218CA19920050EB79 /* transformprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = transformprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/transformprimitive2d.cxx; sourceTree = "<group>"; };
- BE82C4B318CA19920050EB79 /* transparenceprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = transparenceprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/transparenceprimitive2d.cxx; sourceTree = "<group>"; };
- BE82C4B418CA19920050EB79 /* unifiedtransparenceprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = unifiedtransparenceprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/unifiedtransparenceprimitive2d.cxx; sourceTree = "<group>"; };
- BE82C4B518CA19920050EB79 /* wallpaperprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = wallpaperprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/wallpaperprimitive2d.cxx; sourceTree = "<group>"; };
- BE82C4B618CA19920050EB79 /* wrongspellprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = wrongspellprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/wrongspellprimitive2d.cxx; sourceTree = "<group>"; };
- BE82C4BB18CDBCC50050EB79 /* pagepreviewlayout.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pagepreviewlayout.cxx; path = ../../../sw/source/core/view/pagepreviewlayout.cxx; sourceTree = "<group>"; };
- BE82C4BC18CDBCC50050EB79 /* printdata.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = printdata.cxx; path = ../../../sw/source/core/view/printdata.cxx; sourceTree = "<group>"; };
- BE82C4BD18CDBCC50050EB79 /* vdraw.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vdraw.cxx; path = ../../../sw/source/core/view/vdraw.cxx; sourceTree = "<group>"; };
- BE82C4BE18CDBCC50050EB79 /* viewimp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewimp.cxx; path = ../../../sw/source/core/view/viewimp.cxx; sourceTree = "<group>"; };
- BE82C4BF18CDBCC50050EB79 /* viewpg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewpg.cxx; path = ../../../sw/source/core/view/viewpg.cxx; sourceTree = "<group>"; };
- BE82C4C018CDBCC50050EB79 /* viewsh.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewsh.cxx; path = ../../../sw/source/core/view/viewsh.cxx; sourceTree = "<group>"; };
- BE82C4C118CDBCC50050EB79 /* vnew.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vnew.cxx; path = ../../../sw/source/core/view/vnew.cxx; sourceTree = "<group>"; };
- BE82C4C218CDBCC50050EB79 /* vprint.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vprint.cxx; path = ../../../sw/source/core/view/vprint.cxx; sourceTree = "<group>"; };
- BE82C4C418CE6DBE0050EB79 /* abstdlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = abstdlg.cxx; path = ../../../vcl/source/window/abstdlg.cxx; sourceTree = "<group>"; };
- BE82C4C518CE6DBE0050EB79 /* accel.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = accel.cxx; path = ../../../vcl/source/window/accel.cxx; sourceTree = "<group>"; };
- BE82C4C618CE6DBE0050EB79 /* accmgr.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = accmgr.cxx; path = ../../../vcl/source/window/accmgr.cxx; sourceTree = "<group>"; };
- BE82C4C718CE6DBE0050EB79 /* brdwin.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = brdwin.cxx; path = ../../../vcl/source/window/brdwin.cxx; sourceTree = "<group>"; };
- BE82C4C818CE6DBE0050EB79 /* btndlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = btndlg.cxx; path = ../../../vcl/source/window/btndlg.cxx; sourceTree = "<group>"; };
- BE82C4C918CE6DBE0050EB79 /* builder.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = builder.cxx; path = ../../../vcl/source/window/builder.cxx; sourceTree = "<group>"; };
- BE82C4CA18CE6DBE0050EB79 /* commandevent.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = commandevent.cxx; path = ../../../vcl/source/window/commandevent.cxx; sourceTree = "<group>"; };
- BE82C4CB18CE6DBE0050EB79 /* cursor.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cursor.cxx; path = ../../../vcl/source/window/cursor.cxx; sourceTree = "<group>"; };
- BE82C4CC18CE6DBE0050EB79 /* decoview.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = decoview.cxx; path = ../../../vcl/source/window/decoview.cxx; sourceTree = "<group>"; };
- BE82C4CD18CE6DBE0050EB79 /* dialog.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dialog.cxx; path = ../../../vcl/source/window/dialog.cxx; sourceTree = "<group>"; };
- BE82C4CE18CE6DBE0050EB79 /* dlgctrl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dlgctrl.cxx; path = ../../../vcl/source/window/dlgctrl.cxx; sourceTree = "<group>"; };
- BE82C4CF18CE6DBE0050EB79 /* dndevdis.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dndevdis.cxx; path = ../../../vcl/source/window/dndevdis.cxx; sourceTree = "<group>"; };
- BE82C4D018CE6DBE0050EB79 /* dndlcon.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dndlcon.cxx; path = ../../../vcl/source/window/dndlcon.cxx; sourceTree = "<group>"; };
- BE82C4D118CE6DBE0050EB79 /* dockingarea.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dockingarea.cxx; path = ../../../vcl/source/window/dockingarea.cxx; sourceTree = "<group>"; };
- BE82C4D218CE6DBE0050EB79 /* dockmgr.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dockmgr.cxx; path = ../../../vcl/source/window/dockmgr.cxx; sourceTree = "<group>"; };
- BE82C4D318CE6DBE0050EB79 /* dockwin.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dockwin.cxx; path = ../../../vcl/source/window/dockwin.cxx; sourceTree = "<group>"; };
- BE82C4D418CE6DBE0050EB79 /* floatwin.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = floatwin.cxx; path = ../../../vcl/source/window/floatwin.cxx; sourceTree = "<group>"; };
- BE82C4D518CE6DBE0050EB79 /* introwin.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = introwin.cxx; path = ../../../vcl/source/window/introwin.cxx; sourceTree = "<group>"; };
- BE82C4D618CE6DBE0050EB79 /* keycod.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = keycod.cxx; path = ../../../vcl/source/window/keycod.cxx; sourceTree = "<group>"; };
- BE82C4D718CE6DBE0050EB79 /* keyevent.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = keyevent.cxx; path = ../../../vcl/source/window/keyevent.cxx; sourceTree = "<group>"; };
- BE82C4D818CE6DBE0050EB79 /* layout.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = layout.cxx; path = ../../../vcl/source/window/layout.cxx; sourceTree = "<group>"; };
- BE82C4D918CE6DBE0050EB79 /* menu.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = menu.cxx; path = ../../../vcl/source/window/menu.cxx; sourceTree = "<group>"; };
- BE82C4DA18CE6DBE0050EB79 /* mnemonic.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = mnemonic.cxx; path = ../../../vcl/source/window/mnemonic.cxx; sourceTree = "<group>"; };
- BE82C4DB18CE6DBE0050EB79 /* mnemonicengine.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = mnemonicengine.cxx; path = ../../../vcl/source/window/mnemonicengine.cxx; sourceTree = "<group>"; };
- BE82C4DC18CE6DBE0050EB79 /* mouseevent.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = mouseevent.cxx; path = ../../../vcl/source/window/mouseevent.cxx; sourceTree = "<group>"; };
- BE82C4DD18CE6DBE0050EB79 /* msgbox.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = msgbox.cxx; path = ../../../vcl/source/window/msgbox.cxx; sourceTree = "<group>"; };
- BE82C4DE18CE6DBE0050EB79 /* popupmenuwindow.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = popupmenuwindow.cxx; path = ../../../vcl/source/window/popupmenuwindow.cxx; sourceTree = "<group>"; };
- BE82C4DF18CE6DBE0050EB79 /* printdlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = printdlg.cxx; path = ../../../vcl/source/window/printdlg.cxx; sourceTree = "<group>"; };
- BE82C4E018CE6DBE0050EB79 /* scrwnd.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = scrwnd.cxx; path = ../../../vcl/source/window/scrwnd.cxx; sourceTree = "<group>"; };
- BE82C4E118CE6DBE0050EB79 /* seleng.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = seleng.cxx; path = ../../../vcl/source/window/seleng.cxx; sourceTree = "<group>"; };
- BE82C4E218CE6DBE0050EB79 /* split.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = split.cxx; path = ../../../vcl/source/window/split.cxx; sourceTree = "<group>"; };
- BE82C4E318CE6DBE0050EB79 /* splitwin.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = splitwin.cxx; path = ../../../vcl/source/window/splitwin.cxx; sourceTree = "<group>"; };
- BE82C4E418CE6DBE0050EB79 /* status.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = status.cxx; path = ../../../vcl/source/window/status.cxx; sourceTree = "<group>"; };
- BE82C4E518CE6DBE0050EB79 /* syschild.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = syschild.cxx; path = ../../../vcl/source/window/syschild.cxx; sourceTree = "<group>"; };
- BE82C4E618CE6DBE0050EB79 /* syswin.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = syswin.cxx; path = ../../../vcl/source/window/syswin.cxx; sourceTree = "<group>"; };
- BE82C4E718CE6DBE0050EB79 /* tabdlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tabdlg.cxx; path = ../../../vcl/source/window/tabdlg.cxx; sourceTree = "<group>"; };
- BE82C4E818CE6DBE0050EB79 /* tabpage.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tabpage.cxx; path = ../../../vcl/source/window/tabpage.cxx; sourceTree = "<group>"; };
- BE82C4E918CE6DBE0050EB79 /* taskpanelist.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = taskpanelist.cxx; path = ../../../vcl/source/window/taskpanelist.cxx; sourceTree = "<group>"; };
- BE82C4EA18CE6DBE0050EB79 /* toolbox.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = toolbox.cxx; path = ../../../vcl/source/window/toolbox.cxx; sourceTree = "<group>"; };
- BE82C4EB18CE6DBE0050EB79 /* toolbox2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = toolbox2.cxx; path = ../../../vcl/source/window/toolbox2.cxx; sourceTree = "<group>"; };
- BE82C4EC18CE6DBE0050EB79 /* window.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = window.cxx; path = ../../../vcl/source/window/window.cxx; sourceTree = "<group>"; };
- BE82C4ED18CE6DBE0050EB79 /* window2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = window2.cxx; path = ../../../vcl/source/window/window2.cxx; sourceTree = "<group>"; };
- BE82C4EE18CE6DBE0050EB79 /* window3.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = window3.cxx; path = ../../../vcl/source/window/window3.cxx; sourceTree = "<group>"; };
- BE82C4EF18CE6DBE0050EB79 /* winproc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = winproc.cxx; path = ../../../vcl/source/window/winproc.cxx; sourceTree = "<group>"; };
- BE82C4F018CE6DBE0050EB79 /* wrkwin.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = wrkwin.cxx; path = ../../../vcl/source/window/wrkwin.cxx; sourceTree = "<group>"; };
- BE9931C5199A185D0008A364 /* accessiblecomponenthelper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = accessiblecomponenthelper.cxx; path = ../../../comphelper/source/misc/accessiblecomponenthelper.cxx; sourceTree = "<group>"; };
- BE9931C6199A185D0008A364 /* accessiblecontexthelper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = accessiblecontexthelper.cxx; path = ../../../comphelper/source/misc/accessiblecontexthelper.cxx; sourceTree = "<group>"; };
- BE9931C7199A185D0008A364 /* accessibleeventnotifier.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = accessibleeventnotifier.cxx; path = ../../../comphelper/source/misc/accessibleeventnotifier.cxx; sourceTree = "<group>"; };
- BE9931C8199A185D0008A364 /* accessiblekeybindinghelper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = accessiblekeybindinghelper.cxx; path = ../../../comphelper/source/misc/accessiblekeybindinghelper.cxx; sourceTree = "<group>"; };
- BE9931C9199A185D0008A364 /* accessibleselectionhelper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = accessibleselectionhelper.cxx; path = ../../../comphelper/source/misc/accessibleselectionhelper.cxx; sourceTree = "<group>"; };
- BE9931CA199A185D0008A364 /* accessibletexthelper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = accessibletexthelper.cxx; path = ../../../comphelper/source/misc/accessibletexthelper.cxx; sourceTree = "<group>"; };
- BE9931CB199A185D0008A364 /* accessiblewrapper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = accessiblewrapper.cxx; path = ../../../comphelper/source/misc/accessiblewrapper.cxx; sourceTree = "<group>"; };
- BE9931CC199A185D0008A364 /* accimplaccess.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = accimplaccess.cxx; path = ../../../comphelper/source/misc/accimplaccess.cxx; sourceTree = "<group>"; };
- BE9931CD199A185D0008A364 /* anycompare.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = anycompare.cxx; path = ../../../comphelper/source/misc/anycompare.cxx; sourceTree = "<group>"; };
- BE9931CE199A185D0008A364 /* anytostring.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = anytostring.cxx; path = ../../../comphelper/source/misc/anytostring.cxx; sourceTree = "<group>"; };
- BE9931CF199A185D0008A364 /* asyncnotification.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = asyncnotification.cxx; path = ../../../comphelper/source/misc/asyncnotification.cxx; sourceTree = "<group>"; };
- BE9931D0199A185D0008A364 /* comphelper_module.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = comphelper_module.cxx; path = ../../../comphelper/source/misc/comphelper_module.cxx; sourceTree = "<group>"; };
- BE9931D1199A185D0008A364 /* comphelper_services.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = comphelper_services.cxx; path = ../../../comphelper/source/misc/comphelper_services.cxx; sourceTree = "<group>"; };
- BE9931D2199A185D0008A364 /* componentbase.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = componentbase.cxx; path = ../../../comphelper/source/misc/componentbase.cxx; sourceTree = "<group>"; };
- BE9931D3199A185D0008A364 /* componentmodule.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = componentmodule.cxx; path = ../../../comphelper/source/misc/componentmodule.cxx; sourceTree = "<group>"; };
- BE9931D4199A185D0008A364 /* configuration.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = configuration.cxx; path = ../../../comphelper/source/misc/configuration.cxx; sourceTree = "<group>"; };
- BE9931D5199A185D0008A364 /* configurationhelper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = configurationhelper.cxx; path = ../../../comphelper/source/misc/configurationhelper.cxx; sourceTree = "<group>"; };
- BE9931D6199A185D0008A364 /* docpasswordhelper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docpasswordhelper.cxx; path = ../../../comphelper/source/misc/docpasswordhelper.cxx; sourceTree = "<group>"; };
- BE9931D7199A185D0008A364 /* docpasswordrequest.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docpasswordrequest.cxx; path = ../../../comphelper/source/misc/docpasswordrequest.cxx; sourceTree = "<group>"; };
- BE9931D8199A185D0008A364 /* documentinfo.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = documentinfo.cxx; path = ../../../comphelper/source/misc/documentinfo.cxx; sourceTree = "<group>"; };
- BE9931D9199A185D0008A364 /* documentiologring.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = documentiologring.cxx; path = ../../../comphelper/source/misc/documentiologring.cxx; sourceTree = "<group>"; };
- BE9931DA199A185D0008A364 /* evtlistenerhlp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = evtlistenerhlp.cxx; path = ../../../comphelper/source/misc/evtlistenerhlp.cxx; sourceTree = "<group>"; };
- BE9931DB199A185D0008A364 /* evtmethodhelper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = evtmethodhelper.cxx; path = ../../../comphelper/source/misc/evtmethodhelper.cxx; sourceTree = "<group>"; };
- BE9931DC199A185D0008A364 /* expandmacro.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = expandmacro.cxx; path = ../../../comphelper/source/misc/expandmacro.cxx; sourceTree = "<group>"; };
- BE9931DD199A185D0008A364 /* instancelocker.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = instancelocker.cxx; path = ../../../comphelper/source/misc/instancelocker.cxx; sourceTree = "<group>"; };
- BE9931DE199A185D0008A364 /* interaction.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = interaction.cxx; path = ../../../comphelper/source/misc/interaction.cxx; sourceTree = "<group>"; };
- BE9931DF199A185D0008A364 /* listenernotification.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = listenernotification.cxx; path = ../../../comphelper/source/misc/listenernotification.cxx; sourceTree = "<group>"; };
- BE9931E0199A185D0008A364 /* logging.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = logging.cxx; path = ../../../comphelper/source/misc/logging.cxx; sourceTree = "<group>"; };
- BE9931E1199A185D0008A364 /* mimeconfighelper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = mimeconfighelper.cxx; path = ../../../comphelper/source/misc/mimeconfighelper.cxx; sourceTree = "<group>"; };
- BE9931E2199A185D0008A364 /* namedvaluecollection.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = namedvaluecollection.cxx; path = ../../../comphelper/source/misc/namedvaluecollection.cxx; sourceTree = "<group>"; };
- BE9931E3199A185D0008A364 /* numberedcollection.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = numberedcollection.cxx; path = ../../../comphelper/source/misc/numberedcollection.cxx; sourceTree = "<group>"; };
- BE9931E4199A185D0008A364 /* numbers.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = numbers.cxx; path = ../../../comphelper/source/misc/numbers.cxx; sourceTree = "<group>"; };
- BE9931E5199A185D0008A364 /* officeresourcebundle.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = officeresourcebundle.cxx; path = ../../../comphelper/source/misc/officeresourcebundle.cxx; sourceTree = "<group>"; };
- BE9931E6199A185D0008A364 /* officerestartmanager.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = officerestartmanager.cxx; path = ../../../comphelper/source/misc/officerestartmanager.cxx; sourceTree = "<group>"; };
- BE9931E7199A185D0008A364 /* proxyaggregation.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = proxyaggregation.cxx; path = ../../../comphelper/source/misc/proxyaggregation.cxx; sourceTree = "<group>"; };
- BE9931E8199A185D0008A364 /* random.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = random.cxx; path = ../../../comphelper/source/misc/random.cxx; sourceTree = "<group>"; };
- BE9931E9199A185D0008A364 /* scopeguard.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = scopeguard.cxx; path = ../../../comphelper/source/misc/scopeguard.cxx; sourceTree = "<group>"; };
- BE9931EA199A185D0008A364 /* SelectionMultiplex.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = SelectionMultiplex.cxx; path = ../../../comphelper/source/misc/SelectionMultiplex.cxx; sourceTree = "<group>"; };
- BE9931EB199A185D0008A364 /* sequence.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sequence.cxx; path = ../../../comphelper/source/misc/sequence.cxx; sourceTree = "<group>"; };
- BE9931EC199A185D0008A364 /* sequenceashashmap.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sequenceashashmap.cxx; path = ../../../comphelper/source/misc/sequenceashashmap.cxx; sourceTree = "<group>"; };
- BE9931ED199A185D0008A364 /* servicedecl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = servicedecl.cxx; path = ../../../comphelper/source/misc/servicedecl.cxx; sourceTree = "<group>"; };
- BE9931EE199A185D0008A364 /* serviceinfohelper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = serviceinfohelper.cxx; path = ../../../comphelper/source/misc/serviceinfohelper.cxx; sourceTree = "<group>"; };
- BE9931EF199A185D0008A364 /* sharedmutex.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sharedmutex.cxx; path = ../../../comphelper/source/misc/sharedmutex.cxx; sourceTree = "<group>"; };
- BE9931F0199A185D0008A364 /* solarmutex.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = solarmutex.cxx; path = ../../../comphelper/source/misc/solarmutex.cxx; sourceTree = "<group>"; };
- BE9931F1199A185D0008A364 /* stillreadwriteinteraction.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = stillreadwriteinteraction.cxx; path = ../../../comphelper/source/misc/stillreadwriteinteraction.cxx; sourceTree = "<group>"; };
- BE9931F2199A185D0008A364 /* storagehelper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = storagehelper.cxx; path = ../../../comphelper/source/misc/storagehelper.cxx; sourceTree = "<group>"; };
- BE9931F3199A185D0008A364 /* string.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = string.cxx; path = ../../../comphelper/source/misc/string.cxx; sourceTree = "<group>"; };
- BE9931F4199A185D0008A364 /* synchronousdispatch.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = synchronousdispatch.cxx; path = ../../../comphelper/source/misc/synchronousdispatch.cxx; sourceTree = "<group>"; };
- BE9931F5199A185D0008A364 /* syntaxhighlight.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = syntaxhighlight.cxx; path = ../../../comphelper/source/misc/syntaxhighlight.cxx; sourceTree = "<group>"; };
- BE9931F6199A185D0008A364 /* types.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = types.cxx; path = ../../../comphelper/source/misc/types.cxx; sourceTree = "<group>"; };
- BE9931F7199A185D0008A364 /* weak.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = weak.cxx; path = ../../../comphelper/source/misc/weak.cxx; sourceTree = "<group>"; };
- BE9931F8199A185D0008A364 /* weakeventlistener.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = weakeventlistener.cxx; path = ../../../comphelper/source/misc/weakeventlistener.cxx; sourceTree = "<group>"; };
- BE9931FC199A1BF00008A364 /* ciphercontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ciphercontext.cxx; path = ../../../xmlsecurity/source/xmlsec/nss/ciphercontext.cxx; sourceTree = "<group>"; };
- BE9931FD199A1BF00008A364 /* digestcontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = digestcontext.cxx; path = ../../../xmlsecurity/source/xmlsec/nss/digestcontext.cxx; sourceTree = "<group>"; };
- BE9931FE199A1BF00008A364 /* nssinitializer.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = nssinitializer.cxx; path = ../../../xmlsecurity/source/xmlsec/nss/nssinitializer.cxx; sourceTree = "<group>"; };
- BE9931FF199A1BF00008A364 /* sanextension_nssimpl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sanextension_nssimpl.cxx; path = ../../../xmlsecurity/source/xmlsec/nss/sanextension_nssimpl.cxx; sourceTree = "<group>"; };
- BE993200199A1BF00008A364 /* secerror.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = secerror.cxx; path = ../../../xmlsecurity/source/xmlsec/nss/secerror.cxx; sourceTree = "<group>"; };
- BE993201199A1BF00008A364 /* securityenvironment_nssimpl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = securityenvironment_nssimpl.cxx; path = ../../../xmlsecurity/source/xmlsec/nss/securityenvironment_nssimpl.cxx; sourceTree = "<group>"; };
- BE993202199A1BF00008A364 /* seinitializer_nssimpl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = seinitializer_nssimpl.cxx; path = ../../../xmlsecurity/source/xmlsec/nss/seinitializer_nssimpl.cxx; sourceTree = "<group>"; };
- BE993203199A1BF00008A364 /* x509certificate_nssimpl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = x509certificate_nssimpl.cxx; path = ../../../xmlsecurity/source/xmlsec/nss/x509certificate_nssimpl.cxx; sourceTree = "<group>"; };
- BE993204199A1BF00008A364 /* xmlencryption_nssimpl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xmlencryption_nssimpl.cxx; path = ../../../xmlsecurity/source/xmlsec/nss/xmlencryption_nssimpl.cxx; sourceTree = "<group>"; };
- BE993205199A1BF00008A364 /* xmlsecuritycontext_nssimpl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xmlsecuritycontext_nssimpl.cxx; path = ../../../xmlsecurity/source/xmlsec/nss/xmlsecuritycontext_nssimpl.cxx; sourceTree = "<group>"; };
- BE993206199A1BF00008A364 /* xmlsignature_nssimpl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xmlsignature_nssimpl.cxx; path = ../../../xmlsecurity/source/xmlsec/nss/xmlsignature_nssimpl.cxx; sourceTree = "<group>"; };
- BE993207199A1BF00008A364 /* xsec_nss.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xsec_nss.cxx; path = ../../../xmlsecurity/source/xmlsec/nss/xsec_nss.cxx; sourceTree = "<group>"; };
- BE9F45F91868396500B8BE69 /* cpp2uno-arm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "cpp2uno-arm.cxx"; path = "../../../bridges/source/cpp_uno/gcc3_ios_arm/cpp2uno-arm.cxx"; sourceTree = "<group>"; };
- BE9F45FA1868396500B8BE69 /* cpp2uno-arm64.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "cpp2uno-arm64.cxx"; path = "../../../bridges/source/cpp_uno/gcc3_ios_arm/cpp2uno-arm64.cxx"; sourceTree = "<group>"; };
- BE9F45FB1868396500B8BE69 /* cpp2uno-i386.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "cpp2uno-i386.cxx"; path = "../../../bridges/source/cpp_uno/gcc3_ios_arm/cpp2uno-i386.cxx"; sourceTree = "<group>"; };
- BE9F45FC1868396500B8BE69 /* cpp2uno.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cpp2uno.cxx; path = ../../../bridges/source/cpp_uno/gcc3_ios_arm/cpp2uno.cxx; sourceTree = "<group>"; };
- BE9F45FD1868396500B8BE69 /* except.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = except.cxx; path = ../../../bridges/source/cpp_uno/gcc3_ios_arm/except.cxx; sourceTree = "<group>"; };
- BE9F45FE1868396500B8BE69 /* helper.s */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; name = helper.s; path = ../../../bridges/source/cpp_uno/gcc3_ios_arm/helper.s; sourceTree = "<group>"; };
- BE9F46001868396500B8BE69 /* uno2cpp-arm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "uno2cpp-arm.cxx"; path = "../../../bridges/source/cpp_uno/gcc3_ios_arm/uno2cpp-arm.cxx"; sourceTree = "<group>"; };
- BE9F46011868396500B8BE69 /* uno2cpp-arm64.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "uno2cpp-arm64.cxx"; path = "../../../bridges/source/cpp_uno/gcc3_ios_arm/uno2cpp-arm64.cxx"; sourceTree = "<group>"; };
- BE9F46021868396500B8BE69 /* uno2cpp-i386.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "uno2cpp-i386.cxx"; path = "../../../bridges/source/cpp_uno/gcc3_ios_arm/uno2cpp-i386.cxx"; sourceTree = "<group>"; };
- BE9F46031868396500B8BE69 /* uno2cpp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = uno2cpp.cxx; path = ../../../bridges/source/cpp_uno/gcc3_ios_arm/uno2cpp.cxx; sourceTree = "<group>"; };
- BE9F4604186839C100B8BE69 /* bridge.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bridge.cxx; path = ../../../bridges/source/cpp_uno/shared/bridge.cxx; sourceTree = "<group>"; };
- BE9F4605186839C100B8BE69 /* component.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = component.cxx; path = ../../../bridges/source/cpp_uno/shared/component.cxx; sourceTree = "<group>"; };
- BE9F4606186839C100B8BE69 /* cppinterfaceproxy.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cppinterfaceproxy.cxx; path = ../../../bridges/source/cpp_uno/shared/cppinterfaceproxy.cxx; sourceTree = "<group>"; };
- BE9F4607186839C100B8BE69 /* guardedarray.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = guardedarray.hxx; path = ../../../bridges/source/cpp_uno/shared/guardedarray.hxx; sourceTree = "<group>"; };
- BE9F4608186839C100B8BE69 /* types.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = types.cxx; path = ../../../bridges/source/cpp_uno/shared/types.cxx; sourceTree = "<group>"; };
- BE9F4609186839C100B8BE69 /* unointerfaceproxy.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = unointerfaceproxy.cxx; path = ../../../bridges/source/cpp_uno/shared/unointerfaceproxy.cxx; sourceTree = "<group>"; };
- BE9F460A186839C100B8BE69 /* vtablefactory.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vtablefactory.cxx; path = ../../../bridges/source/cpp_uno/shared/vtablefactory.cxx; sourceTree = "<group>"; };
- BE9F460B186839C100B8BE69 /* vtables.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vtables.cxx; path = ../../../bridges/source/cpp_uno/shared/vtables.cxx; sourceTree = "<group>"; };
- BEAB8059194604400083BBB6 /* button.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = button.cxx; path = ../../../vcl/source/control/button.cxx; sourceTree = "<group>"; };
- BEAB805A194604400083BBB6 /* combobox.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = combobox.cxx; path = ../../../vcl/source/control/combobox.cxx; sourceTree = "<group>"; };
- BEAB805B194604400083BBB6 /* ctrl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ctrl.cxx; path = ../../../vcl/source/control/ctrl.cxx; sourceTree = "<group>"; };
- BEAB805C194604400083BBB6 /* edit.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = edit.cxx; path = ../../../vcl/source/control/edit.cxx; sourceTree = "<group>"; };
- BEAB805D194604400083BBB6 /* field.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = field.cxx; path = ../../../vcl/source/control/field.cxx; sourceTree = "<group>"; };
- BEAB805E194604400083BBB6 /* field2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = field2.cxx; path = ../../../vcl/source/control/field2.cxx; sourceTree = "<group>"; };
- BEAB805F194604400083BBB6 /* fixed.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fixed.cxx; path = ../../../vcl/source/control/fixed.cxx; sourceTree = "<group>"; };
- BEAB8060194604400083BBB6 /* fixedhyper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fixedhyper.cxx; path = ../../../vcl/source/control/fixedhyper.cxx; sourceTree = "<group>"; };
- BEAB8061194604400083BBB6 /* group.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = group.cxx; path = ../../../vcl/source/control/group.cxx; sourceTree = "<group>"; };
- BEAB8062194604400083BBB6 /* ilstbox.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ilstbox.cxx; path = ../../../vcl/source/control/ilstbox.cxx; sourceTree = "<group>"; };
- BEAB8063194604400083BBB6 /* imgctrl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = imgctrl.cxx; path = ../../../vcl/source/control/imgctrl.cxx; sourceTree = "<group>"; };
- BEAB8064194604400083BBB6 /* longcurr.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = longcurr.cxx; path = ../../../vcl/source/control/longcurr.cxx; sourceTree = "<group>"; };
- BEAB8065194604400083BBB6 /* lstbox.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = lstbox.cxx; path = ../../../vcl/source/control/lstbox.cxx; sourceTree = "<group>"; };
- BEAB8066194604400083BBB6 /* menubtn.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = menubtn.cxx; path = ../../../vcl/source/control/menubtn.cxx; sourceTree = "<group>"; };
- BEAB8067194604400083BBB6 /* morebtn.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = morebtn.cxx; path = ../../../vcl/source/control/morebtn.cxx; sourceTree = "<group>"; };
- BEAB8068194604400083BBB6 /* prgsbar.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = prgsbar.cxx; path = ../../../vcl/source/control/prgsbar.cxx; sourceTree = "<group>"; };
- BEAB8069194604400083BBB6 /* quickselectionengine.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = quickselectionengine.cxx; path = ../../../vcl/source/control/quickselectionengine.cxx; sourceTree = "<group>"; };
- BEAB806A194604400083BBB6 /* scrbar.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = scrbar.cxx; path = ../../../vcl/source/control/scrbar.cxx; sourceTree = "<group>"; };
- BEAB806B194604400083BBB6 /* slider.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = slider.cxx; path = ../../../vcl/source/control/slider.cxx; sourceTree = "<group>"; };
- BEAB806C194604400083BBB6 /* spinbtn.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = spinbtn.cxx; path = ../../../vcl/source/control/spinbtn.cxx; sourceTree = "<group>"; };
- BEAB806D194604400083BBB6 /* spinfld.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = spinfld.cxx; path = ../../../vcl/source/control/spinfld.cxx; sourceTree = "<group>"; };
- BEAB806E194604400083BBB6 /* tabctrl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tabctrl.cxx; path = ../../../vcl/source/control/tabctrl.cxx; sourceTree = "<group>"; };
- BEAB806F194604400083BBB6 /* throbber.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = throbber.cxx; path = ../../../vcl/source/control/throbber.cxx; sourceTree = "<group>"; };
- BEAB807119460AE10083BBB6 /* textdata.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textdata.cxx; path = ../../../vcl/source/edit/textdata.cxx; sourceTree = "<group>"; };
- BEAB807219460AE10083BBB6 /* textdoc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textdoc.cxx; path = ../../../vcl/source/edit/textdoc.cxx; sourceTree = "<group>"; };
- BEAB807319460AE10083BBB6 /* texteng.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = texteng.cxx; path = ../../../vcl/source/edit/texteng.cxx; sourceTree = "<group>"; };
- BEAB807419460AE10083BBB6 /* textundo.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textundo.cxx; path = ../../../vcl/source/edit/textundo.cxx; sourceTree = "<group>"; };
- BEAB807519460AE10083BBB6 /* textview.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textview.cxx; path = ../../../vcl/source/edit/textview.cxx; sourceTree = "<group>"; };
- BEAB807619460AE10083BBB6 /* txtattr.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = txtattr.cxx; path = ../../../vcl/source/edit/txtattr.cxx; sourceTree = "<group>"; };
- BEAB807719460AE10083BBB6 /* vclmedit.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vclmedit.cxx; path = ../../../vcl/source/edit/vclmedit.cxx; sourceTree = "<group>"; };
- BEAB807819460AE10083BBB6 /* xtextedt.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xtextedt.cxx; path = ../../../vcl/source/edit/xtextedt.cxx; sourceTree = "<group>"; };
- BECA60DB1910271F00B24A7E /* autorecovery.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = autorecovery.cxx; path = ../../../framework/source/services/autorecovery.cxx; sourceTree = "<group>"; };
- BECA60DC1910271F00B24A7E /* ContextChangeEventMultiplexer.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ContextChangeEventMultiplexer.cxx; path = ../../../framework/source/services/ContextChangeEventMultiplexer.cxx; sourceTree = "<group>"; };
- BECA60DD1910271F00B24A7E /* desktop.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = desktop.cxx; path = ../../../framework/source/services/desktop.cxx; sourceTree = "<group>"; };
- BECA60DE1910271F00B24A7E /* dispatchhelper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dispatchhelper.cxx; path = ../../../framework/source/services/dispatchhelper.cxx; sourceTree = "<group>"; };
- BECA60DF1910271F00B24A7E /* frame.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = frame.cxx; path = ../../../framework/source/services/frame.cxx; sourceTree = "<group>"; };
- BECA60E01910271F00B24A7E /* mediatypedetectionhelper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = mediatypedetectionhelper.cxx; path = ../../../framework/source/services/mediatypedetectionhelper.cxx; sourceTree = "<group>"; };
- BECA60E11910271F00B24A7E /* modulemanager.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = modulemanager.cxx; path = ../../../framework/source/services/modulemanager.cxx; sourceTree = "<group>"; };
- BECA60E21910271F00B24A7E /* pathsettings.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pathsettings.cxx; path = ../../../framework/source/services/pathsettings.cxx; sourceTree = "<group>"; };
- BECA60E31910271F00B24A7E /* sessionlistener.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sessionlistener.cxx; path = ../../../framework/source/services/sessionlistener.cxx; sourceTree = "<group>"; };
- BECA60E41910271F00B24A7E /* substitutepathvars.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = substitutepathvars.cxx; path = ../../../framework/source/services/substitutepathvars.cxx; sourceTree = "<group>"; };
- BECA60E51910271F00B24A7E /* tabwindowservice.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tabwindowservice.cxx; path = ../../../framework/source/services/tabwindowservice.cxx; sourceTree = "<group>"; };
- BECA60E61910271F00B24A7E /* taskcreatorsrv.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = taskcreatorsrv.cxx; path = ../../../framework/source/services/taskcreatorsrv.cxx; sourceTree = "<group>"; };
- BECA60E71910271F00B24A7E /* uriabbreviation.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = uriabbreviation.cxx; path = ../../../framework/source/services/uriabbreviation.cxx; sourceTree = "<group>"; };
- BECA60E81910271F00B24A7E /* urltransformer.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = urltransformer.cxx; path = ../../../framework/source/services/urltransformer.cxx; sourceTree = "<group>"; };
- BECAB371186054DE00F814F9 /* lo.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = lo.mm; sourceTree = "<group>"; };
+ BE82BD8118218E2E00A447B5 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = main.m; path = TiledLibreOffice/main.m; sourceTree = SOURCE_ROOT; };
+ BE82BD8318218E2E00A447B5 /* TiledLibreOffice-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "TiledLibreOffice-Prefix.pch"; path = "TiledLibreOffice/TiledLibreOffice-Prefix.pch"; sourceTree = SOURCE_ROOT; };
+ BE82BD8418218E2E00A447B5 /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = TiledLibreOffice/AppDelegate.h; sourceTree = SOURCE_ROOT; };
+ BE82BD8518218E2E00A447B5 /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = TiledLibreOffice/AppDelegate.m; sourceTree = SOURCE_ROOT; };
+ BE82BD8A18218E2E00A447B5 /* ViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = ViewController.h; path = TiledLibreOffice/ViewController.h; sourceTree = SOURCE_ROOT; };
+ BE82BD8B18218E2E00A447B5 /* ViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = ViewController.m; path = TiledLibreOffice/ViewController.m; sourceTree = SOURCE_ROOT; };
+ BE82BD8D18218E2E00A447B5 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = TiledLibreOffice/Images.xcassets; sourceTree = SOURCE_ROOT; };
+ BE82BDAA182190E400A447B5 /* TiledView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = TiledView.h; path = TiledLibreOffice/TiledView.h; sourceTree = SOURCE_ROOT; };
+ BE82BDAB182190E400A447B5 /* TiledView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = TiledView.m; path = TiledLibreOffice/TiledView.m; sourceTree = SOURCE_ROOT; };
+ BE82BDAD1821A1D000A447B5 /* View.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = View.h; path = TiledLibreOffice/View.h; sourceTree = SOURCE_ROOT; };
+ BE82BDAE1821A1D000A447B5 /* View.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = View.m; path = TiledLibreOffice/View.m; sourceTree = SOURCE_ROOT; };
+ BE82C42918CA18610050EB79 /* ActionDescriptionProvider.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ActionDescriptionProvider.cxx; path = ../../../svx/source/svdraw/ActionDescriptionProvider.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C42A18CA18610050EB79 /* charthelper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = charthelper.cxx; path = ../../../svx/source/svdraw/charthelper.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C42B18CA18610050EB79 /* clonelist.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = clonelist.cxx; path = ../../../svx/source/svdraw/clonelist.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C42C18CA18610050EB79 /* gradtrns.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gradtrns.cxx; path = ../../../svx/source/svdraw/gradtrns.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C42D18CA18610050EB79 /* gradtrns.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = gradtrns.hxx; path = ../../../svx/source/svdraw/gradtrns.hxx; sourceTree = SOURCE_ROOT; };
+ BE82C42E18CA18610050EB79 /* polypolygoneditor.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = polypolygoneditor.cxx; path = ../../../svx/source/svdraw/polypolygoneditor.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C42F18CA18610050EB79 /* sdrhittesthelper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sdrhittesthelper.cxx; path = ../../../svx/source/svdraw/sdrhittesthelper.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C43018CA18610050EB79 /* sdrmasterpagedescriptor.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sdrmasterpagedescriptor.cxx; path = ../../../svx/source/svdraw/sdrmasterpagedescriptor.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C43118CA18610050EB79 /* sdrpagewindow.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sdrpagewindow.cxx; path = ../../../svx/source/svdraw/sdrpagewindow.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C43218CA18610050EB79 /* sdrpaintwindow.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sdrpaintwindow.cxx; path = ../../../svx/source/svdraw/sdrpaintwindow.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C43318CA18610050EB79 /* sdrundomanager.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sdrundomanager.cxx; path = ../../../svx/source/svdraw/sdrundomanager.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C43418CA18610050EB79 /* selectioncontroller.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = selectioncontroller.cxx; path = ../../../svx/source/svdraw/selectioncontroller.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C43518CA18610050EB79 /* svdattr.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdattr.cxx; path = ../../../svx/source/svdraw/svdattr.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C43618CA18610050EB79 /* svdcrtv.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdcrtv.cxx; path = ../../../svx/source/svdraw/svdcrtv.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C43718CA18610050EB79 /* svddrag.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svddrag.cxx; path = ../../../svx/source/svdraw/svddrag.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C43818CA18610050EB79 /* svddrgmt.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svddrgmt.cxx; path = ../../../svx/source/svdraw/svddrgmt.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C43918CA18610050EB79 /* svddrgv.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svddrgv.cxx; path = ../../../svx/source/svdraw/svddrgv.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C43A18CA18610050EB79 /* svdedtv.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdedtv.cxx; path = ../../../svx/source/svdraw/svdedtv.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C43B18CA18610050EB79 /* svdedtv1.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdedtv1.cxx; path = ../../../svx/source/svdraw/svdedtv1.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C43C18CA18610050EB79 /* svdedtv2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdedtv2.cxx; path = ../../../svx/source/svdraw/svdedtv2.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C43D18CA18610050EB79 /* svdedxv.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdedxv.cxx; path = ../../../svx/source/svdraw/svdedxv.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C43E18CA18610050EB79 /* svdetc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdetc.cxx; path = ../../../svx/source/svdraw/svdetc.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C43F18CA18610050EB79 /* svdfmtf.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdfmtf.cxx; path = ../../../svx/source/svdraw/svdfmtf.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C44018CA18610050EB79 /* svdglev.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdglev.cxx; path = ../../../svx/source/svdraw/svdglev.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C44118CA18610050EB79 /* svdglue.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdglue.cxx; path = ../../../svx/source/svdraw/svdglue.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C44218CA18610050EB79 /* svdhdl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdhdl.cxx; path = ../../../svx/source/svdraw/svdhdl.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C44318CA18610050EB79 /* svdhlpln.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdhlpln.cxx; path = ../../../svx/source/svdraw/svdhlpln.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C44418CA18610050EB79 /* svdibrow.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdibrow.cxx; path = ../../../svx/source/svdraw/svdibrow.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C44518CA18610050EB79 /* svditer.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svditer.cxx; path = ../../../svx/source/svdraw/svditer.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C44618CA18610050EB79 /* svdlayer.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdlayer.cxx; path = ../../../svx/source/svdraw/svdlayer.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C44718CA18610050EB79 /* svdmark.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdmark.cxx; path = ../../../svx/source/svdraw/svdmark.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C44818CA18610050EB79 /* svdmodel.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdmodel.cxx; path = ../../../svx/source/svdraw/svdmodel.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C44918CA18610050EB79 /* svdmrkv.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdmrkv.cxx; path = ../../../svx/source/svdraw/svdmrkv.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C44A18CA18610050EB79 /* svdmrkv1.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdmrkv1.cxx; path = ../../../svx/source/svdraw/svdmrkv1.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C44B18CA18610050EB79 /* svdoashp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdoashp.cxx; path = ../../../svx/source/svdraw/svdoashp.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C44C18CA18610050EB79 /* svdoattr.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdoattr.cxx; path = ../../../svx/source/svdraw/svdoattr.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C44D18CA18610050EB79 /* svdobj.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdobj.cxx; path = ../../../svx/source/svdraw/svdobj.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C44E18CA18610050EB79 /* svdocapt.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdocapt.cxx; path = ../../../svx/source/svdraw/svdocapt.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C44F18CA18610050EB79 /* svdocirc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdocirc.cxx; path = ../../../svx/source/svdraw/svdocirc.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C45018CA18610050EB79 /* svdoedge.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdoedge.cxx; path = ../../../svx/source/svdraw/svdoedge.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C45118CA18610050EB79 /* svdograf.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdograf.cxx; path = ../../../svx/source/svdraw/svdograf.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C45218CA18610050EB79 /* svdogrp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdogrp.cxx; path = ../../../svx/source/svdraw/svdogrp.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C45318CA18610050EB79 /* svdomeas.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdomeas.cxx; path = ../../../svx/source/svdraw/svdomeas.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C45418CA18610050EB79 /* svdomedia.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdomedia.cxx; path = ../../../svx/source/svdraw/svdomedia.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C45518CA18610050EB79 /* svdoole2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdoole2.cxx; path = ../../../svx/source/svdraw/svdoole2.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C45618CA18610050EB79 /* svdopage.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdopage.cxx; path = ../../../svx/source/svdraw/svdopage.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C45718CA18610050EB79 /* svdopath.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdopath.cxx; path = ../../../svx/source/svdraw/svdopath.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C45818CA18610050EB79 /* svdorect.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdorect.cxx; path = ../../../svx/source/svdraw/svdorect.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C45918CA18610050EB79 /* svdotext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdotext.cxx; path = ../../../svx/source/svdraw/svdotext.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C45A18CA18610050EB79 /* svdotextdecomposition.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdotextdecomposition.cxx; path = ../../../svx/source/svdraw/svdotextdecomposition.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C45B18CA18610050EB79 /* svdotextpathdecomposition.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdotextpathdecomposition.cxx; path = ../../../svx/source/svdraw/svdotextpathdecomposition.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C45C18CA18610050EB79 /* svdotxat.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdotxat.cxx; path = ../../../svx/source/svdraw/svdotxat.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C45D18CA18610050EB79 /* svdotxdr.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdotxdr.cxx; path = ../../../svx/source/svdraw/svdotxdr.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C45E18CA18610050EB79 /* svdotxed.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdotxed.cxx; path = ../../../svx/source/svdraw/svdotxed.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C45F18CA18610050EB79 /* svdotxfl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdotxfl.cxx; path = ../../../svx/source/svdraw/svdotxfl.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C46018CA18610050EB79 /* svdotxln.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdotxln.cxx; path = ../../../svx/source/svdraw/svdotxln.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C46118CA18610050EB79 /* svdotxtr.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdotxtr.cxx; path = ../../../svx/source/svdraw/svdotxtr.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C46218CA18610050EB79 /* svdouno.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdouno.cxx; path = ../../../svx/source/svdraw/svdouno.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C46318CA18610050EB79 /* svdoutl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdoutl.cxx; path = ../../../svx/source/svdraw/svdoutl.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C46418CA18610050EB79 /* svdoutlinercache.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdoutlinercache.cxx; path = ../../../svx/source/svdraw/svdoutlinercache.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C46518CA18610050EB79 /* svdovirt.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdovirt.cxx; path = ../../../svx/source/svdraw/svdovirt.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C46618CA18610050EB79 /* svdpage.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdpage.cxx; path = ../../../svx/source/svdraw/svdpage.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C46718CA18610050EB79 /* svdpagv.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdpagv.cxx; path = ../../../svx/source/svdraw/svdpagv.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C46818CA18610050EB79 /* svdpntv.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdpntv.cxx; path = ../../../svx/source/svdraw/svdpntv.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C46918CA18610050EB79 /* svdpoev.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdpoev.cxx; path = ../../../svx/source/svdraw/svdpoev.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C46A18CA18610050EB79 /* svdsnpv.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdsnpv.cxx; path = ../../../svx/source/svdraw/svdsnpv.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C46B18CA18610050EB79 /* svdtext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdtext.cxx; path = ../../../svx/source/svdraw/svdtext.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C46C18CA18610050EB79 /* svdtrans.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdtrans.cxx; path = ../../../svx/source/svdraw/svdtrans.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C46D18CA18610050EB79 /* svdundo.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdundo.cxx; path = ../../../svx/source/svdraw/svdundo.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C46E18CA18610050EB79 /* svdview.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdview.cxx; path = ../../../svx/source/svdraw/svdview.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C46F18CA18610050EB79 /* svdviter.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdviter.cxx; path = ../../../svx/source/svdraw/svdviter.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C47018CA18610050EB79 /* svdxcgv.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdxcgv.cxx; path = ../../../svx/source/svdraw/svdxcgv.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C47318CA192D0050EB79 /* baseprocessor2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = baseprocessor2d.cxx; path = ../../../drawinglayer/source/processor2d/baseprocessor2d.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C47418CA192D0050EB79 /* contourextractor2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = contourextractor2d.cxx; path = ../../../drawinglayer/source/processor2d/contourextractor2d.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C47518CA192D0050EB79 /* getdigitlanguage.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = getdigitlanguage.cxx; path = ../../../drawinglayer/source/processor2d/getdigitlanguage.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C47618CA192D0050EB79 /* helperwrongspellrenderer.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = helperwrongspellrenderer.cxx; path = ../../../drawinglayer/source/processor2d/helperwrongspellrenderer.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C47718CA192D0050EB79 /* hittestprocessor2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = hittestprocessor2d.cxx; path = ../../../drawinglayer/source/processor2d/hittestprocessor2d.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C47818CA192D0050EB79 /* linegeometryextractor2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = linegeometryextractor2d.cxx; path = ../../../drawinglayer/source/processor2d/linegeometryextractor2d.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C47918CA192D0050EB79 /* objectinfoextractor2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = objectinfoextractor2d.cxx; path = ../../../drawinglayer/source/processor2d/objectinfoextractor2d.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C47A18CA192D0050EB79 /* processor2dtools.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = processor2dtools.cxx; path = ../../../drawinglayer/source/processor2d/processor2dtools.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C47B18CA192D0050EB79 /* processorfromoutputdevice.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = processorfromoutputdevice.cxx; path = ../../../drawinglayer/source/processor2d/processorfromoutputdevice.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C47C18CA192D0050EB79 /* textaspolygonextractor2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textaspolygonextractor2d.cxx; path = ../../../drawinglayer/source/processor2d/textaspolygonextractor2d.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C47D18CA192D0050EB79 /* vclhelperbufferdevice.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vclhelperbufferdevice.cxx; path = ../../../drawinglayer/source/processor2d/vclhelperbufferdevice.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C47E18CA192D0050EB79 /* vclmetafileprocessor2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vclmetafileprocessor2d.cxx; path = ../../../drawinglayer/source/processor2d/vclmetafileprocessor2d.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C47F18CA192D0050EB79 /* vclpixelprocessor2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vclpixelprocessor2d.cxx; path = ../../../drawinglayer/source/processor2d/vclpixelprocessor2d.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C48018CA192D0050EB79 /* vclprocessor2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vclprocessor2d.cxx; path = ../../../drawinglayer/source/processor2d/vclprocessor2d.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C48218CA19920050EB79 /* animatedprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = animatedprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/animatedprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C48318CA19920050EB79 /* backgroundcolorprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = backgroundcolorprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/backgroundcolorprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C48418CA19920050EB79 /* baseprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = baseprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/baseprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C48518CA19920050EB79 /* bitmapprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bitmapprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/bitmapprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C48618CA19920050EB79 /* borderlineprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = borderlineprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/borderlineprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C48718CA19920050EB79 /* clippedborderlineprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = clippedborderlineprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/clippedborderlineprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C48818CA19920050EB79 /* controlprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = controlprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/controlprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C48918CA19920050EB79 /* cropprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cropprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/cropprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C48A18CA19920050EB79 /* discretebitmapprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = discretebitmapprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/discretebitmapprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C48B18CA19920050EB79 /* discreteshadowprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = discreteshadowprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/discreteshadowprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C48C18CA19920050EB79 /* embedded3dprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = embedded3dprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/embedded3dprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C48D18CA19920050EB79 /* epsprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = epsprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/epsprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C48E18CA19920050EB79 /* fillgradientprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fillgradientprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/fillgradientprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C48F18CA19920050EB79 /* fillgraphicprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fillgraphicprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/fillgraphicprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C49018CA19920050EB79 /* fillhatchprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fillhatchprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/fillhatchprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C49118CA19920050EB79 /* graphicprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = graphicprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/graphicprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C49218CA19920050EB79 /* graphicprimitivehelper2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = graphicprimitivehelper2d.cxx; path = ../../../drawinglayer/source/primitive2d/graphicprimitivehelper2d.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C49318CA19920050EB79 /* gridprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gridprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/gridprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C49418CA19920050EB79 /* groupprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = groupprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/groupprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C49518CA19920050EB79 /* helplineprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = helplineprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/helplineprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C49618CA19920050EB79 /* hiddengeometryprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = hiddengeometryprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/hiddengeometryprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C49718CA19920050EB79 /* invertprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = invertprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/invertprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C49818CA19920050EB79 /* markerarrayprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = markerarrayprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/markerarrayprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C49918CA19920050EB79 /* maskprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = maskprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/maskprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C49A18CA19920050EB79 /* mediaprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = mediaprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/mediaprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C49B18CA19920050EB79 /* metafileprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = metafileprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/metafileprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C49C18CA19920050EB79 /* modifiedcolorprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = modifiedcolorprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/modifiedcolorprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C49D18CA19920050EB79 /* objectinfoprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = objectinfoprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/objectinfoprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C49E18CA19920050EB79 /* pagepreviewprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pagepreviewprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/pagepreviewprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C49F18CA19920050EB79 /* patternfillprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = patternfillprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/patternfillprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C4A018CA19920050EB79 /* pointarrayprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pointarrayprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/pointarrayprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C4A118CA19920050EB79 /* polygonprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = polygonprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/polygonprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C4A218CA19920050EB79 /* polypolygonprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = polypolygonprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/polypolygonprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C4A318CA19920050EB79 /* primitivetools2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = primitivetools2d.cxx; path = ../../../drawinglayer/source/primitive2d/primitivetools2d.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C4A418CA19920050EB79 /* sceneprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sceneprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/sceneprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C4A518CA19920050EB79 /* sdrdecompositiontools2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sdrdecompositiontools2d.cxx; path = ../../../drawinglayer/source/primitive2d/sdrdecompositiontools2d.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C4A618CA19920050EB79 /* shadowprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = shadowprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/shadowprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C4A718CA19920050EB79 /* structuretagprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = structuretagprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/structuretagprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C4A818CA19920050EB79 /* svggradientprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svggradientprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/svggradientprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C4A918CA19920050EB79 /* textbreakuphelper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textbreakuphelper.cxx; path = ../../../drawinglayer/source/primitive2d/textbreakuphelper.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C4AA18CA19920050EB79 /* textdecoratedprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textdecoratedprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/textdecoratedprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C4AB18CA19920050EB79 /* texteffectprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = texteffectprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/texteffectprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C4AC18CA19920050EB79 /* textenumsprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textenumsprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/textenumsprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C4AD18CA19920050EB79 /* texthierarchyprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = texthierarchyprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/texthierarchyprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C4AE18CA19920050EB79 /* textlayoutdevice.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textlayoutdevice.cxx; path = ../../../drawinglayer/source/primitive2d/textlayoutdevice.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C4AF18CA19920050EB79 /* textlineprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textlineprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/textlineprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C4B018CA19920050EB79 /* textprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/textprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C4B118CA19920050EB79 /* textstrikeoutprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textstrikeoutprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/textstrikeoutprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C4B218CA19920050EB79 /* transformprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = transformprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/transformprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C4B318CA19920050EB79 /* transparenceprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = transparenceprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/transparenceprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C4B418CA19920050EB79 /* unifiedtransparenceprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = unifiedtransparenceprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/unifiedtransparenceprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C4B518CA19920050EB79 /* wallpaperprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = wallpaperprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/wallpaperprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C4B618CA19920050EB79 /* wrongspellprimitive2d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = wrongspellprimitive2d.cxx; path = ../../../drawinglayer/source/primitive2d/wrongspellprimitive2d.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C4BB18CDBCC50050EB79 /* pagepreviewlayout.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pagepreviewlayout.cxx; path = ../../../sw/source/core/view/pagepreviewlayout.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C4BC18CDBCC50050EB79 /* printdata.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = printdata.cxx; path = ../../../sw/source/core/view/printdata.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C4BD18CDBCC50050EB79 /* vdraw.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vdraw.cxx; path = ../../../sw/source/core/view/vdraw.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C4BE18CDBCC50050EB79 /* viewimp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewimp.cxx; path = ../../../sw/source/core/view/viewimp.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C4BF18CDBCC50050EB79 /* viewpg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewpg.cxx; path = ../../../sw/source/core/view/viewpg.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C4C018CDBCC50050EB79 /* viewsh.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewsh.cxx; path = ../../../sw/source/core/view/viewsh.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C4C118CDBCC50050EB79 /* vnew.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vnew.cxx; path = ../../../sw/source/core/view/vnew.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C4C218CDBCC50050EB79 /* vprint.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vprint.cxx; path = ../../../sw/source/core/view/vprint.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C4C418CE6DBE0050EB79 /* abstdlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = abstdlg.cxx; path = ../../../vcl/source/window/abstdlg.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C4C518CE6DBE0050EB79 /* accel.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = accel.cxx; path = ../../../vcl/source/window/accel.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C4C618CE6DBE0050EB79 /* accmgr.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = accmgr.cxx; path = ../../../vcl/source/window/accmgr.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C4C718CE6DBE0050EB79 /* brdwin.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = brdwin.cxx; path = ../../../vcl/source/window/brdwin.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C4C818CE6DBE0050EB79 /* btndlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = btndlg.cxx; path = ../../../vcl/source/window/btndlg.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C4C918CE6DBE0050EB79 /* builder.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = builder.cxx; path = ../../../vcl/source/window/builder.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C4CA18CE6DBE0050EB79 /* commandevent.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = commandevent.cxx; path = ../../../vcl/source/window/commandevent.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C4CB18CE6DBE0050EB79 /* cursor.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cursor.cxx; path = ../../../vcl/source/window/cursor.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C4CC18CE6DBE0050EB79 /* decoview.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = decoview.cxx; path = ../../../vcl/source/window/decoview.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C4CD18CE6DBE0050EB79 /* dialog.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dialog.cxx; path = ../../../vcl/source/window/dialog.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C4CE18CE6DBE0050EB79 /* dlgctrl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dlgctrl.cxx; path = ../../../vcl/source/window/dlgctrl.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C4D118CE6DBE0050EB79 /* dockingarea.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dockingarea.cxx; path = ../../../vcl/source/window/dockingarea.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C4D218CE6DBE0050EB79 /* dockmgr.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dockmgr.cxx; path = ../../../vcl/source/window/dockmgr.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C4D318CE6DBE0050EB79 /* dockwin.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dockwin.cxx; path = ../../../vcl/source/window/dockwin.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C4D418CE6DBE0050EB79 /* floatwin.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = floatwin.cxx; path = ../../../vcl/source/window/floatwin.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C4D518CE6DBE0050EB79 /* introwin.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = introwin.cxx; path = ../../../vcl/source/window/introwin.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C4D618CE6DBE0050EB79 /* keycod.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = keycod.cxx; path = ../../../vcl/source/window/keycod.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C4D718CE6DBE0050EB79 /* keyevent.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = keyevent.cxx; path = ../../../vcl/source/window/keyevent.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C4D818CE6DBE0050EB79 /* layout.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = layout.cxx; path = ../../../vcl/source/window/layout.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C4D918CE6DBE0050EB79 /* menu.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = menu.cxx; path = ../../../vcl/source/window/menu.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C4DA18CE6DBE0050EB79 /* mnemonic.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = mnemonic.cxx; path = ../../../vcl/source/window/mnemonic.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C4DB18CE6DBE0050EB79 /* mnemonicengine.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = mnemonicengine.cxx; path = ../../../vcl/source/window/mnemonicengine.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C4DD18CE6DBE0050EB79 /* msgbox.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = msgbox.cxx; path = ../../../vcl/source/window/msgbox.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C4DE18CE6DBE0050EB79 /* popupmenuwindow.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = popupmenuwindow.cxx; path = ../../../vcl/source/window/popupmenuwindow.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C4DF18CE6DBE0050EB79 /* printdlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = printdlg.cxx; path = ../../../vcl/source/window/printdlg.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C4E018CE6DBE0050EB79 /* scrwnd.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = scrwnd.cxx; path = ../../../vcl/source/window/scrwnd.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C4E118CE6DBE0050EB79 /* seleng.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = seleng.cxx; path = ../../../vcl/source/window/seleng.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C4E218CE6DBE0050EB79 /* split.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = split.cxx; path = ../../../vcl/source/window/split.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C4E318CE6DBE0050EB79 /* splitwin.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = splitwin.cxx; path = ../../../vcl/source/window/splitwin.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C4E418CE6DBE0050EB79 /* status.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = status.cxx; path = ../../../vcl/source/window/status.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C4E518CE6DBE0050EB79 /* syschild.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = syschild.cxx; path = ../../../vcl/source/window/syschild.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C4E618CE6DBE0050EB79 /* syswin.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = syswin.cxx; path = ../../../vcl/source/window/syswin.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C4E718CE6DBE0050EB79 /* tabdlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tabdlg.cxx; path = ../../../vcl/source/window/tabdlg.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C4E818CE6DBE0050EB79 /* tabpage.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tabpage.cxx; path = ../../../vcl/source/window/tabpage.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C4E918CE6DBE0050EB79 /* taskpanelist.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = taskpanelist.cxx; path = ../../../vcl/source/window/taskpanelist.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C4EA18CE6DBE0050EB79 /* toolbox.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = toolbox.cxx; path = ../../../vcl/source/window/toolbox.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C4EB18CE6DBE0050EB79 /* toolbox2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = toolbox2.cxx; path = ../../../vcl/source/window/toolbox2.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C4EC18CE6DBE0050EB79 /* window.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = window.cxx; path = ../../../vcl/source/window/window.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C4ED18CE6DBE0050EB79 /* window2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = window2.cxx; path = ../../../vcl/source/window/window2.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C4EE18CE6DBE0050EB79 /* window3.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = window3.cxx; path = ../../../vcl/source/window/window3.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C4EF18CE6DBE0050EB79 /* winproc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = winproc.cxx; path = ../../../vcl/source/window/winproc.cxx; sourceTree = SOURCE_ROOT; };
+ BE82C4F018CE6DBE0050EB79 /* wrkwin.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = wrkwin.cxx; path = ../../../vcl/source/window/wrkwin.cxx; sourceTree = SOURCE_ROOT; };
+ BE9931C5199A185D0008A364 /* accessiblecomponenthelper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = accessiblecomponenthelper.cxx; path = ../../../comphelper/source/misc/accessiblecomponenthelper.cxx; sourceTree = SOURCE_ROOT; };
+ BE9931C6199A185D0008A364 /* accessiblecontexthelper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = accessiblecontexthelper.cxx; path = ../../../comphelper/source/misc/accessiblecontexthelper.cxx; sourceTree = SOURCE_ROOT; };
+ BE9931C7199A185D0008A364 /* accessibleeventnotifier.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = accessibleeventnotifier.cxx; path = ../../../comphelper/source/misc/accessibleeventnotifier.cxx; sourceTree = SOURCE_ROOT; };
+ BE9931C8199A185D0008A364 /* accessiblekeybindinghelper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = accessiblekeybindinghelper.cxx; path = ../../../comphelper/source/misc/accessiblekeybindinghelper.cxx; sourceTree = SOURCE_ROOT; };
+ BE9931C9199A185D0008A364 /* accessibleselectionhelper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = accessibleselectionhelper.cxx; path = ../../../comphelper/source/misc/accessibleselectionhelper.cxx; sourceTree = SOURCE_ROOT; };
+ BE9931CA199A185D0008A364 /* accessibletexthelper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = accessibletexthelper.cxx; path = ../../../comphelper/source/misc/accessibletexthelper.cxx; sourceTree = SOURCE_ROOT; };
+ BE9931CB199A185D0008A364 /* accessiblewrapper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = accessiblewrapper.cxx; path = ../../../comphelper/source/misc/accessiblewrapper.cxx; sourceTree = SOURCE_ROOT; };
+ BE9931CC199A185D0008A364 /* accimplaccess.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = accimplaccess.cxx; path = ../../../comphelper/source/misc/accimplaccess.cxx; sourceTree = SOURCE_ROOT; };
+ BE9931CD199A185D0008A364 /* anycompare.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = anycompare.cxx; path = ../../../comphelper/source/misc/anycompare.cxx; sourceTree = SOURCE_ROOT; };
+ BE9931CE199A185D0008A364 /* anytostring.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = anytostring.cxx; path = ../../../comphelper/source/misc/anytostring.cxx; sourceTree = SOURCE_ROOT; };
+ BE9931CF199A185D0008A364 /* asyncnotification.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = asyncnotification.cxx; path = ../../../comphelper/source/misc/asyncnotification.cxx; sourceTree = SOURCE_ROOT; };
+ BE9931D0199A185D0008A364 /* comphelper_module.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = comphelper_module.cxx; path = ../../../comphelper/source/misc/comphelper_module.cxx; sourceTree = SOURCE_ROOT; };
+ BE9931D1199A185D0008A364 /* comphelper_services.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = comphelper_services.cxx; path = ../../../comphelper/source/misc/comphelper_services.cxx; sourceTree = SOURCE_ROOT; };
+ BE9931D2199A185D0008A364 /* componentbase.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = componentbase.cxx; path = ../../../comphelper/source/misc/componentbase.cxx; sourceTree = SOURCE_ROOT; };
+ BE9931D3199A185D0008A364 /* componentmodule.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = componentmodule.cxx; path = ../../../comphelper/source/misc/componentmodule.cxx; sourceTree = SOURCE_ROOT; };
+ BE9931D4199A185D0008A364 /* configuration.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = configuration.cxx; path = ../../../comphelper/source/misc/configuration.cxx; sourceTree = SOURCE_ROOT; };
+ BE9931D5199A185D0008A364 /* configurationhelper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = configurationhelper.cxx; path = ../../../comphelper/source/misc/configurationhelper.cxx; sourceTree = SOURCE_ROOT; };
+ BE9931D6199A185D0008A364 /* docpasswordhelper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docpasswordhelper.cxx; path = ../../../comphelper/source/misc/docpasswordhelper.cxx; sourceTree = SOURCE_ROOT; };
+ BE9931D7199A185D0008A364 /* docpasswordrequest.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docpasswordrequest.cxx; path = ../../../comphelper/source/misc/docpasswordrequest.cxx; sourceTree = SOURCE_ROOT; };
+ BE9931D8199A185D0008A364 /* documentinfo.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = documentinfo.cxx; path = ../../../comphelper/source/misc/documentinfo.cxx; sourceTree = SOURCE_ROOT; };
+ BE9931D9199A185D0008A364 /* documentiologring.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = documentiologring.cxx; path = ../../../comphelper/source/misc/documentiologring.cxx; sourceTree = SOURCE_ROOT; };
+ BE9931DA199A185D0008A364 /* evtlistenerhlp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = evtlistenerhlp.cxx; path = ../../../comphelper/source/misc/evtlistenerhlp.cxx; sourceTree = SOURCE_ROOT; };
+ BE9931DB199A185D0008A364 /* evtmethodhelper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = evtmethodhelper.cxx; path = ../../../comphelper/source/misc/evtmethodhelper.cxx; sourceTree = SOURCE_ROOT; };
+ BE9931DD199A185D0008A364 /* instancelocker.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = instancelocker.cxx; path = ../../../comphelper/source/misc/instancelocker.cxx; sourceTree = SOURCE_ROOT; };
+ BE9931DE199A185D0008A364 /* interaction.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = interaction.cxx; path = ../../../comphelper/source/misc/interaction.cxx; sourceTree = SOURCE_ROOT; };
+ BE9931DF199A185D0008A364 /* listenernotification.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = listenernotification.cxx; path = ../../../comphelper/source/misc/listenernotification.cxx; sourceTree = SOURCE_ROOT; };
+ BE9931E0199A185D0008A364 /* logging.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = logging.cxx; path = ../../../comphelper/source/misc/logging.cxx; sourceTree = SOURCE_ROOT; };
+ BE9931E1199A185D0008A364 /* mimeconfighelper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = mimeconfighelper.cxx; path = ../../../comphelper/source/misc/mimeconfighelper.cxx; sourceTree = SOURCE_ROOT; };
+ BE9931E2199A185D0008A364 /* namedvaluecollection.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = namedvaluecollection.cxx; path = ../../../comphelper/source/misc/namedvaluecollection.cxx; sourceTree = SOURCE_ROOT; };
+ BE9931E3199A185D0008A364 /* numberedcollection.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = numberedcollection.cxx; path = ../../../comphelper/source/misc/numberedcollection.cxx; sourceTree = SOURCE_ROOT; };
+ BE9931E4199A185D0008A364 /* numbers.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = numbers.cxx; path = ../../../comphelper/source/misc/numbers.cxx; sourceTree = SOURCE_ROOT; };
+ BE9931E5199A185D0008A364 /* officeresourcebundle.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = officeresourcebundle.cxx; path = ../../../comphelper/source/misc/officeresourcebundle.cxx; sourceTree = SOURCE_ROOT; };
+ BE9931E6199A185D0008A364 /* officerestartmanager.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = officerestartmanager.cxx; path = ../../../comphelper/source/misc/officerestartmanager.cxx; sourceTree = SOURCE_ROOT; };
+ BE9931E7199A185D0008A364 /* proxyaggregation.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = proxyaggregation.cxx; path = ../../../comphelper/source/misc/proxyaggregation.cxx; sourceTree = SOURCE_ROOT; };
+ BE9931E8199A185D0008A364 /* random.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = random.cxx; path = ../../../comphelper/source/misc/random.cxx; sourceTree = SOURCE_ROOT; };
+ BE9931E9199A185D0008A364 /* scopeguard.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = scopeguard.cxx; path = ../../../comphelper/source/misc/scopeguard.cxx; sourceTree = SOURCE_ROOT; };
+ BE9931EA199A185D0008A364 /* SelectionMultiplex.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = SelectionMultiplex.cxx; path = ../../../comphelper/source/misc/SelectionMultiplex.cxx; sourceTree = SOURCE_ROOT; };
+ BE9931EB199A185D0008A364 /* sequence.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sequence.cxx; path = ../../../comphelper/source/misc/sequence.cxx; sourceTree = SOURCE_ROOT; };
+ BE9931EC199A185D0008A364 /* sequenceashashmap.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sequenceashashmap.cxx; path = ../../../comphelper/source/misc/sequenceashashmap.cxx; sourceTree = SOURCE_ROOT; };
+ BE9931ED199A185D0008A364 /* servicedecl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = servicedecl.cxx; path = ../../../comphelper/source/misc/servicedecl.cxx; sourceTree = SOURCE_ROOT; };
+ BE9931EE199A185D0008A364 /* serviceinfohelper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = serviceinfohelper.cxx; path = ../../../comphelper/source/misc/serviceinfohelper.cxx; sourceTree = SOURCE_ROOT; };
+ BE9931EF199A185D0008A364 /* sharedmutex.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sharedmutex.cxx; path = ../../../comphelper/source/misc/sharedmutex.cxx; sourceTree = SOURCE_ROOT; };
+ BE9931F0199A185D0008A364 /* solarmutex.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = solarmutex.cxx; path = ../../../comphelper/source/misc/solarmutex.cxx; sourceTree = SOURCE_ROOT; };
+ BE9931F1199A185D0008A364 /* stillreadwriteinteraction.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = stillreadwriteinteraction.cxx; path = ../../../comphelper/source/misc/stillreadwriteinteraction.cxx; sourceTree = SOURCE_ROOT; };
+ BE9931F2199A185D0008A364 /* storagehelper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = storagehelper.cxx; path = ../../../comphelper/source/misc/storagehelper.cxx; sourceTree = SOURCE_ROOT; };
+ BE9931F3199A185D0008A364 /* string.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = string.cxx; path = ../../../comphelper/source/misc/string.cxx; sourceTree = SOURCE_ROOT; };
+ BE9931F4199A185D0008A364 /* synchronousdispatch.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = synchronousdispatch.cxx; path = ../../../comphelper/source/misc/synchronousdispatch.cxx; sourceTree = SOURCE_ROOT; };
+ BE9931F5199A185D0008A364 /* syntaxhighlight.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = syntaxhighlight.cxx; path = ../../../comphelper/source/misc/syntaxhighlight.cxx; sourceTree = SOURCE_ROOT; };
+ BE9931F6199A185D0008A364 /* types.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = types.cxx; path = ../../../comphelper/source/misc/types.cxx; sourceTree = SOURCE_ROOT; };
+ BE9931F7199A185D0008A364 /* weak.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = weak.cxx; path = ../../../comphelper/source/misc/weak.cxx; sourceTree = SOURCE_ROOT; };
+ BE9931F8199A185D0008A364 /* weakeventlistener.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = weakeventlistener.cxx; path = ../../../comphelper/source/misc/weakeventlistener.cxx; sourceTree = SOURCE_ROOT; };
+ BE9931FC199A1BF00008A364 /* ciphercontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ciphercontext.cxx; path = ../../../xmlsecurity/source/xmlsec/nss/ciphercontext.cxx; sourceTree = SOURCE_ROOT; };
+ BE9931FD199A1BF00008A364 /* digestcontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = digestcontext.cxx; path = ../../../xmlsecurity/source/xmlsec/nss/digestcontext.cxx; sourceTree = SOURCE_ROOT; };
+ BE9931FE199A1BF00008A364 /* nssinitializer.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = nssinitializer.cxx; path = ../../../xmlsecurity/source/xmlsec/nss/nssinitializer.cxx; sourceTree = SOURCE_ROOT; };
+ BE9931FF199A1BF00008A364 /* sanextension_nssimpl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sanextension_nssimpl.cxx; path = ../../../xmlsecurity/source/xmlsec/nss/sanextension_nssimpl.cxx; sourceTree = SOURCE_ROOT; };
+ BE993200199A1BF00008A364 /* secerror.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = secerror.cxx; path = ../../../xmlsecurity/source/xmlsec/nss/secerror.cxx; sourceTree = SOURCE_ROOT; };
+ BE993201199A1BF00008A364 /* securityenvironment_nssimpl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = securityenvironment_nssimpl.cxx; path = ../../../xmlsecurity/source/xmlsec/nss/securityenvironment_nssimpl.cxx; sourceTree = SOURCE_ROOT; };
+ BE993202199A1BF00008A364 /* seinitializer_nssimpl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = seinitializer_nssimpl.cxx; path = ../../../xmlsecurity/source/xmlsec/nss/seinitializer_nssimpl.cxx; sourceTree = SOURCE_ROOT; };
+ BE993203199A1BF00008A364 /* x509certificate_nssimpl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = x509certificate_nssimpl.cxx; path = ../../../xmlsecurity/source/xmlsec/nss/x509certificate_nssimpl.cxx; sourceTree = SOURCE_ROOT; };
+ BE993204199A1BF00008A364 /* xmlencryption_nssimpl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xmlencryption_nssimpl.cxx; path = ../../../xmlsecurity/source/xmlsec/nss/xmlencryption_nssimpl.cxx; sourceTree = SOURCE_ROOT; };
+ BE993205199A1BF00008A364 /* xmlsecuritycontext_nssimpl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xmlsecuritycontext_nssimpl.cxx; path = ../../../xmlsecurity/source/xmlsec/nss/xmlsecuritycontext_nssimpl.cxx; sourceTree = SOURCE_ROOT; };
+ BE993206199A1BF00008A364 /* xmlsignature_nssimpl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xmlsignature_nssimpl.cxx; path = ../../../xmlsecurity/source/xmlsec/nss/xmlsignature_nssimpl.cxx; sourceTree = SOURCE_ROOT; };
+ BE993207199A1BF00008A364 /* xsec_nss.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xsec_nss.cxx; path = ../../../xmlsecurity/source/xmlsec/nss/xsec_nss.cxx; sourceTree = SOURCE_ROOT; };
+ BE9F45F91868396500B8BE69 /* cpp2uno-arm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "cpp2uno-arm.cxx"; path = "../../../bridges/source/cpp_uno/gcc3_ios_arm/cpp2uno-arm.cxx"; sourceTree = SOURCE_ROOT; };
+ BE9F45FA1868396500B8BE69 /* cpp2uno-arm64.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "cpp2uno-arm64.cxx"; path = "../../../bridges/source/cpp_uno/gcc3_ios_arm/cpp2uno-arm64.cxx"; sourceTree = SOURCE_ROOT; };
+ BE9F45FB1868396500B8BE69 /* cpp2uno-i386.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "cpp2uno-i386.cxx"; path = "../../../bridges/source/cpp_uno/gcc3_ios_arm/cpp2uno-i386.cxx"; sourceTree = SOURCE_ROOT; };
+ BE9F45FC1868396500B8BE69 /* cpp2uno.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cpp2uno.cxx; path = ../../../bridges/source/cpp_uno/gcc3_ios_arm/cpp2uno.cxx; sourceTree = SOURCE_ROOT; };
+ BE9F45FD1868396500B8BE69 /* except.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = except.cxx; path = ../../../bridges/source/cpp_uno/gcc3_ios_arm/except.cxx; sourceTree = SOURCE_ROOT; };
+ BE9F45FE1868396500B8BE69 /* helper.s */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; name = helper.s; path = ../../../bridges/source/cpp_uno/gcc3_ios_arm/helper.s; sourceTree = SOURCE_ROOT; };
+ BE9F46001868396500B8BE69 /* uno2cpp-arm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "uno2cpp-arm.cxx"; path = "../../../bridges/source/cpp_uno/gcc3_ios_arm/uno2cpp-arm.cxx"; sourceTree = SOURCE_ROOT; };
+ BE9F46011868396500B8BE69 /* uno2cpp-arm64.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "uno2cpp-arm64.cxx"; path = "../../../bridges/source/cpp_uno/gcc3_ios_arm/uno2cpp-arm64.cxx"; sourceTree = SOURCE_ROOT; };
+ BE9F46021868396500B8BE69 /* uno2cpp-i386.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "uno2cpp-i386.cxx"; path = "../../../bridges/source/cpp_uno/gcc3_ios_arm/uno2cpp-i386.cxx"; sourceTree = SOURCE_ROOT; };
+ BE9F46031868396500B8BE69 /* uno2cpp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = uno2cpp.cxx; path = ../../../bridges/source/cpp_uno/gcc3_ios_arm/uno2cpp.cxx; sourceTree = SOURCE_ROOT; };
+ BE9F4604186839C100B8BE69 /* bridge.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bridge.cxx; path = ../../../bridges/source/cpp_uno/shared/bridge.cxx; sourceTree = SOURCE_ROOT; };
+ BE9F4605186839C100B8BE69 /* component.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = component.cxx; path = ../../../bridges/source/cpp_uno/shared/component.cxx; sourceTree = SOURCE_ROOT; };
+ BE9F4606186839C100B8BE69 /* cppinterfaceproxy.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cppinterfaceproxy.cxx; path = ../../../bridges/source/cpp_uno/shared/cppinterfaceproxy.cxx; sourceTree = SOURCE_ROOT; };
+ BE9F4607186839C100B8BE69 /* guardedarray.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = guardedarray.hxx; path = ../../../bridges/source/cpp_uno/shared/guardedarray.hxx; sourceTree = SOURCE_ROOT; };
+ BE9F4608186839C100B8BE69 /* types.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = types.cxx; path = ../../../bridges/source/cpp_uno/shared/types.cxx; sourceTree = SOURCE_ROOT; };
+ BE9F4609186839C100B8BE69 /* unointerfaceproxy.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = unointerfaceproxy.cxx; path = ../../../bridges/source/cpp_uno/shared/unointerfaceproxy.cxx; sourceTree = SOURCE_ROOT; };
+ BE9F460A186839C100B8BE69 /* vtablefactory.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vtablefactory.cxx; path = ../../../bridges/source/cpp_uno/shared/vtablefactory.cxx; sourceTree = SOURCE_ROOT; };
+ BE9F460B186839C100B8BE69 /* vtables.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vtables.cxx; path = ../../../bridges/source/cpp_uno/shared/vtables.cxx; sourceTree = SOURCE_ROOT; };
+ BEAB8059194604400083BBB6 /* button.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = button.cxx; path = ../../../vcl/source/control/button.cxx; sourceTree = SOURCE_ROOT; };
+ BEAB805A194604400083BBB6 /* combobox.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = combobox.cxx; path = ../../../vcl/source/control/combobox.cxx; sourceTree = SOURCE_ROOT; };
+ BEAB805B194604400083BBB6 /* ctrl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ctrl.cxx; path = ../../../vcl/source/control/ctrl.cxx; sourceTree = SOURCE_ROOT; };
+ BEAB805C194604400083BBB6 /* edit.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = edit.cxx; path = ../../../vcl/source/control/edit.cxx; sourceTree = SOURCE_ROOT; };
+ BEAB805D194604400083BBB6 /* field.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = field.cxx; path = ../../../vcl/source/control/field.cxx; sourceTree = SOURCE_ROOT; };
+ BEAB805E194604400083BBB6 /* field2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = field2.cxx; path = ../../../vcl/source/control/field2.cxx; sourceTree = SOURCE_ROOT; };
+ BEAB805F194604400083BBB6 /* fixed.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fixed.cxx; path = ../../../vcl/source/control/fixed.cxx; sourceTree = SOURCE_ROOT; };
+ BEAB8060194604400083BBB6 /* fixedhyper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fixedhyper.cxx; path = ../../../vcl/source/control/fixedhyper.cxx; sourceTree = SOURCE_ROOT; };
+ BEAB8061194604400083BBB6 /* group.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = group.cxx; path = ../../../vcl/source/control/group.cxx; sourceTree = SOURCE_ROOT; };
+ BEAB8063194604400083BBB6 /* imgctrl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = imgctrl.cxx; path = ../../../vcl/source/control/imgctrl.cxx; sourceTree = SOURCE_ROOT; };
+ BEAB8064194604400083BBB6 /* longcurr.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = longcurr.cxx; path = ../../../vcl/source/control/longcurr.cxx; sourceTree = SOURCE_ROOT; };
+ BEAB8066194604400083BBB6 /* menubtn.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = menubtn.cxx; path = ../../../vcl/source/control/menubtn.cxx; sourceTree = SOURCE_ROOT; };
+ BEAB8067194604400083BBB6 /* morebtn.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = morebtn.cxx; path = ../../../vcl/source/control/morebtn.cxx; sourceTree = SOURCE_ROOT; };
+ BEAB8068194604400083BBB6 /* prgsbar.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = prgsbar.cxx; path = ../../../vcl/source/control/prgsbar.cxx; sourceTree = SOURCE_ROOT; };
+ BEAB8069194604400083BBB6 /* quickselectionengine.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = quickselectionengine.cxx; path = ../../../vcl/source/control/quickselectionengine.cxx; sourceTree = SOURCE_ROOT; };
+ BEAB806A194604400083BBB6 /* scrbar.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = scrbar.cxx; path = ../../../vcl/source/control/scrbar.cxx; sourceTree = SOURCE_ROOT; };
+ BEAB806B194604400083BBB6 /* slider.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = slider.cxx; path = ../../../vcl/source/control/slider.cxx; sourceTree = SOURCE_ROOT; };
+ BEAB806C194604400083BBB6 /* spinbtn.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = spinbtn.cxx; path = ../../../vcl/source/control/spinbtn.cxx; sourceTree = SOURCE_ROOT; };
+ BEAB806D194604400083BBB6 /* spinfld.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = spinfld.cxx; path = ../../../vcl/source/control/spinfld.cxx; sourceTree = SOURCE_ROOT; };
+ BEAB806E194604400083BBB6 /* tabctrl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tabctrl.cxx; path = ../../../vcl/source/control/tabctrl.cxx; sourceTree = SOURCE_ROOT; };
+ BEAB806F194604400083BBB6 /* throbber.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = throbber.cxx; path = ../../../vcl/source/control/throbber.cxx; sourceTree = SOURCE_ROOT; };
+ BEAB807119460AE10083BBB6 /* textdata.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textdata.cxx; path = ../../../vcl/source/edit/textdata.cxx; sourceTree = SOURCE_ROOT; };
+ BEAB807219460AE10083BBB6 /* textdoc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textdoc.cxx; path = ../../../vcl/source/edit/textdoc.cxx; sourceTree = SOURCE_ROOT; };
+ BEAB807319460AE10083BBB6 /* texteng.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = texteng.cxx; path = ../../../vcl/source/edit/texteng.cxx; sourceTree = SOURCE_ROOT; };
+ BEAB807419460AE10083BBB6 /* textundo.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textundo.cxx; path = ../../../vcl/source/edit/textundo.cxx; sourceTree = SOURCE_ROOT; };
+ BEAB807519460AE10083BBB6 /* textview.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textview.cxx; path = ../../../vcl/source/edit/textview.cxx; sourceTree = SOURCE_ROOT; };
+ BEAB807619460AE10083BBB6 /* txtattr.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = txtattr.cxx; path = ../../../vcl/source/edit/txtattr.cxx; sourceTree = SOURCE_ROOT; };
+ BEAB807719460AE10083BBB6 /* vclmedit.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vclmedit.cxx; path = ../../../vcl/source/edit/vclmedit.cxx; sourceTree = SOURCE_ROOT; };
+ BEAB807819460AE10083BBB6 /* xtextedt.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xtextedt.cxx; path = ../../../vcl/source/edit/xtextedt.cxx; sourceTree = SOURCE_ROOT; };
+ BECA60DB1910271F00B24A7E /* autorecovery.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = autorecovery.cxx; path = ../../../framework/source/services/autorecovery.cxx; sourceTree = SOURCE_ROOT; };
+ BECA60DC1910271F00B24A7E /* ContextChangeEventMultiplexer.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ContextChangeEventMultiplexer.cxx; path = ../../../framework/source/services/ContextChangeEventMultiplexer.cxx; sourceTree = SOURCE_ROOT; };
+ BECA60DD1910271F00B24A7E /* desktop.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = desktop.cxx; path = ../../../framework/source/services/desktop.cxx; sourceTree = SOURCE_ROOT; };
+ BECA60DE1910271F00B24A7E /* dispatchhelper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dispatchhelper.cxx; path = ../../../framework/source/services/dispatchhelper.cxx; sourceTree = SOURCE_ROOT; };
+ BECA60DF1910271F00B24A7E /* frame.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = frame.cxx; path = ../../../framework/source/services/frame.cxx; sourceTree = SOURCE_ROOT; };
+ BECA60E01910271F00B24A7E /* mediatypedetectionhelper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = mediatypedetectionhelper.cxx; path = ../../../framework/source/services/mediatypedetectionhelper.cxx; sourceTree = SOURCE_ROOT; };
+ BECA60E11910271F00B24A7E /* modulemanager.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = modulemanager.cxx; path = ../../../framework/source/services/modulemanager.cxx; sourceTree = SOURCE_ROOT; };
+ BECA60E21910271F00B24A7E /* pathsettings.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pathsettings.cxx; path = ../../../framework/source/services/pathsettings.cxx; sourceTree = SOURCE_ROOT; };
+ BECA60E31910271F00B24A7E /* sessionlistener.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sessionlistener.cxx; path = ../../../framework/source/services/sessionlistener.cxx; sourceTree = SOURCE_ROOT; };
+ BECA60E41910271F00B24A7E /* substitutepathvars.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = substitutepathvars.cxx; path = ../../../framework/source/services/substitutepathvars.cxx; sourceTree = SOURCE_ROOT; };
+ BECA60E61910271F00B24A7E /* taskcreatorsrv.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = taskcreatorsrv.cxx; path = ../../../framework/source/services/taskcreatorsrv.cxx; sourceTree = SOURCE_ROOT; };
+ BECA60E71910271F00B24A7E /* uriabbreviation.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = uriabbreviation.cxx; path = ../../../framework/source/services/uriabbreviation.cxx; sourceTree = SOURCE_ROOT; };
+ BECA60E81910271F00B24A7E /* urltransformer.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = urltransformer.cxx; path = ../../../framework/source/services/urltransformer.cxx; sourceTree = SOURCE_ROOT; };
+ BECAB371186054DE00F814F9 /* lo.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = lo.mm; path = TiledLibreOffice/lo.mm; sourceTree = SOURCE_ROOT; };
BED2593E18F6B87900C94C72 /* ImageIO.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ImageIO.framework; path = System/Library/Frameworks/ImageIO.framework; sourceTree = SDKROOT; };
BED2594018F6B89000C94C72 /* MobileCoreServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MobileCoreServices.framework; path = System/Library/Frameworks/MobileCoreServices.framework; sourceTree = SDKROOT; };
- BED53168193738D800830918 /* bitmapaction.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bitmapaction.cxx; path = ../../../cppcanvas/source/mtfrenderer/bitmapaction.cxx; sourceTree = "<group>"; };
- BED53169193738D800830918 /* cachedprimitivebase.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cachedprimitivebase.cxx; path = ../../../cppcanvas/source/mtfrenderer/cachedprimitivebase.cxx; sourceTree = "<group>"; };
- BED5316A193738D800830918 /* emfplus.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = emfplus.cxx; path = ../../../cppcanvas/source/mtfrenderer/emfplus.cxx; sourceTree = "<group>"; };
- BED5316B193738D800830918 /* implrenderer.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = implrenderer.cxx; path = ../../../cppcanvas/source/mtfrenderer/implrenderer.cxx; sourceTree = "<group>"; };
- BED5316C193738D800830918 /* lineaction.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = lineaction.cxx; path = ../../../cppcanvas/source/mtfrenderer/lineaction.cxx; sourceTree = "<group>"; };
- BED5316D193738D800830918 /* mtftools.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = mtftools.cxx; path = ../../../cppcanvas/source/mtfrenderer/mtftools.cxx; sourceTree = "<group>"; };
- BED5316E193738D800830918 /* pointaction.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pointaction.cxx; path = ../../../cppcanvas/source/mtfrenderer/pointaction.cxx; sourceTree = "<group>"; };
- BED5316F193738D800830918 /* polypolyaction.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = polypolyaction.cxx; path = ../../../cppcanvas/source/mtfrenderer/polypolyaction.cxx; sourceTree = "<group>"; };
- BED53170193738D800830918 /* textaction.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textaction.cxx; path = ../../../cppcanvas/source/mtfrenderer/textaction.cxx; sourceTree = "<group>"; };
- BED53171193738D800830918 /* transparencygroupaction.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = transparencygroupaction.cxx; path = ../../../cppcanvas/source/mtfrenderer/transparencygroupaction.cxx; sourceTree = "<group>"; };
- BEDB0F08185B7537009A6F26 /* lo.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = lo.xcconfig; path = ../../../lo.xcconfig; sourceTree = "<group>"; };
- BEEE02CE1860ABB700FBDE67 /* program */ = {isa = PBXFileReference; lastKnownFileType = folder; name = program; path = Resources/program; sourceTree = SOURCE_ROOT; };
- BEEE02CF1860ABB700FBDE67 /* share */ = {isa = PBXFileReference; lastKnownFileType = folder; name = share; path = Resources/share; sourceTree = SOURCE_ROOT; };
- BEEE02D01860ABB700FBDE67 /* services */ = {isa = PBXFileReference; lastKnownFileType = folder; name = services; path = Resources/services; sourceTree = SOURCE_ROOT; };
- BEEEF9631860740400FBDE67 /* libiconv.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libiconv.dylib; path = usr/lib/libiconv.dylib; sourceTree = SDKROOT; };
- BEEEF9651860741400FBDE67 /* libz.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libz.dylib; path = usr/lib/libz.dylib; sourceTree = SDKROOT; };
- BEEEF9691860A25400FBDE67 /* test1.odt */ = {isa = PBXFileReference; lastKnownFileType = file; name = test1.odt; path = ../../../../odk/examples/java/DocumentHandling/test/test1.odt; sourceTree = "<group>"; };
- BEEEF96D1860A82900FBDE67 /* fundamentalrc */ = {isa = PBXFileReference; lastKnownFileType = text; name = fundamentalrc; path = Resources/fundamentalrc; sourceTree = SOURCE_ROOT; };
- BEEEF96E1860A82900FBDE67 /* offapi.rdb */ = {isa = PBXFileReference; lastKnownFileType = file; name = offapi.rdb; path = Resources/offapi.rdb; sourceTree = SOURCE_ROOT; };
- BEEEF96F1860A82900FBDE67 /* oovbaapi.rdb */ = {isa = PBXFileReference; lastKnownFileType = file; name = oovbaapi.rdb; path = Resources/oovbaapi.rdb; sourceTree = SOURCE_ROOT; };
- BEEEF9AA1860A82900FBDE67 /* rc */ = {isa = PBXFileReference; lastKnownFileType = text; name = rc; path = Resources/rc; sourceTree = SOURCE_ROOT; };
- BEEEF9AB1860A82900FBDE67 /* services.rdb */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = services.rdb; path = Resources/services.rdb; sourceTree = SOURCE_ROOT; };
- BEEEFDFD1860A82C00FBDE67 /* udkapi.rdb */ = {isa = PBXFileReference; lastKnownFileType = file; name = udkapi.rdb; path = Resources/udkapi.rdb; sourceTree = SOURCE_ROOT; };
- BEEEFDFE1860A82C00FBDE67 /* unorc */ = {isa = PBXFileReference; lastKnownFileType = text; name = unorc; path = Resources/unorc; sourceTree = SOURCE_ROOT; };
+ BED53168193738D800830918 /* bitmapaction.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bitmapaction.cxx; path = ../../../cppcanvas/source/mtfrenderer/bitmapaction.cxx; sourceTree = SOURCE_ROOT; };
+ BED53169193738D800830918 /* cachedprimitivebase.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cachedprimitivebase.cxx; path = ../../../cppcanvas/source/mtfrenderer/cachedprimitivebase.cxx; sourceTree = SOURCE_ROOT; };
+ BED5316A193738D800830918 /* emfplus.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = emfplus.cxx; path = ../../../cppcanvas/source/mtfrenderer/emfplus.cxx; sourceTree = SOURCE_ROOT; };
+ BED5316B193738D800830918 /* implrenderer.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = implrenderer.cxx; path = ../../../cppcanvas/source/mtfrenderer/implrenderer.cxx; sourceTree = SOURCE_ROOT; };
+ BED5316C193738D800830918 /* lineaction.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = lineaction.cxx; path = ../../../cppcanvas/source/mtfrenderer/lineaction.cxx; sourceTree = SOURCE_ROOT; };
+ BED5316D193738D800830918 /* mtftools.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = mtftools.cxx; path = ../../../cppcanvas/source/mtfrenderer/mtftools.cxx; sourceTree = SOURCE_ROOT; };
+ BED5316E193738D800830918 /* pointaction.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pointaction.cxx; path = ../../../cppcanvas/source/mtfrenderer/pointaction.cxx; sourceTree = SOURCE_ROOT; };
+ BED5316F193738D800830918 /* polypolyaction.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = polypolyaction.cxx; path = ../../../cppcanvas/source/mtfrenderer/polypolyaction.cxx; sourceTree = SOURCE_ROOT; };
+ BED53170193738D800830918 /* textaction.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textaction.cxx; path = ../../../cppcanvas/source/mtfrenderer/textaction.cxx; sourceTree = SOURCE_ROOT; };
+ BED53171193738D800830918 /* transparencygroupaction.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = transparencygroupaction.cxx; path = ../../../cppcanvas/source/mtfrenderer/transparencygroupaction.cxx; sourceTree = SOURCE_ROOT; };
+ BEDB0F08185B7537009A6F26 /* lo.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = lo.xcconfig; path = "../../../../ios-work/workdir/ios/generated/lo.xcconfig"; sourceTree = SOURCE_ROOT; };
+ BEEE02CE1860ABB700FBDE67 /* program */ = {isa = PBXFileReference; lastKnownFileType = folder; name = program; path = ../../ioswork/ios/resources/program; sourceTree = SOURCE_ROOT; };
+ BEEE02CF1860ABB700FBDE67 /* share */ = {isa = PBXFileReference; lastKnownFileType = folder; name = share; path = ../../ioswork/ios/resources/share; sourceTree = SOURCE_ROOT; };
+ BEEE02D01860ABB700FBDE67 /* services */ = {isa = PBXFileReference; lastKnownFileType = folder; name = services; path = ../../ioswork/ios/resources/services; sourceTree = SOURCE_ROOT; };
+ BEEEF9691860A25400FBDE67 /* test1.odt */ = {isa = PBXFileReference; lastKnownFileType = file; name = test1.odt; path = ../../../odk/examples/java/DocumentHandling/test/test1.odt; sourceTree = SOURCE_ROOT; };
+ BEEEF96D1860A82900FBDE67 /* fundamentalrc */ = {isa = PBXFileReference; lastKnownFileType = text; name = fundamentalrc; path = ../../ioswork/ios/resources/fundamentalrc; sourceTree = SOURCE_ROOT; };
+ BEEEF96E1860A82900FBDE67 /* offapi.rdb */ = {isa = PBXFileReference; lastKnownFileType = file; name = offapi.rdb; path = ../../ioswork/ios/resources/offapi.rdb; sourceTree = SOURCE_ROOT; };
+ BEEEF96F1860A82900FBDE67 /* oovbaapi.rdb */ = {isa = PBXFileReference; lastKnownFileType = file; name = oovbaapi.rdb; path = ../../ioswork/ios/resources/oovbaapi.rdb; sourceTree = SOURCE_ROOT; };
+ BEEEF9AA1860A82900FBDE67 /* rc */ = {isa = PBXFileReference; lastKnownFileType = text; name = rc; path = ../../ioswork/ios/resources/rc; sourceTree = SOURCE_ROOT; };
+ BEEEF9AB1860A82900FBDE67 /* services.rdb */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = services.rdb; path = ../../ioswork/ios/resources/services.rdb; sourceTree = SOURCE_ROOT; };
+ BEEEFDFD1860A82C00FBDE67 /* udkapi.rdb */ = {isa = PBXFileReference; lastKnownFileType = file; name = udkapi.rdb; path = ../../ioswork/ios/resources/udkapi.rdb; sourceTree = SOURCE_ROOT; };
+ BEEEFDFE1860A82C00FBDE67 /* unorc */ = {isa = PBXFileReference; lastKnownFileType = text; name = unorc; path = ../../ioswork/ios/resources/unorc; sourceTree = SOURCE_ROOT; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
@@ -918,8 +871,6 @@
files = (
BED2594118F6B89000C94C72 /* MobileCoreServices.framework in Frameworks */,
BED2593F18F6B87900C94C72 /* ImageIO.framework in Frameworks */,
- BEEEF9661860741400FBDE67 /* libz.dylib in Frameworks */,
- BEEEF9641860740400FBDE67 /* libiconv.dylib in Frameworks */,
BE82BD7818218E2E00A447B5 /* CoreGraphics.framework in Frameworks */,
BE82BD7A18218E2E00A447B5 /* UIKit.framework in Frameworks */,
BE82BD7618218E2E00A447B5 /* Foundation.framework in Frameworks */,
@@ -935,7 +886,7 @@
BE03BF9018F9642F00620DC7 /* icu */,
);
name = "External library sources";
- sourceTree = "<group>";
+ sourceTree = SOURCE_ROOT;
};
BE03BF9018F9642F00620DC7 /* icu */ = {
isa = PBXGroup;
@@ -943,7 +894,7 @@
BE03BF9118F9648F00620DC7 /* udata.cpp */,
);
name = icu;
- sourceTree = "<group>";
+ sourceTree = SOURCE_ROOT;
};
BE03BF9418FC199B00620DC7 /* i18npool */ = {
isa = PBXGroup;
@@ -951,7 +902,7 @@
BE03BF9518FC1A1C00620DC7 /* xdictionary.cxx */,
);
name = i18npool;
- sourceTree = "<group>";
+ sourceTree = SOURCE_ROOT;
};
BE0898E61860D3CD0021A679 /* LibreOffice source files */ = {
isa = PBXGroup;
@@ -971,9 +922,10 @@
BE82C42718CA17A60050EB79 /* svx */,
BE82C4B918CDBC5B0050EB79 /* sw */,
BE0898E71860D3DA0021A679 /* vcl */,
+ BE9931F9199A1B750008A364 /* xmlsecurity */,
);
name = "LibreOffice source files";
- sourceTree = "<group>";
+ sourceTree = SOURCE_ROOT;
};
BE0898E71860D3DA0021A679 /* vcl */ = {
isa = PBXGroup;
@@ -991,7 +943,7 @@
BE6F3D86192E28BF00D6FCC0 /* wmf */,
);
name = vcl;
- sourceTree = "<group>";
+ sourceTree = SOURCE_ROOT;
};
BE0899121860D78B0021A679 /* app */ = {
isa = PBXGroup;
@@ -1004,7 +956,6 @@
BE6DC8FD19D9AF6100AFB393 /* IconThemeInfo.cxx */,
BE6DC8FE19D9AF6100AFB393 /* IconThemeScanner.cxx */,
BE6DC8FF19D9AF6100AFB393 /* IconThemeSelector.cxx */,
- BE0898ED1860D42B0021A679 /* idlemgr.cxx */,
BE0898EE1860D42B0021A679 /* salvtables.cxx */,
BE0898EF1860D42B0021A679 /* session.cxx */,
BE0898F01860D42B0021A679 /* settings.cxx */,
@@ -1020,13 +971,12 @@
BE0898FB1860D42B0021A679 /* vclevent.cxx */,
);
name = app;
- sourceTree = "<group>";
+ sourceTree = SOURCE_ROOT;
};
BE0899131860F6100021A679 /* quartz */ = {
isa = PBXGroup;
children = (
BE0899141860F6450021A679 /* ctfonts.cxx */,
- BE0899151860F6450021A679 /* ctlayout.cxx */,
BE0899161860F6450021A679 /* salbmp.cxx */,
BE0899171860F6450021A679 /* salgdi.cxx */,
BE0899181860F6450021A679 /* salgdicommon.cxx */,
@@ -1034,7 +984,7 @@
BE08991C1860F6450021A679 /* utils.cxx */,
);
name = quartz;
- sourceTree = "<group>";
+ sourceTree = SOURCE_ROOT;
};
BE35B53818868ECD001B7439 /* ios */ = {
isa = PBXGroup;
@@ -1043,7 +993,7 @@
BE35B53A18868EFD001B7439 /* iosinst.cxx */,
);
name = ios;
- sourceTree = "<group>";
+ sourceTree = SOURCE_ROOT;
};
BE35B53B18869D2B001B7439 /* headless */ = {
isa = PBXGroup;
@@ -1057,7 +1007,7 @@
BE35B54218869D69001B7439 /* svpvd.cxx */,
);
name = headless;
- sourceTree = "<group>";
+ sourceTree = SOURCE_ROOT;
};
BE35B5431886C4CC001B7439 /* gdi */ = {
isa = PBXGroup;
@@ -1075,11 +1025,9 @@
BE35B54E1886C50A001B7439 /* bmpfast.cxx */,
BE35B54F1886C50A001B7439 /* configsettings.cxx */,
BE35B5501886C50A001B7439 /* cvtgrf.cxx */,
- BE35B5511886C50A001B7439 /* cvtsvm.cxx */,
BE35B5521886C50A001B7439 /* dibtools.cxx */,
BE35B5531886C50A001B7439 /* embeddedfontshelper.cxx */,
BE35B5541886C50A001B7439 /* extoutdevdata.cxx */,
- BE35B5551886C50A001B7439 /* font.cxx */,
BE35B5561886C50A001B7439 /* gdimetafiletools.cxx */,
BE35B5571886C50A001B7439 /* gdimtf.cxx */,
BE35B5581886C50A001B7439 /* gfxlink.cxx */,
@@ -1087,20 +1035,14 @@
BE35B55A1886C50A001B7439 /* graph.cxx */,
BE35B55B1886C50A001B7439 /* graphictools.cxx */,
BE35B55C1886C50A001B7439 /* hatch.cxx */,
- BE35B55D1886C50A001B7439 /* image.cxx */,
- BE35B55E1886C50A001B7439 /* imagerepository.cxx */,
BE35B55F1886C50A001B7439 /* impanmvw.cxx */,
BE35B5601886C50A001B7439 /* impbmp.cxx */,
- BE35B5611886C50A001B7439 /* impfont.cxx */,
BE35B5621886C50A001B7439 /* impgraph.cxx */,
- BE35B5631886C50A001B7439 /* impimage.cxx */,
- BE35B5641886C50A001B7439 /* impimagetree.cxx */,
BE35B5651886C50A001B7439 /* impvect.cxx */,
BE35B5661886C50A001B7439 /* jobset.cxx */,
BE35B5671886C50A001B7439 /* lineinfo.cxx */,
BE35B5681886C50A001B7439 /* mapmod.cxx */,
BE35B5691886C50A001B7439 /* metaact.cxx */,
- BE35B56A1886C50A001B7439 /* metric.cxx */,
BE35B56B1886C50A001B7439 /* octree.cxx */,
BE35B56C1886C50A001B7439 /* oldprintadaptor.cxx */,
BE35B5751886C50A001B7439 /* pdfextoutdevdata.cxx */,
@@ -1126,7 +1068,7 @@
BE35B5891886C50A001B7439 /* wall.cxx */,
);
name = gdi;
- sourceTree = "<group>";
+ sourceTree = SOURCE_ROOT;
};
BE35B58A188FFA43001B7439 /* cppuhelper */ = {
isa = PBXGroup;
@@ -1158,7 +1100,7 @@
BE35B5A3188FFA88001B7439 /* weak.cxx */,
);
name = cppuhelper;
- sourceTree = "<group>";
+ sourceTree = SOURCE_ROOT;
};
BE35B5A6189051F7001B7439 /* sfx2 */ = {
isa = PBXGroup;
@@ -1167,7 +1109,7 @@
BE55B0C418D9AAE300950228 /* control */,
);
name = sfx2;
- sourceTree = "<group>";
+ sourceTree = SOURCE_ROOT;
};
BE55B06E18D96F5B00950228 /* sdr */ = {
isa = PBXGroup;
@@ -1188,7 +1130,6 @@
BE55B07C18D96FB000950228 /* viewcontactofgraphic.cxx */,
BE55B07D18D96FB000950228 /* viewcontactofgroup.cxx */,
BE55B07E18D96FB000950228 /* viewcontactofmasterpagedescriptor.cxx */,
- BE55B07F18D96FB000950228 /* viewcontactofopengl.cxx */,
BE55B08018D96FB000950228 /* viewcontactofpageobj.cxx */,
BE55B08118D96FB000950228 /* viewcontactofsdrcaptionobj.cxx */,
BE55B08218D96FB000950228 /* viewcontactofsdrcircobj.cxx */,
@@ -1219,7 +1160,7 @@
BE55B09B18D96FB000950228 /* viewobjectcontactredirector.cxx */,
);
name = sdr;
- sourceTree = "<group>";
+ sourceTree = SOURCE_ROOT;
};
BE55B09C18D97DCC00950228 /* layout */ = {
isa = PBXGroup;
@@ -1265,7 +1206,7 @@
BE55B0C318D97E2700950228 /* wsfrm.cxx */,
);
name = layout;
- sourceTree = "<group>";
+ sourceTree = SOURCE_ROOT;
};
BE55B0C418D9AAE300950228 /* control */ = {
isa = PBXGroup;
@@ -1277,7 +1218,6 @@
BE55B0C918D9AB0A00950228 /* msg.cxx */,
BE55B0CA18D9AB0A00950228 /* msgpool.cxx */,
BE35B5A71890520E001B7439 /* objface.cxx */,
- BE55B0CB18D9AB0A00950228 /* querystatus.cxx */,
BE55B0CC18D9AB0A00950228 /* recentdocsview.cxx */,
BE55B0CD18D9AB0A00950228 /* recentdocsviewitem.cxx */,
BE55B0CE18D9AB0A00950228 /* request.cxx */,
@@ -1285,10 +1225,8 @@
BE55B0D018D9AB0A00950228 /* shell.cxx */,
BE55B0D118D9AB0A00950228 /* sorgitm.cxx */,
BE55B0D218D9AB0A00950228 /* statcach.cxx */,
- BE55B0D318D9AB0A00950228 /* templateabstractview.cxx */,
BE55B0D418D9AB0A00950228 /* templatecontaineritem.cxx */,
BE55B0D518D9AB0A00950228 /* templatelocalview.cxx */,
- BE55B0D618D9AB0A00950228 /* templateremoteview.cxx */,
BE55B0D718D9AB0A00950228 /* templatesearchview.cxx */,
BE55B0D818D9AB0A00950228 /* templateviewitem.cxx */,
BE55B0D918D9AB0A00950228 /* thumbnailview.cxx */,
@@ -1297,7 +1235,7 @@
BE55B0DC18D9AB0A00950228 /* unoctitm.cxx */,
);
name = control;
- sourceTree = "<group>";
+ sourceTree = SOURCE_ROOT;
};
BE55B0DD18D9AB1600950228 /* appl */ = {
isa = PBXGroup;
@@ -1342,7 +1280,7 @@
BE55B10418D9AB5400950228 /* xpackcreator.cxx */,
);
name = appl;
- sourceTree = "<group>";
+ sourceTree = SOURCE_ROOT;
};
BE55B10518DAD85E00950228 /* cppu */ = {
isa = PBXGroup;
@@ -1351,7 +1289,7 @@
BE55B10718DAD89800950228 /* cppu_opt.cxx */,
);
name = cppu;
- sourceTree = "<group>";
+ sourceTree = SOURCE_ROOT;
};
BE55B10818DB673300950228 /* oox */ = {
isa = PBXGroup;
@@ -1359,7 +1297,7 @@
BE55B10918DB674E00950228 /* drawingml */,
);
name = oox;
- sourceTree = "<group>";
+ sourceTree = SOURCE_ROOT;
};
BE55B10918DB674E00950228 /* drawingml */ = {
isa = PBXGroup;
@@ -1371,12 +1309,6 @@
BE55B10E18DB67A900950228 /* colorchoicecontext.cxx */,
BE55B10F18DB67A900950228 /* connectorshapecontext.cxx */,
BE55B11018DB67A900950228 /* customshapegeometry.cxx */,
- BE55B11118DB67A900950228 /* customshapepresets1.cxx */,
- BE55B11218DB67A900950228 /* customshapepresets2.cxx */,
- BE55B11318DB67A900950228 /* customshapepresets3.cxx */,
- BE55B11418DB67A900950228 /* customshapepresets4.cxx */,
- BE55B11518DB67A900950228 /* customshapepresets5.cxx */,
- BE55B11618DB67A900950228 /* customshapepresets6.cxx */,
BE55B11718DB67A900950228 /* customshapeproperties.cxx */,
BE55B11918DB67A900950228 /* diagram */,
BE55B11A18DB67A900950228 /* drawingmltypes.cxx */,
@@ -1427,7 +1359,7 @@
BE55B14718DB67A900950228 /* transform2dcontext.cxx */,
);
name = drawingml;
- sourceTree = "<group>";
+ sourceTree = SOURCE_ROOT;
};
BE55B14818DB6DC200950228 /* customshapes */ = {
isa = PBXGroup;
@@ -1440,10 +1372,9 @@
BE55B14E18DB6DE700950228 /* EnhancedCustomShapeGeometry.cxx */,
BE55B14F18DB6DE700950228 /* EnhancedCustomShapeHandle.cxx */,
BE55B15018DB6DE700950228 /* EnhancedCustomShapeTypeNames.cxx */,
- BE55B15118DB6DE700950228 /* tbxcustomshapes.cxx */,
);
name = customshapes;
- sourceTree = "<group>";
+ sourceTree = SOURCE_ROOT;
};
BE6DC8EB19D9A66B00AFB393 /* desktop */ = {
isa = PBXGroup;
@@ -1451,7 +1382,7 @@
BE6DC8EC19D9A6AD00AFB393 /* app */,
);
name = desktop;
- sourceTree = "<group>";
+ sourceTree = SOURCE_ROOT;
};
BE6DC8EC19D9A6AD00AFB393 /* app */ = {
isa = PBXGroup;
@@ -1461,7 +1392,6 @@
BE6DC8EF19D9A6E500AFB393 /* check_ext_deps.cxx */,
BE6DC8F019D9A6E500AFB393 /* cmdlineargs.cxx */,
BE6DC8F119D9A6E500AFB393 /* cmdlinehelp.cxx */,
- BE6DC8F219D9A6E500AFB393 /* configinit.cxx */,
BE6DC8F319D9A6E500AFB393 /* desktopcontext.cxx */,
BE6DC8F419D9A6E500AFB393 /* desktopcontext.hxx */,
BE6DC8F519D9A6E500AFB393 /* desktopresid.cxx */,
@@ -1474,7 +1404,7 @@
BE6DC8FC19D9A6E500AFB393 /* userinstall.cxx */,
);
name = app;
- sourceTree = "<group>";
+ sourceTree = SOURCE_ROOT;
};
BE6DC90019D9B50C00AFB393 /* rtl */ = {
isa = PBXGroup;
@@ -1491,7 +1421,6 @@
BE6DC90A19D9B55E00AFB393 /* digest.cxx */,
BE6DC90B19D9B55E00AFB393 /* hash.cxx */,
BE6DC90C19D9B55E00AFB393 /* locale.cxx */,
- BE6DC90D19D9B55E00AFB393 /* logfile.cxx */,
BE6DC90E19D9B55E00AFB393 /* math.cxx */,
BE6DC90F19D9B55E00AFB393 /* random.cxx */,
BE6DC91019D9B55E00AFB393 /* rtl_process.cxx */,
@@ -1506,20 +1435,19 @@
BE6DC91919D9B55E00AFB393 /* uuid.cxx */,
);
name = rtl;
- sourceTree = "<group>";
+ sourceTree = SOURCE_ROOT;
};
BE6DC91A19D9B57200AFB393 /* all */ = {
isa = PBXGroup;
children = (
BE6DC91B19D9B59400AFB393 /* compat.cxx */,
BE6DC91C19D9B59400AFB393 /* debugbase.cxx */,
- BE6DC91D19D9B59400AFB393 /* filepath.c */,
BE6DC91E19D9B59400AFB393 /* loadmodulerelative.cxx */,
BE6DC91F19D9B59400AFB393 /* log.cxx */,
BE6DC92019D9B59400AFB393 /* utility.cxx */,
);
name = all;
- sourceTree = "<group>";
+ sourceTree = SOURCE_ROOT;
};
BE6DC92119D9B59D00AFB393 /* unx */ = {
isa = PBXGroup;
@@ -1533,30 +1461,20 @@
BE6DC92819D9B5DD00AFB393 /* file_url.cxx */,
BE6DC92919D9B5DD00AFB393 /* file_volume.cxx */,
BE6DC92A19D9B5DD00AFB393 /* file.cxx */,
- BE6DC92B19D9B5DD00AFB393 /* interlck.c */,
- BE6DC92C19D9B5DD00AFB393 /* memory.c */,
BE6DC92D19D9B5DD00AFB393 /* module.cxx */,
- BE6DC92E19D9B5DD00AFB393 /* mutex.c */,
- BE6DC92F19D9B5DD00AFB393 /* nlsupport.c */,
BE6DC93019D9B5DD00AFB393 /* osxlocale.cxx */,
BE6DC93119D9B5DD00AFB393 /* pipe.cxx */,
BE6DC93219D9B5DD00AFB393 /* process_impl.cxx */,
BE6DC93319D9B5DD00AFB393 /* process.cxx */,
BE6DC93419D9B5DD00AFB393 /* profile.cxx */,
- BE6DC93519D9B5DD00AFB393 /* readwrite_helper.c */,
BE6DC93619D9B5DD00AFB393 /* salinit.cxx */,
BE6DC93719D9B5DD00AFB393 /* security.cxx */,
- BE6DC93819D9B5DD00AFB393 /* signal.c */,
- BE6DC93919D9B5DD00AFB393 /* socket.c */,
- BE6DC93A19D9B5DD00AFB393 /* system.c */,
BE6DC93B19D9B5DD00AFB393 /* tempfile.cxx */,
- BE6DC93C19D9B5DD00AFB393 /* thread.c */,
- BE6DC93D19D9B5DD00AFB393 /* time.c */,
BE6DC93E19D9B5DD00AFB393 /* uunxapi.cxx */,
BE6DC93F19D9B5DD00AFB393 /* uunxapi.mm */,
);
name = unx;
- sourceTree = "<group>";
+ sourceTree = SOURCE_ROOT;
};
BE6F3D66192E283300D6FCC0 /* outdev */ = {
isa = PBXGroup;
@@ -1583,7 +1501,7 @@
BE6F3D7A192E286B00D6FCC0 /* wallpaper.cxx */,
);
name = outdev;
- sourceTree = "<group>";
+ sourceTree = SOURCE_ROOT;
};
BE6F3D7B192E287400D6FCC0 /* filter */ = {
isa = PBXGroup;
@@ -1600,7 +1518,7 @@
BE6F3D85192E28B300D6FCC0 /* sgvtext.cxx */,
);
name = filter;
- sourceTree = "<group>";
+ sourceTree = SOURCE_ROOT;
};
BE6F3D86192E28BF00D6FCC0 /* wmf */ = {
isa = PBXGroup;
@@ -1613,7 +1531,7 @@
BE6F3D8C192E28E400D6FCC0 /* wmfwr.cxx */,
);
name = wmf;
- sourceTree = "<group>";
+ sourceTree = SOURCE_ROOT;
};
BE7C277118D1DDC500C4908C /* doc */ = {
isa = PBXGroup;
@@ -1626,7 +1544,6 @@
BE7C277718D1DDF600C4908C /* docchart.cxx */,
BE7C277818D1DDF600C4908C /* doccomp.cxx */,
BE7C277918D1DDF600C4908C /* doccorr.cxx */,
- BE7C277A18D1DDF600C4908C /* docdde.cxx */,
BE7C277B18D1DDF600C4908C /* docdesc.cxx */,
BE7C277C18D1DDF600C4908C /* docdraw.cxx */,
BE7C277D18D1DDF600C4908C /* docedt.cxx */,
@@ -1665,14 +1582,14 @@
BE7C279E18D1DDF600C4908C /* visiturl.cxx */,
);
name = doc;
- sourceTree = "<group>";
+ sourceTree = SOURCE_ROOT;
};
BE82BD6918218E2E00A447B5 = {
isa = PBXGroup;
children = (
+ BE82BD7C18218E2E00A447B5 /* Supporting Files */,
BE03BF8F18F9641D00620DC7 /* External library sources */,
BE0898E61860D3CD0021A679 /* LibreOffice source files */,
- BE9931F9199A1B750008A364 /* xmlsecurity */,
BE82BD7B18218E2E00A447B5 /* TiledLibreOffice */,
BEEEF9681860A21F00FBDE67 /* Resources */,
BE82BD7418218E2E00A447B5 /* Frameworks */,
@@ -1686,22 +1603,19 @@
BE82BD7218218E2E00A447B5 /* TiledLibreOffice.app */,
);
name = Products;
- sourceTree = "<group>";
+ sourceTree = SOURCE_ROOT;
};
BE82BD7418218E2E00A447B5 /* Frameworks */ = {
isa = PBXGroup;
children = (
BED2594018F6B89000C94C72 /* MobileCoreServices.framework */,
BED2593E18F6B87900C94C72 /* ImageIO.framework */,
- BEEEF9651860741400FBDE67 /* libz.dylib */,
- BEEEF9631860740400FBDE67 /* libiconv.dylib */,
BE82BD7518218E2E00A447B5 /* Foundation.framework */,
BE82BD7718218E2E00A447B5 /* CoreGraphics.framework */,
BE82BD7918218E2E00A447B5 /* UIKit.framework */,
- BE82BD9418218E2E00A447B5 /* XCTest.framework */,
);
name = Frameworks;
- sourceTree = "<group>";
+ sourceTree = SOURCE_ROOT;
};
BE82BD7B18218E2E00A447B5 /* TiledLibreOffice */ = {
isa = PBXGroup;
@@ -1718,10 +1632,9 @@
BE82BD8A18218E2E00A447B5 /* ViewController.h */,
BE82BD8B18218E2E00A447B5 /* ViewController.m */,
BE82BD8D18218E2E00A447B5 /* Images.xcassets */,
- BE82BD7C18218E2E00A447B5 /* Supporting Files */,
);
path = TiledLibreOffice;
- sourceTree = "<group>";
+ sourceTree = SOURCE_ROOT;
};
BE82BD7C18218E2E00A447B5 /* Supporting Files */ = {
isa = PBXGroup;
@@ -1733,7 +1646,8 @@
BE82BD8318218E2E00A447B5 /* TiledLibreOffice-Prefix.pch */,
);
name = "Supporting Files";
- sourceTree = "<group>";
+ path = TiledLibreOffice;
+ sourceTree = SOURCE_ROOT;
};
BE82C38818C752760050EB79 /* sal */ = {
isa = PBXGroup;
@@ -1743,7 +1657,7 @@
BE6DC92119D9B59D00AFB393 /* unx */,
);
name = sal;
- sourceTree = "<group>";
+ sourceTree = SOURCE_ROOT;
};
BE82C42718CA17A60050EB79 /* svx */ = {
isa = PBXGroup;
@@ -1753,7 +1667,7 @@
BE82C42818CA184E0050EB79 /* svdraw */,
);
name = svx;
- sourceTree = "<group>";
+ sourceTree = SOURCE_ROOT;
};
BE82C42818CA184E0050EB79 /* svdraw */ = {
isa = PBXGroup;
@@ -1832,7 +1746,7 @@
BE82C47018CA18610050EB79 /* svdxcgv.cxx */,
);
name = svdraw;
- sourceTree = "<group>";
+ sourceTree = SOURCE_ROOT;
};
BE82C47118CA18D70050EB79 /* drawinglayer */ = {
isa = PBXGroup;
@@ -1841,7 +1755,7 @@
BE82C47218CA18F60050EB79 /* processor2d */,
);
name = drawinglayer;
- sourceTree = "<group>";
+ sourceTree = SOURCE_ROOT;
};
BE82C47218CA18F60050EB79 /* processor2d */ = {
isa = PBXGroup;
@@ -1862,7 +1776,7 @@
BE82C48018CA192D0050EB79 /* vclprocessor2d.cxx */,
);
name = processor2d;
- sourceTree = "<group>";
+ sourceTree = SOURCE_ROOT;
};
BE82C48118CA19660050EB79 /* primitive2d */ = {
isa = PBXGroup;
@@ -1922,7 +1836,7 @@
BE82C4B618CA19920050EB79 /* wrongspellprimitive2d.cxx */,
);
name = primitive2d;
- sourceTree = "<group>";
+ sourceTree = SOURCE_ROOT;
};
BE82C4B918CDBC5B0050EB79 /* sw */ = {
isa = PBXGroup;
@@ -1932,7 +1846,7 @@
BE82C4BA18CDBCB00050EB79 /* view */,
);
name = sw;
- sourceTree = "<group>";
+ sourceTree = SOURCE_ROOT;
};
BE82C4BA18CDBCB00050EB79 /* view */ = {
isa = PBXGroup;
@@ -1947,7 +1861,7 @@
BE82C4C218CDBCC50050EB79 /* vprint.cxx */,
);
name = view;
- sourceTree = "<group>";
+ sourceTree = SOURCE_ROOT;
};
BE82C4C318CE6D860050EB79 /* window */ = {
isa = PBXGroup;
@@ -1963,8 +1877,6 @@
BE82C4CC18CE6DBE0050EB79 /* decoview.cxx */,
BE82C4CD18CE6DBE0050EB79 /* dialog.cxx */,
BE82C4CE18CE6DBE0050EB79 /* dlgctrl.cxx */,
- BE82C4CF18CE6DBE0050EB79 /* dndevdis.cxx */,
- BE82C4D018CE6DBE0050EB79 /* dndlcon.cxx */,
BE82C4D118CE6DBE0050EB79 /* dockingarea.cxx */,
BE82C4D218CE6DBE0050EB79 /* dockmgr.cxx */,
BE82C4D318CE6DBE0050EB79 /* dockwin.cxx */,
@@ -1976,7 +1888,6 @@
BE82C4D918CE6DBE0050EB79 /* menu.cxx */,
BE82C4DA18CE6DBE0050EB79 /* mnemonic.cxx */,
BE82C4DB18CE6DBE0050EB79 /* mnemonicengine.cxx */,
- BE82C4DC18CE6DBE0050EB79 /* mouseevent.cxx */,
BE82C4DD18CE6DBE0050EB79 /* msgbox.cxx */,
BE82C4DE18CE6DBE0050EB79 /* popupmenuwindow.cxx */,
BE82C4DF18CE6DBE0050EB79 /* printdlg.cxx */,
@@ -1999,7 +1910,7 @@
BE82C4F018CE6DBE0050EB79 /* wrkwin.cxx */,
);
name = window;
- sourceTree = "<group>";
+ sourceTree = SOURCE_ROOT;
};
BE9931C3199A17E90008A364 /* comphelper */ = {
isa = PBXGroup;
@@ -2007,7 +1918,7 @@
BE9931C4199A182D0008A364 /* misc */,
);
name = comphelper;
- sourceTree = "<group>";
+ sourceTree = SOURCE_ROOT;
};
BE9931C4199A182D0008A364 /* misc */ = {
isa = PBXGroup;
@@ -2035,7 +1946,6 @@
BE9931D9199A185D0008A364 /* documentiologring.cxx */,
BE9931DA199A185D0008A364 /* evtlistenerhlp.cxx */,
BE9931DB199A185D0008A364 /* evtmethodhelper.cxx */,
- BE9931DC199A185D0008A364 /* expandmacro.cxx */,
BE9931DD199A185D0008A364 /* instancelocker.cxx */,
BE9931DE199A185D0008A364 /* interaction.cxx */,
BE9931DF199A185D0008A364 /* listenernotification.cxx */,
@@ -2066,7 +1976,7 @@
BE9931F8199A185D0008A364 /* weakeventlistener.cxx */,
);
name = misc;
- sourceTree = "<group>";
+ sourceTree = SOURCE_ROOT;
};
BE9931F9199A1B750008A364 /* xmlsecurity */ = {
isa = PBXGroup;
@@ -2074,7 +1984,7 @@
BE9931FB199A1BC20008A364 /* xmlsec */,
);
name = xmlsecurity;
- sourceTree = "<group>";
+ sourceTree = SOURCE_ROOT;
};
BE9931FA199A1B920008A364 /* nss */ = {
isa = PBXGroup;
@@ -2093,7 +2003,7 @@
BE993207199A1BF00008A364 /* xsec_nss.cxx */,
);
name = nss;
- sourceTree = "<group>";
+ sourceTree = SOURCE_ROOT;
};
BE9931FB199A1BC20008A364 /* xmlsec */ = {
isa = PBXGroup;
@@ -2101,7 +2011,7 @@
BE9931FA199A1B920008A364 /* nss */,
);
name = xmlsec;
- sourceTree = "<group>";
+ sourceTree = SOURCE_ROOT;
};
BE9F45F81868393D00B8BE69 /* bridges */ = {
isa = PBXGroup;
@@ -2126,7 +2036,7 @@
BE9F46031868396500B8BE69 /* uno2cpp.cxx */,
);
name = bridges;
- sourceTree = "<group>";
+ sourceTree = SOURCE_ROOT;
};
BEAB8058194603EC0083BBB6 /* control */ = {
isa = PBXGroup;
@@ -2140,10 +2050,8 @@
BEAB805F194604400083BBB6 /* fixed.cxx */,
BEAB8060194604400083BBB6 /* fixedhyper.cxx */,
BEAB8061194604400083BBB6 /* group.cxx */,
- BEAB8062194604400083BBB6 /* ilstbox.cxx */,
BEAB8063194604400083BBB6 /* imgctrl.cxx */,
BEAB8064194604400083BBB6 /* longcurr.cxx */,
- BEAB8065194604400083BBB6 /* lstbox.cxx */,
BEAB8066194604400083BBB6 /* menubtn.cxx */,
BEAB8067194604400083BBB6 /* morebtn.cxx */,
BEAB8068194604400083BBB6 /* prgsbar.cxx */,
@@ -2156,7 +2064,7 @@
BEAB806F194604400083BBB6 /* throbber.cxx */,
);
name = control;
- sourceTree = "<group>";
+ sourceTree = SOURCE_ROOT;
};
BEAB807019460A920083BBB6 /* edit */ = {
isa = PBXGroup;
@@ -2171,7 +2079,7 @@
BEAB807819460AE10083BBB6 /* xtextedt.cxx */,
);
name = edit;
- sourceTree = "<group>";
+ sourceTree = SOURCE_ROOT;
};
BECA60D9191026BA00B24A7E /* framework */ = {
isa = PBXGroup;
@@ -2179,7 +2087,7 @@
BECA60DA191026FA00B24A7E /* services */,
);
name = framework;
- sourceTree = "<group>";
+ sourceTree = SOURCE_ROOT;
};
BECA60DA191026FA00B24A7E /* services */ = {
isa = PBXGroup;
@@ -2194,13 +2102,12 @@
BECA60E21910271F00B24A7E /* pathsettings.cxx */,
BECA60E31910271F00B24A7E /* sessionlistener.cxx */,
BECA60E41910271F00B24A7E /* substitutepathvars.cxx */,
- BECA60E51910271F00B24A7E /* tabwindowservice.cxx */,
BECA60E61910271F00B24A7E /* taskcreatorsrv.cxx */,
BECA60E71910271F00B24A7E /* uriabbreviation.cxx */,
BECA60E81910271F00B24A7E /* urltransformer.cxx */,
);
name = services;
- sourceTree = "<group>";
+ sourceTree = SOURCE_ROOT;
};
BED531661937389B00830918 /* cppcanvas */ = {
isa = PBXGroup;
@@ -2208,7 +2115,7 @@
BED53167193738B000830918 /* mtfrenderer */,
);
name = cppcanvas;
- sourceTree = "<group>";
+ sourceTree = SOURCE_ROOT;
};
BED53167193738B000830918 /* mtfrenderer */ = {
isa = PBXGroup;
@@ -2225,7 +2132,7 @@
BED53171193738D800830918 /* transparencygroupaction.cxx */,
);
name = mtfrenderer;
- sourceTree = "<group>";
+ sourceTree = SOURCE_ROOT;
};
BEEEF9681860A21F00FBDE67 /* Resources */ = {
isa = PBXGroup;
@@ -2245,7 +2152,7 @@
);
name = Resources;
path = TiledLibreOffice;
- sourceTree = "<group>";
+ sourceTree = SOURCE_ROOT;
};
/* End PBXGroup section */
@@ -2341,7 +2248,8 @@
BE82BD7F18218E2E00A447B5 /* en */,
);
name = InfoPlist.strings;
- sourceTree = "<group>";
+ path = TiledLibreOffice;
+ sourceTree = SOURCE_ROOT;
};
/* End PBXVariantGroup section */
@@ -2386,6 +2294,17 @@
"$(LO_WORKDIR)/UnoApiHeadersTarget/udkapi/comprehensive",
"$(LO_WORKDIR)/UnoApiHeadersTarget/offapi/comprehensive",
"$(LO_WORKDIR)/UnpackedTarball/icu/source/common",
+ "$(LO_WORKDIR)/ios/generated",
+ );
+ "HEADER_SEARCH_PATHS[arch=*]" = (
+ "$(inherited)",
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
+ "$(LO_BUILDDIR)/config_host",
+ "$(LO_SRCDIR)/include",
+ "$(LO_WORKDIR)/UnoApiHeadersTarget/udkapi/comprehensive",
+ "$(LO_WORKDIR)/UnoApiHeadersTarget/offapi/comprehensive",
+ "$(LO_WORKDIR)/UnpackedTarball/icu/source/common",
+ "$(LO_WORKDIR)/ios/generated",
);
IPHONEOS_DEPLOYMENT_TARGET = 9.3;
ONLY_ACTIVE_ARCH = YES;
diff --git a/ios/experimental/TiledLibreOffice/TiledLibreOffice/TiledLibreOffice-Info.plist b/ios/experimental/TiledLibreOffice/TiledLibreOffice/TiledLibreOffice-Info.plist
index 4110a9cf10f2..e75bbe4bf2f9 100644
--- a/ios/experimental/TiledLibreOffice/TiledLibreOffice/TiledLibreOffice-Info.plist
+++ b/ios/experimental/TiledLibreOffice/TiledLibreOffice/TiledLibreOffice-Info.plist
@@ -9,7 +9,7 @@
<key>CFBundleExecutable</key>
<string>${EXECUTABLE_NAME}</string>
<key>CFBundleIdentifier</key>
- <string>org.libreoffice.${PRODUCT_NAME:rfc1034identifier}</string>
+ <string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
@@ -24,12 +24,12 @@
<string>1.0</string>
<key>LSRequiresIPhoneOS</key>
<true/>
+ <key>UIFileSharingEnabled</key>
+ <true/>
<key>UIRequiredDeviceCapabilities</key>
<array>
<string>armv7</string>
</array>
- <key>UIFileSharingEnabled</key>
- <true/>
<key>UISupportedInterfaceOrientations~ipad</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
diff --git a/ios/lo.xcconfig.in b/ios/lo.xcconfig.in
index 61477898500a..08623d8a9067 100644
--- a/ios/lo.xcconfig.in
+++ b/ios/lo.xcconfig.in
@@ -29,4 +29,4 @@ DEBUG_INFORMATION_FORMAT=@XCODE_DEBUG_INFORMATION_FORMAT@
LINK_LDFLAGS =
OTHER_CFLAGS =
OTHER_CPLUSPLUSFLAGS =
-SYMROOT = @BUILDDIR@/ios/TiledLibreOffice
+SYMROOT = @WORKDIR@/ios/build