[Libreoffice-commits] core.git: .gitignore ios/CustomTarget_Lo_Xcconfig.mk ios/CustomTarget_TiledLibreOffice_app.mk ios/experimental ios/.gitignore ios/lo.xcconfig.in

jan Iversen jani at libreoffice.org
Thu Feb 16 15:04:39 UTC 2017


 .gitignore                                                                     |    2 
 ios/.gitignore                                                                 |    3 
 ios/CustomTarget_Lo_Xcconfig.mk                                                |  138 
 ios/CustomTarget_TiledLibreOffice_app.mk                                       |  100 
 ios/experimental/TiledLibreOffice/TiledLibreOffice.xcodeproj/project.pbxproj   | 1861 ++++------
 ios/experimental/TiledLibreOffice/TiledLibreOffice/TiledLibreOffice-Info.plist |    6 
 ios/lo.xcconfig.in                                                             |    2 
 7 files changed, 1018 insertions(+), 1094 deletions(-)

New commits:
commit 7a8bfd1041179997269ca02ba156136cf8b622b5
Author: jan Iversen <jani at libreoffice.org>
Date:   Sat Feb 11 19:31:45 2017 +0100

    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 at libreoffice.org>
    Reviewed-by: jan iversen <jani at libreoffice.org>

diff --git a/.gitignore b/.gitignore
index d3be78c..1b954b1 100644
--- a/.gitignore
+++ b/.gitignore
@@ -127,7 +127,6 @@ xcuserdata
 *.xccheckout
 *.moved-aside
 DerivedData
-*.xcodeproj
 *.xcworkspace
 
 # MSVS specific
@@ -136,7 +135,6 @@ DerivedData
 *.sln
 *.v11*
 *.v12*
-*.vcxproj*
 *.opensdf
 !windows/*.sln
 !windows/*.vcxproj*
diff --git a/ios/.gitignore b/ios/.gitignore
index 08c6a68..4c274d7 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 8670355..75a6cb0 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 4c14329..d542c3e 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 6b4a78d..392f6c6 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>"; };

... etc. - the rest is truncated


More information about the Libreoffice-commits mailing list