[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677

darin darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 06:24:06 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 83f2d99ccffafde471532d3f9930cf513d1ad576
Author: darin <darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Jul 12 17:35:13 2002 +0000

    top level:
    
    	Top level part of making WebCore build with Project Builder
    	instead of using automake.
    
            * Makefile.am: Remove rules for building .pfe files. Add new one-time-commands
    	and force-clean-timestamp features, so I don't have to send out instructions to
    	everyone about how to make things build.
            * configure.in: Remove options for using .pfe files. Remove Objective C++ support.
    	Also remove WebCore/khtml/dom, WebCore/khtml/xml, WebCore/khtml/rendering,
    	Test/khtmlview, Tools/wftool, and Tools/HotSpots, from the list of directories
    	where we need to make makefiles.
    
            * force-clean-timestamp: Added.
            * one-time-commands: Added.
    
            * .cvsignore: Don't ignore things we don't create. Do ignore the new
    	one-time-commands-timestamp and previous-clean-timestamp.
    
            * Tests/Makefile.am: Removed khtmlview.
            * Tests/khtmlview/*: Removed.
    
            * Tests/CookieManager/Makefile.am: Use objc-dummy.m, not objc-dummy.mm.
            * Tests/CookieManager/objc-dummy.m: Added.
            * Tests/CookieManager/objc-dummy.mm: Removed.
            * Tests/kde/Makefile.am: Use objc-dummy.m, not objc-dummy.mm.
            * Tests/kde/objc-dummy.m: Added.
            * Tests/kde/objc-dummy.mm: Removed.
            * Tests/qt/Makefile.am: Use objc-dummy.m, not objc-dummy.mm.
            * Tests/qt/objc-dummy.m: Added.
            * Tests/qt/objc-dummy.mm: Removed.
    
            * Updates/automake-1.5-mac-ported.diff: Removed, since we can use standard automake.
            * Updates/automake-1.5.tar.gz: Removed.
            * Updates/install-automake.sh: Removed.
            * Updates/update: Removed call to install-automake.sh.
    
            * Tests/WebFoundation-Misc/ifnsstringextensions-test.chk: Change result
    	to match new behavior of the _IF_domainMatches method.
    
            * Site/Internal/Design/IFRenamings.txt: Updated for recent changes.
    
    Tools:
    
            * Scripts/commit-log-editor: Always sort top level first.
    
            * Makefile.am: Take out the wftool subdir.
            * wftool/.cvsignore: Removed.
    
    WebCore:
    
    	Build WebCore with Project Builder instead of make.
    	Also wean WebCore from peeking inside the WebKit bundle.
    
            * WebCore.pbproj/.cvsignore: Added.
            * WebCore.pbproj/project.pbxproj: Added.
    
            * Makefile.am: Removed rules about building the framework,
    	and just use pbxbuild instead.
    
            * dummy.mm: Removed.
    
            * khtml/Makefile.am: Removed everything but SUBDIRS.
            * khtml/css/Makefile.am: Removed everything but the rules for
    	generated sources.
            * khtml/dom/Makefile.am: Removed.
            * khtml/ecma/Makefile.am: Removed everything but the rules for
    	generated sources.
            * khtml/html/Makefile.am: Removed everything but the rules for
    	generated sources.
            * khtml/misc/Makefile.am: Removed everything but the rules for
    	generated sources.
            * khtml/rendering/Makefile.am: Removed.
            * khtml/xml/Makefile.am: Removed.
            * kwq/Makefile.am: Removed everything but the rules for
    	generated sources.
    
            * kwq/KWQKLocale.mm: (i18n): Look in WebCore bundle, not WebKit bundle.
            * kwq/KWQKstddirs.mm:
            (locate): Look in WebCore bundle, not WebKit bundle. Also, always assume
    	we are looking for html4.css.
            (locateLocal): Don't waste code making a bad path, just return empty string.
    
            * kwq/qt/qpixmap.h:
            * kwq/KWQPixmap.mm: Changed convertToImage() to an inline since we
    	never need to implement it.
    
            * kwq/KWQKDebug.mm: Removed.
            * kwq/KWQKImageIO.mm: Removed.
            * kwq/kdecore/kcmdlineargs.h: Emptied out the file.
            * kwq/kdecore/kdebug.h: Made the do-nothing code here all be
    	inlines for smaller code size.
    
            * kwq/KWQScrollBar.h: Fixed header guard.
    
            * .cvsignore:
            * kwq/.cvsignore:
            * khtml/dom/.cvsignore: Removed.
            * khtml/rendering/.cvsignore: Removed.
            * khtml/xml/.cvsignore: Removed.
            * kwq/kdecore/.cvsignore: Removed.
            * kwq/qt/.cvsignore: Removed.
    	Don't ignore things we don't generate any more.
    
            * kwq/kjs/collector.h: Added.
            * kwq/kjs/internal.h: Added.
            * kwq/kjs/interpreter.h: Added.
            * kwq/kjs/lookup.h: Added.
            * kwq/kjs/object.h: Added.
    	Used so that khtml can see the headers from JavaScriptCore.
    
    WebKit:
    
            * WebKit.pbproj/project.pbxproj: Don't include the html4.css file
    	from WebCore any more. WebCore handles this on its own now. Also,
    	don't include the document templates; we don't use them any more.
    
            * Resources/image_document_template.html: Removed.
            * Resources/plugin_document_template.html: Removed.
            * Resources/text_document_template.html: Removed.
    
            * Makefile.am: Small tweak to the force-clean-timestamp logic.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@1544 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/.cvsignore b/WebCore/.cvsignore
index dcb2de6..af3a10c 100644
--- a/WebCore/.cvsignore
+++ b/WebCore/.cvsignore
@@ -1,9 +1,3 @@
 Makefile
 Makefile.in
 WebCore-combined.exp
-framework-stamp
-framework-dylib-stamp
-framework-resource-stamp
-framework-header-stamp
-libwebcore.a
-*.pfe
diff --git a/WebCore/ChangeLog-2002-12-03 b/WebCore/ChangeLog-2002-12-03
index 9eabf98..fc60dcb 100644
--- a/WebCore/ChangeLog-2002-12-03
+++ b/WebCore/ChangeLog-2002-12-03
@@ -1,3 +1,65 @@
+2002-07-12  Darin Adler  <darin at apple.com>
+
+	Build WebCore with Project Builder instead of make.
+	Also wean WebCore from peeking inside the WebKit bundle.
+
+        * WebCore.pbproj/.cvsignore: Added.
+        * WebCore.pbproj/project.pbxproj: Added.
+
+        * Makefile.am: Removed rules about building the framework,
+	and just use pbxbuild instead.
+
+        * dummy.mm: Removed.
+
+        * khtml/Makefile.am: Removed everything but SUBDIRS.
+        * khtml/css/Makefile.am: Removed everything but the rules for
+	generated sources.
+        * khtml/dom/Makefile.am: Removed.
+        * khtml/ecma/Makefile.am: Removed everything but the rules for
+	generated sources.
+        * khtml/html/Makefile.am: Removed everything but the rules for
+	generated sources.
+        * khtml/misc/Makefile.am: Removed everything but the rules for
+	generated sources.
+        * khtml/rendering/Makefile.am: Removed.
+        * khtml/xml/Makefile.am: Removed.
+        * kwq/Makefile.am: Removed everything but the rules for
+	generated sources.
+
+        * kwq/KWQKLocale.mm: (i18n): Look in WebCore bundle, not WebKit bundle.
+        * kwq/KWQKstddirs.mm:
+        (locate): Look in WebCore bundle, not WebKit bundle. Also, always assume
+	we are looking for html4.css.
+        (locateLocal): Don't waste code making a bad path, just return empty string.
+
+        * kwq/qt/qpixmap.h:
+        * kwq/KWQPixmap.mm: Changed convertToImage() to an inline since we
+	never need to implement it.
+
+        * kwq/KWQKDebug.mm: Removed.
+        * kwq/KWQKImageIO.mm: Removed.
+        * kwq/kdecore/kcmdlineargs.h: Emptied out the file.
+        * kwq/kdecore/kdebug.h: Made the do-nothing code here all be
+	inlines for smaller code size.
+
+        * kwq/KWQScrollBar.h: Fixed header guard.
+
+        * .cvsignore:
+        * kwq/.cvsignore:
+        * khtml/dom/.cvsignore: Removed.
+        * khtml/rendering/.cvsignore: Removed.
+        * khtml/xml/.cvsignore: Removed.
+        * kwq/kdecore/.cvsignore: Removed.
+        * kwq/qt/.cvsignore: Removed.
+	Don't ignore things we don't generate any more.
+
+        * kwq/kjs/collector.h: Added.
+        * kwq/kjs/internal.h: Added.
+        * kwq/kjs/interpreter.h: Added.
+        * kwq/kjs/lookup.h: Added.
+        * kwq/kjs/object.h: Added.
+	Used so that khtml can see the headers from JavaScriptCore.
+
 2002-07-11  Maciej Stachowiak  <mjs at apple.com>
 
         Fixed Radar 2953254 - JavaScript window.scroll() and
diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index 9eabf98..fc60dcb 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -1,3 +1,65 @@
+2002-07-12  Darin Adler  <darin at apple.com>
+
+	Build WebCore with Project Builder instead of make.
+	Also wean WebCore from peeking inside the WebKit bundle.
+
+        * WebCore.pbproj/.cvsignore: Added.
+        * WebCore.pbproj/project.pbxproj: Added.
+
+        * Makefile.am: Removed rules about building the framework,
+	and just use pbxbuild instead.
+
+        * dummy.mm: Removed.
+
+        * khtml/Makefile.am: Removed everything but SUBDIRS.
+        * khtml/css/Makefile.am: Removed everything but the rules for
+	generated sources.
+        * khtml/dom/Makefile.am: Removed.
+        * khtml/ecma/Makefile.am: Removed everything but the rules for
+	generated sources.
+        * khtml/html/Makefile.am: Removed everything but the rules for
+	generated sources.
+        * khtml/misc/Makefile.am: Removed everything but the rules for
+	generated sources.
+        * khtml/rendering/Makefile.am: Removed.
+        * khtml/xml/Makefile.am: Removed.
+        * kwq/Makefile.am: Removed everything but the rules for
+	generated sources.
+
+        * kwq/KWQKLocale.mm: (i18n): Look in WebCore bundle, not WebKit bundle.
+        * kwq/KWQKstddirs.mm:
+        (locate): Look in WebCore bundle, not WebKit bundle. Also, always assume
+	we are looking for html4.css.
+        (locateLocal): Don't waste code making a bad path, just return empty string.
+
+        * kwq/qt/qpixmap.h:
+        * kwq/KWQPixmap.mm: Changed convertToImage() to an inline since we
+	never need to implement it.
+
+        * kwq/KWQKDebug.mm: Removed.
+        * kwq/KWQKImageIO.mm: Removed.
+        * kwq/kdecore/kcmdlineargs.h: Emptied out the file.
+        * kwq/kdecore/kdebug.h: Made the do-nothing code here all be
+	inlines for smaller code size.
+
+        * kwq/KWQScrollBar.h: Fixed header guard.
+
+        * .cvsignore:
+        * kwq/.cvsignore:
+        * khtml/dom/.cvsignore: Removed.
+        * khtml/rendering/.cvsignore: Removed.
+        * khtml/xml/.cvsignore: Removed.
+        * kwq/kdecore/.cvsignore: Removed.
+        * kwq/qt/.cvsignore: Removed.
+	Don't ignore things we don't generate any more.
+
+        * kwq/kjs/collector.h: Added.
+        * kwq/kjs/internal.h: Added.
+        * kwq/kjs/interpreter.h: Added.
+        * kwq/kjs/lookup.h: Added.
+        * kwq/kjs/object.h: Added.
+	Used so that khtml can see the headers from JavaScriptCore.
+
 2002-07-11  Maciej Stachowiak  <mjs at apple.com>
 
         Fixed Radar 2953254 - JavaScript window.scroll() and
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index 9eabf98..fc60dcb 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,3 +1,65 @@
+2002-07-12  Darin Adler  <darin at apple.com>
+
+	Build WebCore with Project Builder instead of make.
+	Also wean WebCore from peeking inside the WebKit bundle.
+
+        * WebCore.pbproj/.cvsignore: Added.
+        * WebCore.pbproj/project.pbxproj: Added.
+
+        * Makefile.am: Removed rules about building the framework,
+	and just use pbxbuild instead.
+
+        * dummy.mm: Removed.
+
+        * khtml/Makefile.am: Removed everything but SUBDIRS.
+        * khtml/css/Makefile.am: Removed everything but the rules for
+	generated sources.
+        * khtml/dom/Makefile.am: Removed.
+        * khtml/ecma/Makefile.am: Removed everything but the rules for
+	generated sources.
+        * khtml/html/Makefile.am: Removed everything but the rules for
+	generated sources.
+        * khtml/misc/Makefile.am: Removed everything but the rules for
+	generated sources.
+        * khtml/rendering/Makefile.am: Removed.
+        * khtml/xml/Makefile.am: Removed.
+        * kwq/Makefile.am: Removed everything but the rules for
+	generated sources.
+
+        * kwq/KWQKLocale.mm: (i18n): Look in WebCore bundle, not WebKit bundle.
+        * kwq/KWQKstddirs.mm:
+        (locate): Look in WebCore bundle, not WebKit bundle. Also, always assume
+	we are looking for html4.css.
+        (locateLocal): Don't waste code making a bad path, just return empty string.
+
+        * kwq/qt/qpixmap.h:
+        * kwq/KWQPixmap.mm: Changed convertToImage() to an inline since we
+	never need to implement it.
+
+        * kwq/KWQKDebug.mm: Removed.
+        * kwq/KWQKImageIO.mm: Removed.
+        * kwq/kdecore/kcmdlineargs.h: Emptied out the file.
+        * kwq/kdecore/kdebug.h: Made the do-nothing code here all be
+	inlines for smaller code size.
+
+        * kwq/KWQScrollBar.h: Fixed header guard.
+
+        * .cvsignore:
+        * kwq/.cvsignore:
+        * khtml/dom/.cvsignore: Removed.
+        * khtml/rendering/.cvsignore: Removed.
+        * khtml/xml/.cvsignore: Removed.
+        * kwq/kdecore/.cvsignore: Removed.
+        * kwq/qt/.cvsignore: Removed.
+	Don't ignore things we don't generate any more.
+
+        * kwq/kjs/collector.h: Added.
+        * kwq/kjs/internal.h: Added.
+        * kwq/kjs/interpreter.h: Added.
+        * kwq/kjs/lookup.h: Added.
+        * kwq/kjs/object.h: Added.
+	Used so that khtml can see the headers from JavaScriptCore.
+
 2002-07-11  Maciej Stachowiak  <mjs at apple.com>
 
         Fixed Radar 2953254 - JavaScript window.scroll() and
diff --git a/WebCore/Makefile.am b/WebCore/Makefile.am
index f7ed7d3..b1bba7a 100644
--- a/WebCore/Makefile.am
+++ b/WebCore/Makefile.am
@@ -1,93 +1,16 @@
-NULL=
-
 SUBDIRS = khtml kwq
 
-symrootsdir = $(SYMROOTS)
-
-noinst_LIBRARIES = libwebcore.a
-
-libwebcore_a_SOURCES = \
-	dummy.mm \
-	$(NULL)
-
-libwebcore_a_LIBADD = \
-	khtml/libkhtml.o \
-	kwq/libkwq.o \
-	$(NULL)
-
-WEBCORE_INSTALL_PATH = $(SYMROOTS)
+all-am:
+	pbxbuild -buildstyle $(BUILDSTYLE)
+clean-am:
+	pbxbuild clean
 
 WebCore-combined.exp: WebCore.exp WebCore-tests.exp
 	cat $^ > $@
 
-LDFLAGS = \
-	-framework Cocoa \
-	-framework CoreFoundation \
-	-F$(symrootsdir) \
-	-framework WebFoundation \
-	-framework JavaScriptCore \
-        -dynamiclib \
-	-twolevel_namespace \
-	-prebind \
-        -undefined error \
-        -all_load \
-	-seg1addr 0x2200000 \
-	$(NULL)
-
-libwebcore_a_AR = touch libwebcore.a; :
-
-noinst_DATA = framework-stamp framework-resource-stamp framework-dylib-stamp framework-header-stamp WebCore-combined.exp
-
-# Framework assembly
+noinst_DATA = WebCore-combined.exp
+BUILT_SOURCES = $(noinst_DATA)
+CLEANFILES = $(BUILT_SOURCES)
 
 FRAMEWORK_NAME = WebCore
 include $(top_srcdir)/embed.am
-
-FRAMEWORK_VERSION = A
-FRAMEWORK_RESOURCES = Resources/Info.plist Resources/linkCursor.tiff
-FRAMEWORK_LOCALIZED_RESOURCES = English.lproj/InfoPlist.strings
-
-FRAMEWORK_LINKFLAGS = $(libwebcore_a_LIBADD) -install_name @executable_path/../Frameworks/$(FRAMEWORK_NAME).framework/Versions/$(FRAMEWORK_VERSION)/$(FRAMEWORK_NAME)
-FRAMEWORK_RESOURCE_DIR = $(FRAMEWORK_DIR)/Versions/$(FRAMEWORK_VERSION)/Resources
-FRAMEWORK_LOCALIZED_RESOURCE_DIR = $(FRAMEWORK_RESOURCE_DIR)/English.lproj
-
-framework-stamp: framework-dylib-stamp framework-resource-stamp framework-header-stamp
-	$(MAKE) embed && touch $@
-
-framework-resource-stamp: $(FRAMEWORK_RESOURCES) $(FRAMEWORK_LOCALIZED_RESOURCES)
-	rm -rf $(FRAMEWORK_RESOURCE_DIR)
-	mkdir -p $(FRAMEWORK_RESOURCE_DIR)
-	rm -rf $(FRAMEWORK_DIR)/Resources
-	ln -sf Versions/Current/Resources $(FRAMEWORK_DIR)/Resources
-	@list='$(FRAMEWORK_RESOURCES)'; for p in $$list; do \
-		echo " $(INSTALL_DATA) $$p $(FRAMEWORK_RESOURCE_DIR)/$$p"; \
-	    	$(INSTALL_DATA) $$p $(FRAMEWORK_RESOURCE_DIR); \
-	done
-	mkdir -p $(FRAMEWORK_LOCALIZED_RESOURCE_DIR)
-	@list='$(FRAMEWORK_LOCALIZED_RESOURCES)'; for p in $$list; do \
-		echo " $(INSTALL_DATA) $$p $(FRAMEWORK_LOCALIZED_RESOURCE_DIR)/$$p"; \
-		$(INSTALL_DATA) $$p $(FRAMEWORK_LOCALIZED_RESOURCE_DIR); \
-	done
-	touch $@
-
-framework-header-stamp:
-	mkdir -p $(FRAMEWORK_DIR)/Versions/$(FRAMEWORK_VERSION)/Headers
-	mkdir -p $(FRAMEWORK_DIR)/Versions/$(FRAMEWORK_VERSION)/PrivateHeaders
-	ln -sf Versions/Current/Headers $(FRAMEWORK_DIR)/Headers
-	ln -sf Versions/Current/PrivateHeaders $(FRAMEWORK_DIR)/PrivateHeaders
-	touch $@
-
-framework-dylib-stamp: $(libwebcore_a_OBJECTS) $(libwebcore_a_DEPENDENCIES) $(WEBCORE_EXPORTS)
-	mkdir -p $(FRAMEWORK_DIR)/Versions/$(FRAMEWORK_VERSION)
-	rm -f $(FRAMEWORK_DIR)/Versions/Current
-	ln -sf $(FRAMEWORK_VERSION) $(FRAMEWORK_DIR)/Versions/Current
-	$(OBJCXXLD) $(AM_OBJCXXFLAGS) $(OBJCXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) $(FRAMEWORK_LINKFLAGS) $(libwebcore_a_OBJECTS) -o $(FRAMEWORK_DYLIB)
-	nmedit -s $(WEBCORE_EXPORTS) - $(FRAMEWORK_DYLIB)
-	if test -n "$(STRIP_FLAGS)"; then strip $(STRIP_FLAGS) - $(FRAMEWORK_DYLIB); fi
-	ln -sf Versions/Current/$(FRAMEWORK_NAME) $(FRAMEWORK_DIR)/$(FRAMEWORK_NAME)
-	touch $@
-
-CLEANFILES = $(noinst_DATA)
-# can't use CLEANFILES for this because it doesn't work for directories
-clean-am:
-	rm -rf $(FRAMEWORK_DIR)
diff --git a/JavaScriptCore/JavaScriptCore.pbproj/.cvsignore b/WebCore/WebCore.pbproj/.cvsignore
similarity index 100%
copy from JavaScriptCore/JavaScriptCore.pbproj/.cvsignore
copy to WebCore/WebCore.pbproj/.cvsignore
diff --git a/WebCore/WebCore.pbproj/project.pbxproj b/WebCore/WebCore.pbproj/project.pbxproj
new file mode 100644
index 0000000..faf0193
--- /dev/null
+++ b/WebCore/WebCore.pbproj/project.pbxproj
@@ -0,0 +1,7693 @@
+// !$*UTF8*$!
+{
+	archiveVersion = 1;
+	classes = {
+	};
+	objectVersion = 38;
+	objects = {
+		014CEA440018CDF011CA2923 = {
+			buildRules = (
+			);
+			buildSettings = {
+				COPY_PHASE_STRIP = NO;
+				DEBUGGING_SYMBOLS = YES;
+				DEBUG_CFLAGS = "";
+				EXPORTED_SYMBOLS_FILE = "WebCore-combined.exp";
+				FRAMEWORK_SEARCH_PATHS = "\U0001 at executable_path/../Frameworks";
+				INSTALL_PATH = "@executable_path/../Frameworks";
+				OPTIMIZATION_CFLAGS = "-O0";
+				SKIP_INSTALL = YES;
+			};
+			isa = PBXBuildStyle;
+			name = Development;
+		};
+		014CEA450018CDF011CA2923 = {
+			buildRules = (
+			);
+			buildSettings = {
+				FRAMEWORK_SEARCH_PATHS = "\U0001 at executable_path/../Frameworks";
+				INSTALL_PATH = "@executable_path/../Frameworks";
+				SKIP_INSTALL = YES;
+			};
+			isa = PBXBuildStyle;
+			name = Deployment;
+		};
+//010
+//011
+//012
+//013
+//014
+//030
+//031
+//032
+//033
+//034
+		034768DFFF38A50411DB9C8B = {
+			children = (
+				034768E0FF38A50411DB9C8B,
+			);
+			isa = PBXGroup;
+			name = Products;
+			refType = 4;
+		};
+		034768E0FF38A50411DB9C8B = {
+			isa = PBXFrameworkReference;
+			path = WebCore.framework;
+			refType = 3;
+		};
+//030
+//031
+//032
+//033
+//034
+//080
+//081
+//082
+//083
+//084
+		0867D690FE84028FC02AAC07 = {
+			buildStyles = (
+				014CEA440018CDF011CA2923,
+				014CEA450018CDF011CA2923,
+				F58C8A07025BD3BC018635CA,
+			);
+			isa = PBXProject;
+			knownRegions = (
+				English,
+				Japanese,
+				French,
+				German,
+				Spanish,
+				Dutch,
+				Italian,
+			);
+			mainGroup = 0867D691FE84028FC02AAC07;
+			productRefGroup = 034768DFFF38A50411DB9C8B;
+			projectDirPath = "";
+			targets = (
+				0867D69CFE84028FC02AAC07,
+			);
+		};
+		0867D691FE84028FC02AAC07 = {
+			children = (
+				F58785E802DE377601EA4122,
+				F523D16302DE42AE018635CA,
+				F58785E902DE378A01EA4122,
+				089C1665FE841158C02AAC07,
+				0867D69AFE84028FC02AAC07,
+				034768DFFF38A50411DB9C8B,
+			);
+			isa = PBXGroup;
+			name = WebKit;
+			refType = 4;
+		};
+		0867D69AFE84028FC02AAC07 = {
+			children = (
+				F5C2869302846DCD018635CA,
+				F5C2869402846DCD018635CA,
+				F5C2869502846DCD018635CA,
+				F8216299029F4FB501000131,
+				F821629B029F4FB501000131,
+			);
+			isa = PBXGroup;
+			name = Frameworks;
+			refType = 4;
+		};
+		0867D69CFE84028FC02AAC07 = {
+			buildPhases = (
+				0867D69DFE84028FC02AAC07,
+				0867D69EFE84028FC02AAC07,
+				0867D69FFE84028FC02AAC07,
+				0867D6A0FE84028FC02AAC07,
+				255AF6590250FC030ECA149E,
+			);
+			buildSettings = {
+				COPY_PHASE_STRIP = YES;
+				DEBUGGING_SYMBOLS = NO;
+				DEBUG_CFLAGS = "-DNDEBUG";
+				DYLIB_COMPATIBILITY_VERSION = 1;
+				DYLIB_CURRENT_VERSION = 1;
+				EXPORTED_SYMBOLS_FILE = WebCore.exp;
+				FRAMEWORK_SEARCH_PATHS = "";
+				FRAMEWORK_VERSION = A;
+				GCC_TREAT_WARNINGS_AS_ERRORS = YES;
+				HEADER_SEARCH_PATHS = "kwq kwq/khtml kwq/qt khtml ..";
+				INSTALL_PATH = "";
+				LIBRARY_SEARCH_PATHS = "";
+				OPTIMIZATION_CFLAGS = "-Os";
+				OTHER_CFLAGS = "$(DEBUG_CFLAGS) -DAPPLE_CHANGES -DHAVE_CONFIG_H";
+				OTHER_LDFLAGS = "-seg1addr 0x02200000 -no-c++filt";
+				PRECOMPILE_PREFIX_HEADER = YES;
+				PREFIX_HEADER = WebCorePrefix.h;
+				PRODUCT_NAME = WebCore;
+				SECTORDER_FLAGS = "";
+				USE_GCC3_PFE_SUPPORT = YES;
+				WARNING_CFLAGS = "$(WARNING_COMMONFLAGS)";
+				WARNING_COMMONFLAGS = "-Werror -Wall -W -Wcast-align -Wchar-subscripts -Wformat-security -Wmissing-format-attribute -Wmissing-prototypes -Wpointer-arith -Wwrite-strings -Wno-format-y2k -Wno-unused-parameter";
+				WARNING_CPLUSPLUSFLAGS = "$(WARNING_COMMONFLAGS)";
+				WRAPPER_EXTENSION = framework;
+			};
+			dependencies = (
+			);
+			isa = PBXFrameworkTarget;
+			name = WebCore;
+			productInstallPath = "";
+			productName = WebKit;
+			productReference = 034768E0FF38A50411DB9C8B;
+			productSettingsXML = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>
+<!DOCTYPE plist PUBLIC \"-//Apple Computer//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">
+<plist version=\"1.0\">
+<dict>
+	<key>CFBundleDevelopmentRegion</key>
+	<string>English</string>
+	<key>CFBundleExecutable</key>
+	<string>WebCore</string>
+	<key>CFBundleIconFile</key>
+	<string></string>
+	<key>CFBundleIdentifier</key>
+	<string>com.apple.WebCore</string>
+	<key>CFBundleInfoDictionaryVersion</key>
+	<string>6.0</string>
+	<key>CFBundlePackageType</key>
+	<string>FMWK</string>
+	<key>CFBundleSignature</key>
+	<string>webc</string>
+	<key>CFBundleVersion</key>
+	<string>0.0.1d1</string>
+	<key>NSPrincipalClass</key>
+	<string></string>
+	<key>SKIP_INSTALL</key>
+	<string>YES</string>
+</dict>
+</plist>
+";
+			shouldUseHeadermap = 1;
+		};
+		0867D69DFE84028FC02AAC07 = {
+			buildActionMask = 2147483647;
+			files = (
+				F587855702DE375901EA4122,
+				F587855E02DE375901EA4122,
+				F587856502DE375901EA4122,
+				F587856A02DE375901EA4122,
+				F587856C02DE375901EA4122,
+				F587856D02DE375901EA4122,
+				F587857502DE375901EA4122,
+				F587857B02DE375901EA4122,
+				F587858002DE375901EA4122,
+				F587858C02DE375901EA4122,
+				F58785A502DE375901EA4122,
+				F58785A702DE375901EA4122,
+				F58785A902DE375901EA4122,
+				F58785AA02DE375901EA4122,
+				F58785AD02DE375901EA4122,
+				F58785B702DE375901EA4122,
+				F58785BC02DE375901EA4122,
+				F58785BF02DE375901EA4122,
+				F58785C502DE375901EA4122,
+				F58785C702DE375901EA4122,
+				F58785CD02DE375901EA4122,
+				F58785D002DE375901EA4122,
+				F58785D202DE375901EA4122,
+				F58785D502DE375901EA4122,
+				F58785D902DE375901EA4122,
+				F58785DB02DE375901EA4122,
+				F58785DD02DE375901EA4122,
+				F58785DE02DE375901EA4122,
+				F58785DF02DE375901EA4122,
+				F58785E002DE375901EA4122,
+				F58785E202DE375901EA4122,
+				F58785E302DE375901EA4122,
+				F58785E402DE375901EA4122,
+				F58785E602DE375901EA4122,
+				F58785EC02DE37CB01EA4122,
+				F58785ED02DE37CB01EA4122,
+				F587860602DE382001EA4122,
+				F587860702DE382001EA4122,
+				F587860802DE382001EA4122,
+				F587860902DE382001EA4122,
+				F587860A02DE382001EA4122,
+				F587860B02DE382001EA4122,
+				F587860C02DE382001EA4122,
+				F587860D02DE382001EA4122,
+				F587860E02DE382001EA4122,
+				F587860F02DE382001EA4122,
+				F587861002DE382001EA4122,
+				F587861102DE382001EA4122,
+				F587861202DE382001EA4122,
+				F587861302DE382001EA4122,
+				F587861402DE382001EA4122,
+				F587861502DE382001EA4122,
+				F587861602DE382001EA4122,
+				F587861702DE382001EA4122,
+				F587861802DE382001EA4122,
+				F587861902DE382001EA4122,
+				F587861A02DE382001EA4122,
+				F587861B02DE382001EA4122,
+				F587862602DE398401EA4122,
+				F587862702DE398401EA4122,
+				F587862802DE398401EA4122,
+				F587862902DE398401EA4122,
+				F587862A02DE398401EA4122,
+				F587862B02DE398401EA4122,
+				F587862C02DE398401EA4122,
+				F587862D02DE398401EA4122,
+				F587862E02DE398401EA4122,
+				F587863102DE39E601EA4122,
+				F587863B02DE3A1401EA4122,
+				F587863C02DE3A1401EA4122,
+				F587863D02DE3A1401EA4122,
+				F587863E02DE3A1401EA4122,
+				F587863F02DE3A1401EA4122,
+				F587864002DE3A1401EA4122,
+				F587864102DE3A1401EA4122,
+				F587864202DE3A1401EA4122,
+				F587864602DE3A7701EA4122,
+				F587864702DE3A7701EA4122,
+				F587865402DE3A9A01EA4122,
+				F587865502DE3A9A01EA4122,
+				F587865602DE3A9A01EA4122,
+				F587865702DE3A9A01EA4122,
+				F587865802DE3A9A01EA4122,
+				F587865902DE3A9A01EA4122,
+				F587865A02DE3A9A01EA4122,
+				F587865B02DE3A9A01EA4122,
+				F587865C02DE3A9A01EA4122,
+				F587865D02DE3A9A01EA4122,
+				F587865E02DE3A9A01EA4122,
+				F587866302DE3B1101EA4122,
+				F587866402DE3B1101EA4122,
+				F587866502DE3B1101EA4122,
+				F587866E02DE3B3201EA4122,
+				F587866F02DE3B3201EA4122,
+				F587867002DE3B3201EA4122,
+				F587867102DE3B3201EA4122,
+				F587867202DE3B3201EA4122,
+				F587867302DE3B3201EA4122,
+				F587867402DE3B3201EA4122,
+				F58786C702DE3B8601EA4122,
+				F58786C802DE3B8601EA4122,
+				F58786C902DE3B8601EA4122,
+				F58786CA02DE3B8601EA4122,
+				F58786CB02DE3B8601EA4122,
+				F58786CC02DE3B8601EA4122,
+				F58786CD02DE3B8601EA4122,
+				F58786CE02DE3B8601EA4122,
+				F58786CF02DE3B8601EA4122,
+				F58786D002DE3B8601EA4122,
+				F58786D102DE3B8601EA4122,
+				F58786D202DE3B8601EA4122,
+				F58786D302DE3B8601EA4122,
+				F58786D402DE3B8601EA4122,
+				F58786D502DE3B8601EA4122,
+				F58786D602DE3B8601EA4122,
+				F58786D702DE3B8601EA4122,
+				F58786D802DE3B8601EA4122,
+				F58786D902DE3B8601EA4122,
+				F58786DA02DE3B8601EA4122,
+				F58786DB02DE3B8601EA4122,
+				F58786DC02DE3B8601EA4122,
+				F58786DD02DE3B8601EA4122,
+				F58786DE02DE3B8601EA4122,
+				F58786DF02DE3B8601EA4122,
+				F58786E002DE3B8601EA4122,
+				F58786E102DE3B8601EA4122,
+				F58786E202DE3B8601EA4122,
+				F58786E302DE3B8601EA4122,
+				F58786E402DE3B8601EA4122,
+				F58786E502DE3B8601EA4122,
+				F58786E602DE3B8601EA4122,
+				F58786E702DE3B8601EA4122,
+				F58786E802DE3B8601EA4122,
+				F58786E902DE3B8601EA4122,
+				F58786EA02DE3B8601EA4122,
+				F58786EB02DE3B8601EA4122,
+				F58786EC02DE3B8601EA4122,
+				F58786ED02DE3B8601EA4122,
+				F58786EE02DE3B8601EA4122,
+				F58786EF02DE3B8601EA4122,
+				F58786F002DE3B8601EA4122,
+				F58786F102DE3B8601EA4122,
+				F58786F202DE3B8601EA4122,
+				F58786F302DE3B8601EA4122,
+				F58786F402DE3B8601EA4122,
+				F58786F502DE3B8601EA4122,
+				F58786F602DE3B8601EA4122,
+				F58786F702DE3B8601EA4122,
+				F58786F802DE3B8601EA4122,
+				F58786F902DE3B8601EA4122,
+				F58786FA02DE3B8601EA4122,
+				F58786FB02DE3B8601EA4122,
+				F58786FC02DE3B8601EA4122,
+				F58786FD02DE3B8601EA4122,
+				F58786FE02DE3B8601EA4122,
+				F58786FF02DE3B8601EA4122,
+				F587870002DE3B8601EA4122,
+				F587870102DE3B8601EA4122,
+				F587870202DE3B8601EA4122,
+				F587870302DE3B8601EA4122,
+				F587870402DE3B8601EA4122,
+				F587870502DE3B8601EA4122,
+				F587870602DE3B8601EA4122,
+				F587870702DE3B8601EA4122,
+				F587870802DE3B8601EA4122,
+				F587870902DE3B8601EA4122,
+				F587870A02DE3B8601EA4122,
+				F587870B02DE3B8601EA4122,
+				F587870C02DE3B8601EA4122,
+				F587870D02DE3B8601EA4122,
+				F587870E02DE3B8601EA4122,
+				F587870F02DE3B8601EA4122,
+				F587871002DE3B8601EA4122,
+				F587871102DE3B8601EA4122,
+				F587871202DE3B8601EA4122,
+				F587871302DE3B8601EA4122,
+				F587871402DE3B8601EA4122,
+				F587871502DE3B8601EA4122,
+				F587871602DE3B8601EA4122,
+				F587871702DE3B8601EA4122,
+				F523D15B02DE42AD018635CA,
+				F523D15D02DE42AD018635CA,
+				F523D15F02DE42AD018635CA,
+				F523D16102DE42AD018635CA,
+				F523D17502DE42E7018635CA,
+				F523D17702DE42E7018635CA,
+				F523D17902DE42E7018635CA,
+				F523D17B02DE42E7018635CA,
+				F523D17D02DE42E7018635CA,
+				F523D17F02DE42E7018635CA,
+				F523D18102DE42E7018635CA,
+				F523D18302DE42E7018635CA,
+				F523D1BD02DE4322018635CA,
+				F523D1BF02DE4322018635CA,
+				F523D1C102DE4322018635CA,
+				F523D1C202DE4322018635CA,
+				F523D1C402DE4322018635CA,
+				F523D1C602DE4322018635CA,
+				F523D1C702DE4322018635CA,
+				F523D1C802DE4322018635CA,
+				F523D1CA02DE4322018635CA,
+				F523D1CC02DE4322018635CA,
+				F523D1CE02DE4322018635CA,
+				F523D1D002DE4322018635CA,
+				F523D1D202DE4322018635CA,
+				F523D1D402DE4322018635CA,
+				F523D1D602DE4322018635CA,
+				F523D1D802DE4322018635CA,
+				F523D1DA02DE4322018635CA,
+				F523D1DC02DE4322018635CA,
+				F523D1DE02DE4322018635CA,
+				F523D1E002DE4322018635CA,
+				F523D1E202DE4322018635CA,
+				F523D1E402DE4322018635CA,
+				F523D1E602DE4322018635CA,
+				F523D1E802DE4322018635CA,
+				F523D1EA02DE4322018635CA,
+				F523D1EC02DE4322018635CA,
+				F523D1EE02DE4322018635CA,
+				F523D1F002DE4322018635CA,
+				F523D1F202DE4322018635CA,
+				F523D21502DE4369018635CA,
+				F523D21702DE4369018635CA,
+				F523D21802DE4369018635CA,
+				F523D21A02DE4369018635CA,
+				F523D21B02DE4369018635CA,
+				F523D21D02DE4369018635CA,
+				F523D21E02DE4369018635CA,
+				F523D22002DE4369018635CA,
+				F523D22102DE4369018635CA,
+				F523D22302DE4369018635CA,
+				F523D22402DE4369018635CA,
+				F523D22602DE4369018635CA,
+				F523D22802DE4369018635CA,
+				F523D22902DE4369018635CA,
+				F523D22B02DE4369018635CA,
+				F523D22C02DE4369018635CA,
+				F523D22E02DE4369018635CA,
+				F523D22F02DE4369018635CA,
+				F523D23102DE4369018635CA,
+				F523D23202DE4369018635CA,
+				F523D25702DE4396018635CA,
+				F523D25902DE4396018635CA,
+				F523D25B02DE4396018635CA,
+				F523D25D02DE4396018635CA,
+				F523D26002DE4396018635CA,
+				F523D26202DE4396018635CA,
+				F523D26402DE4396018635CA,
+				F523D26602DE4396018635CA,
+				F523D26802DE4396018635CA,
+				F523D26A02DE4396018635CA,
+				F523D26C02DE4396018635CA,
+				F523D26E02DE4396018635CA,
+				F523D27002DE4396018635CA,
+				F523D27202DE4396018635CA,
+				F523D27402DE4396018635CA,
+				F523D28B02DE43D7018635CA,
+				F523D28D02DE43D7018635CA,
+				F523D28F02DE43D7018635CA,
+				F523D29102DE43D7018635CA,
+				F523D29302DE43D7018635CA,
+				F523D29402DE43D7018635CA,
+				F523D29502DE43D7018635CA,
+				F523D29602DE43D7018635CA,
+				F523D29802DE43D7018635CA,
+				F523D29A02DE43D7018635CA,
+				F523D29B02DE43D7018635CA,
+				F523D2C902DE4438018635CA,
+				F523D2CB02DE4438018635CA,
+				F523D2CD02DE4438018635CA,
+				F523D2CF02DE4438018635CA,
+				F523D2D102DE4438018635CA,
+				F523D2D302DE4438018635CA,
+				F523D2D502DE4438018635CA,
+				F523D2D702DE4438018635CA,
+				F523D2D902DE4438018635CA,
+				F523D2DB02DE4438018635CA,
+				F523D2DE02DE4438018635CA,
+				F523D2E102DE4438018635CA,
+				F523D2E302DE4438018635CA,
+				F523D2E502DE4438018635CA,
+				F523D2E702DE4438018635CA,
+				F523D2E902DE4438018635CA,
+				F523D2EC02DE4438018635CA,
+				F523D2EE02DE4438018635CA,
+				F523D2F002DE4438018635CA,
+				F523D2F202DE4438018635CA,
+				F523D30D02DE4476018635CA,
+				F523D31002DE4476018635CA,
+				F523D31202DE4476018635CA,
+				F523D31402DE4476018635CA,
+				F523D31602DE4476018635CA,
+				F523D31802DE4476018635CA,
+				F523D31A02DE4476018635CA,
+				F523D31C02DE4476018635CA,
+				F523D31E02DE4476018635CA,
+				F523D32002DE4476018635CA,
+				F523D32202DE4476018635CA,
+			);
+			isa = PBXHeadersBuildPhase;
+			runOnlyForDeploymentPostprocessing = 0;
+		};
+		0867D69EFE84028FC02AAC07 = {
+			buildActionMask = 2147483647;
+			files = (
+				089C1668FE841158C02AAC07,
+				F5A1B04A02DE8ABA018635CA,
+				F5A1B05402DE8B46018635CA,
+			);
+			isa = PBXResourcesBuildPhase;
+			runOnlyForDeploymentPostprocessing = 0;
+		};
+		0867D69FFE84028FC02AAC07 = {
+			buildActionMask = 2147483647;
+			files = (
+				F587855602DE375901EA4122,
+				F587855802DE375901EA4122,
+				F587855902DE375901EA4122,
+				F587855A02DE375901EA4122,
+				F587855B02DE375901EA4122,
+				F587855C02DE375901EA4122,
+				F587855F02DE375901EA4122,
+				F587856002DE375901EA4122,
+				F587856102DE375901EA4122,
+				F587856202DE375901EA4122,
+				F587856302DE375901EA4122,
+				F587856402DE375901EA4122,
+				F587856602DE375901EA4122,
+				F587856702DE375901EA4122,
+				F587856802DE375901EA4122,
+				F587856902DE375901EA4122,
+				F587856B02DE375901EA4122,
+				F587856E02DE375901EA4122,
+				F587856F02DE375901EA4122,
+				F587857002DE375901EA4122,
+				F587857102DE375901EA4122,
+				F587857202DE375901EA4122,
+				F587857302DE375901EA4122,
+				F587857402DE375901EA4122,
+				F587857602DE375901EA4122,
+				F587857702DE375901EA4122,
+				F587857802DE375901EA4122,
+				F587857902DE375901EA4122,
+				F587857A02DE375901EA4122,
+				F587857C02DE375901EA4122,
+				F587857D02DE375901EA4122,
+				F587857E02DE375901EA4122,
+				F587857F02DE375901EA4122,
+				F587858102DE375901EA4122,
+				F587858202DE375901EA4122,
+				F587858402DE375901EA4122,
+				F587858502DE375901EA4122,
+				F587858602DE375901EA4122,
+				F587858702DE375901EA4122,
+				F587858802DE375901EA4122,
+				F587858902DE375901EA4122,
+				F587858A02DE375901EA4122,
+				F587858B02DE375901EA4122,
+				F587858D02DE375901EA4122,
+				F587858E02DE375901EA4122,
+				F587858F02DE375901EA4122,
+				F587859102DE375901EA4122,
+				F587859202DE375901EA4122,
+				F587859302DE375901EA4122,
+				F587859402DE375901EA4122,
+				F587859502DE375901EA4122,
+				F587859602DE375901EA4122,
+				F587859702DE375901EA4122,
+				F587859802DE375901EA4122,
+				F587859902DE375901EA4122,
+				F587859A02DE375901EA4122,
+				F587859B02DE375901EA4122,
+				F587859C02DE375901EA4122,
+				F587859D02DE375901EA4122,
+				F587859E02DE375901EA4122,
+				F587859F02DE375901EA4122,
+				F58785A002DE375901EA4122,
+				F58785A102DE375901EA4122,
+				F58785A202DE375901EA4122,
+				F58785A302DE375901EA4122,
+				F58785A402DE375901EA4122,
+				F58785A602DE375901EA4122,
+				F58785A802DE375901EA4122,
+				F58785AB02DE375901EA4122,
+				F58785AC02DE375901EA4122,
+				F58785AE02DE375901EA4122,
+				F58785AF02DE375901EA4122,
+				F58785B002DE375901EA4122,
+				F58785B102DE375901EA4122,
+				F58785B202DE375901EA4122,
+				F58785B302DE375901EA4122,
+				F58785B402DE375901EA4122,
+				F58785B502DE375901EA4122,
+				F58785B602DE375901EA4122,
+				F58785B802DE375901EA4122,
+				F58785B902DE375901EA4122,
+				F58785BA02DE375901EA4122,
+				F58785BB02DE375901EA4122,
+				F58785BD02DE375901EA4122,
+				F58785BE02DE375901EA4122,
+				F58785C002DE375901EA4122,
+				F58785C102DE375901EA4122,
+				F58785C202DE375901EA4122,
+				F58785C302DE375901EA4122,
+				F58785C402DE375901EA4122,
+				F58785C602DE375901EA4122,
+				F58785C802DE375901EA4122,
+				F58785C902DE375901EA4122,
+				F58785CA02DE375901EA4122,
+				F58785CB02DE375901EA4122,
+				F58785CC02DE375901EA4122,
+				F58785CE02DE375901EA4122,
+				F58785CF02DE375901EA4122,
+				F58785D102DE375901EA4122,
+				F58785D302DE375901EA4122,
+				F58785D402DE375901EA4122,
+				F58785D602DE375901EA4122,
+				F58785D702DE375901EA4122,
+				F58785D802DE375901EA4122,
+				F58785DA02DE375901EA4122,
+				F58785DC02DE375901EA4122,
+				F58785E102DE375901EA4122,
+				F58785E502DE375901EA4122,
+				F58785E702DE375901EA4122,
+				F523D15A02DE42AD018635CA,
+				F523D15C02DE42AD018635CA,
+				F523D16002DE42AD018635CA,
+				F523D17402DE42E7018635CA,
+				F523D17602DE42E7018635CA,
+				F523D17802DE42E7018635CA,
+				F523D17A02DE42E7018635CA,
+				F523D17C02DE42E7018635CA,
+				F523D18002DE42E7018635CA,
+				F523D1BC02DE4322018635CA,
+				F523D1BE02DE4322018635CA,
+				F523D1C002DE4322018635CA,
+				F523D1C302DE4322018635CA,
+				F523D1C502DE4322018635CA,
+				F523D1C902DE4322018635CA,
+				F523D1CB02DE4322018635CA,
+				F523D1CD02DE4322018635CA,
+				F523D1CF02DE4322018635CA,
+				F523D1D102DE4322018635CA,
+				F523D1D302DE4322018635CA,
+				F523D1D502DE4322018635CA,
+				F523D1D702DE4322018635CA,
+				F523D1D902DE4322018635CA,
+				F523D1DB02DE4322018635CA,
+				F523D1DD02DE4322018635CA,
+				F523D1DF02DE4322018635CA,
+				F523D1E102DE4322018635CA,
+				F523D1E302DE4322018635CA,
+				F523D1E502DE4322018635CA,
+				F523D1E702DE4322018635CA,
+				F523D1E902DE4322018635CA,
+				F523D1EB02DE4322018635CA,
+				F523D1ED02DE4322018635CA,
+				F523D1EF02DE4322018635CA,
+				F523D1F102DE4322018635CA,
+				F523D21402DE4369018635CA,
+				F523D21602DE4369018635CA,
+				F523D21902DE4369018635CA,
+				F523D21C02DE4369018635CA,
+				F523D21F02DE4369018635CA,
+				F523D22202DE4369018635CA,
+				F523D22502DE4369018635CA,
+				F523D22702DE4369018635CA,
+				F523D22A02DE4369018635CA,
+				F523D22D02DE4369018635CA,
+				F523D23002DE4369018635CA,
+				F523D25602DE4396018635CA,
+				F523D25802DE4396018635CA,
+				F523D25A02DE4396018635CA,
+				F523D25C02DE4396018635CA,
+				F523D25F02DE4396018635CA,
+				F523D26102DE4396018635CA,
+				F523D26302DE4396018635CA,
+				F523D26502DE4396018635CA,
+				F523D26702DE4396018635CA,
+				F523D26902DE4396018635CA,
+				F523D26B02DE4396018635CA,
+				F523D26D02DE4396018635CA,
+				F523D26F02DE4396018635CA,
+				F523D27102DE4396018635CA,
+				F523D27302DE4396018635CA,
+				F523D28A02DE43D7018635CA,
+				F523D28C02DE43D7018635CA,
+				F523D29002DE43D7018635CA,
+				F523D29702DE43D7018635CA,
+				F523D2C802DE4438018635CA,
+				F523D2CA02DE4438018635CA,
+				F523D2CC02DE4438018635CA,
+				F523D2CE02DE4438018635CA,
+				F523D2D002DE4438018635CA,
+				F523D2D202DE4438018635CA,
+				F523D2D402DE4438018635CA,
+				F523D2D602DE4438018635CA,
+				F523D2D802DE4438018635CA,
+				F523D2DA02DE4438018635CA,
+				F523D2DD02DE4438018635CA,
+				F523D2E002DE4438018635CA,
+				F523D2E202DE4438018635CA,
+				F523D2E402DE4438018635CA,
+				F523D2E602DE4438018635CA,
+				F523D2E802DE4438018635CA,
+				F523D2EB02DE4438018635CA,
+				F523D2ED02DE4438018635CA,
+				F523D2EF02DE4438018635CA,
+				F523D2F102DE4438018635CA,
+				F523D30C02DE4476018635CA,
+				F523D30F02DE4476018635CA,
+				F523D31102DE4476018635CA,
+				F523D31302DE4476018635CA,
+				F523D31502DE4476018635CA,
+				F523D31702DE4476018635CA,
+				F523D31902DE4476018635CA,
+				F523D31B02DE4476018635CA,
+				F523D31D02DE4476018635CA,
+				F523D31F02DE4476018635CA,
+				F523D32102DE4476018635CA,
+			);
+			isa = PBXSourcesBuildPhase;
+			runOnlyForDeploymentPostprocessing = 0;
+		};
+		0867D6A0FE84028FC02AAC07 = {
+			buildActionMask = 2147483647;
+			files = (
+				F5C287BB02846DCD018635CA,
+				F5C287BC02846DCD018635CA,
+				F5C287BD02846DCD018635CA,
+				F82162D7029F4FB501000131,
+				F82162D9029F4FB501000131,
+			);
+			isa = PBXFrameworksBuildPhase;
+			runOnlyForDeploymentPostprocessing = 0;
+		};
+		089C1665FE841158C02AAC07 = {
+			children = (
+				089C1666FE841158C02AAC07,
+				F5A1B04902DE8ABA018635CA,
+				F5A1B05302DE8B46018635CA,
+			);
+			isa = PBXGroup;
+			name = Resources;
+			refType = 4;
+		};
+		089C1666FE841158C02AAC07 = {
+			children = (
+				089C1667FE841158C02AAC07,
+			);
+			isa = PBXVariantGroup;
+			name = InfoPlist.strings;
+			refType = 4;
+		};
+		089C1667FE841158C02AAC07 = {
+			fileEncoding = 10;
+			isa = PBXFileReference;
+			name = English;
+			path = English.lproj/InfoPlist.strings;
+			refType = 4;
+		};
+		089C1668FE841158C02AAC07 = {
+			fileRef = 089C1666FE841158C02AAC07;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+//080
+//081
+//082
+//083
+//084
+//250
+//251
+//252
+//253
+//254
+		255AF6590250FC030ECA149E = {
+			buildActionMask = 2147483647;
+			files = (
+			);
+			generatedFileNames = (
+			);
+			isa = PBXShellScriptBuildPhase;
+			neededFileNames = (
+			);
+			runOnlyForDeploymentPostprocessing = 0;
+			shellPath = /bin/sh;
+			shellScript = "make embed";
+		};
+//250
+//251
+//252
+//253
+//254
+//F50
+//F51
+//F52
+//F53
+//F54
+		F523D15002DE4271018635CA = {
+			children = (
+				F58784D802DE375901EA4122,
+				F58784D902DE375901EA4122,
+				F58784CC02DE375901EA4122,
+				F58784CD02DE375901EA4122,
+				F58784D302DE375901EA4122,
+				F58784D402DE375901EA4122,
+				F58784DA02DE375901EA4122,
+				F58784E902DE375901EA4122,
+				F58784EA02DE375901EA4122,
+				F58784EE02DE375901EA4122,
+				F58784EF02DE375901EA4122,
+				F58784FA02DE375901EA4122,
+				F58784F802DE375901EA4122,
+				F58784FC02DE375901EA4122,
+				F587851702DE375901EA4122,
+				F587850302DE375901EA4122,
+				F587851B02DE375901EA4122,
+				F587851C02DE375901EA4122,
+				F587852A02DE375901EA4122,
+				F587852F02DE375901EA4122,
+				F587853502DE375901EA4122,
+				F587853602DE375901EA4122,
+				F587854002DE375901EA4122,
+				F587854102DE375901EA4122,
+				F587854302DE375901EA4122,
+				F587854402DE375901EA4122,
+			);
+			isa = PBXGroup;
+			name = other;
+			path = "";
+			refType = 4;
+		};
+		F523D15102DE42AD018635CA = {
+			isa = PBXFileReference;
+			name = khtml_events.cpp;
+			path = khtml/khtml_events.cpp;
+			refType = 4;
+		};
+		F523D15202DE42AD018635CA = {
+			isa = PBXFileReference;
+			name = khtml_events.h;
+			path = khtml/khtml_events.h;
+			refType = 4;
+		};
+		F523D15302DE42AD018635CA = {
+			isa = PBXFileReference;
+			name = khtml_part.cpp;
+			path = khtml/khtml_part.cpp;
+			refType = 4;
+		};
+		F523D15402DE42AD018635CA = {
+			isa = PBXFileReference;
+			name = khtml_part.h;
+			path = khtml/khtml_part.h;
+			refType = 4;
+		};
+		F523D15502DE42AD018635CA = {
+			isa = PBXFileReference;
+			name = khtml_part.moc;
+			path = khtml/khtml_part.moc;
+			refType = 4;
+		};
+		F523D15602DE42AD018635CA = {
+			isa = PBXFileReference;
+			name = khtmlpart_p.h;
+			path = khtml/khtmlpart_p.h;
+			refType = 4;
+		};
+		F523D15702DE42AD018635CA = {
+			isa = PBXFileReference;
+			name = khtmlview.cpp;
+			path = khtml/khtmlview.cpp;
+			refType = 4;
+		};
+		F523D15802DE42AD018635CA = {
+			isa = PBXFileReference;
+			name = khtmlview.h;
+			path = khtml/khtmlview.h;
+			refType = 4;
+		};
+		F523D15902DE42AD018635CA = {
+			isa = PBXFileReference;
+			name = khtmlview.moc;
+			path = khtml/khtmlview.moc;
+			refType = 4;
+		};
+		F523D15A02DE42AD018635CA = {
+			fileRef = F523D15102DE42AD018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D15B02DE42AD018635CA = {
+			fileRef = F523D15202DE42AD018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D15C02DE42AD018635CA = {
+			fileRef = F523D15302DE42AD018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D15D02DE42AD018635CA = {
+			fileRef = F523D15402DE42AD018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D15F02DE42AD018635CA = {
+			fileRef = F523D15602DE42AD018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D16002DE42AD018635CA = {
+			fileRef = F523D15702DE42AD018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D16102DE42AD018635CA = {
+			fileRef = F523D15802DE42AD018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D16302DE42AE018635CA = {
+			children = (
+				F523D18402DE42E8018635CA,
+				F523D1F302DE4324018635CA,
+				F523D23402DE436B018635CA,
+				F523D27702DE4398018635CA,
+				F523D29C02DE43D9018635CA,
+				F523D2F302DE443B018635CA,
+				F523D32402DE4478018635CA,
+				F523D15102DE42AD018635CA,
+				F523D15202DE42AD018635CA,
+				F523D15302DE42AD018635CA,
+				F523D15402DE42AD018635CA,
+				F523D15502DE42AD018635CA,
+				F523D15602DE42AD018635CA,
+				F523D15702DE42AD018635CA,
+				F523D15802DE42AD018635CA,
+				F523D15902DE42AD018635CA,
+			);
+			isa = PBXGroup;
+			name = khtml;
+			refType = 4;
+		};
+		F523D16402DE42E6018635CA = {
+			isa = PBXFileReference;
+			name = css_ruleimpl.cpp;
+			path = khtml/css/css_ruleimpl.cpp;
+			refType = 4;
+		};
+		F523D16502DE42E6018635CA = {
+			isa = PBXFileReference;
+			name = css_ruleimpl.h;
+			path = khtml/css/css_ruleimpl.h;
+			refType = 4;
+		};
+		F523D16602DE42E6018635CA = {
+			isa = PBXFileReference;
+			name = css_stylesheetimpl.cpp;
+			path = khtml/css/css_stylesheetimpl.cpp;
+			refType = 4;
+		};
+		F523D16702DE42E6018635CA = {
+			isa = PBXFileReference;
+			name = css_stylesheetimpl.h;
+			path = khtml/css/css_stylesheetimpl.h;
+			refType = 4;
+		};
+		F523D16802DE42E7018635CA = {
+			isa = PBXFileReference;
+			name = css_valueimpl.cpp;
+			path = khtml/css/css_valueimpl.cpp;
+			refType = 4;
+		};
+		F523D16902DE42E7018635CA = {
+			isa = PBXFileReference;
+			name = css_valueimpl.h;
+			path = khtml/css/css_valueimpl.h;
+			refType = 4;
+		};
+		F523D16A02DE42E7018635CA = {
+			isa = PBXFileReference;
+			name = csshelper.cpp;
+			path = khtml/css/csshelper.cpp;
+			refType = 4;
+		};
+		F523D16B02DE42E7018635CA = {
+			isa = PBXFileReference;
+			name = csshelper.h;
+			path = khtml/css/csshelper.h;
+			refType = 4;
+		};
+		F523D16C02DE42E7018635CA = {
+			isa = PBXFileReference;
+			name = cssparser.cpp;
+			path = khtml/css/cssparser.cpp;
+			refType = 4;
+		};
+		F523D16D02DE42E7018635CA = {
+			isa = PBXFileReference;
+			name = cssparser.h;
+			path = khtml/css/cssparser.h;
+			refType = 4;
+		};
+		F523D16F02DE42E7018635CA = {
+			isa = PBXFileReference;
+			name = cssproperties.h;
+			path = khtml/css/cssproperties.h;
+			refType = 4;
+		};
+		F523D17002DE42E7018635CA = {
+			isa = PBXFileReference;
+			name = cssstyleselector.cpp;
+			path = khtml/css/cssstyleselector.cpp;
+			refType = 4;
+		};
+		F523D17102DE42E7018635CA = {
+			isa = PBXFileReference;
+			name = cssstyleselector.h;
+			path = khtml/css/cssstyleselector.h;
+			refType = 4;
+		};
+		F523D17302DE42E7018635CA = {
+			isa = PBXFileReference;
+			name = cssvalues.h;
+			path = khtml/css/cssvalues.h;
+			refType = 4;
+		};
+		F523D17402DE42E7018635CA = {
+			fileRef = F523D16402DE42E6018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D17502DE42E7018635CA = {
+			fileRef = F523D16502DE42E6018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D17602DE42E7018635CA = {
+			fileRef = F523D16602DE42E6018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D17702DE42E7018635CA = {
+			fileRef = F523D16702DE42E6018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D17802DE42E7018635CA = {
+			fileRef = F523D16802DE42E7018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D17902DE42E7018635CA = {
+			fileRef = F523D16902DE42E7018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D17A02DE42E7018635CA = {
+			fileRef = F523D16A02DE42E7018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D17B02DE42E7018635CA = {
+			fileRef = F523D16B02DE42E7018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D17C02DE42E7018635CA = {
+			fileRef = F523D16C02DE42E7018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D17D02DE42E7018635CA = {
+			fileRef = F523D16D02DE42E7018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D17F02DE42E7018635CA = {
+			fileRef = F523D16F02DE42E7018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D18002DE42E7018635CA = {
+			fileRef = F523D17002DE42E7018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D18102DE42E7018635CA = {
+			fileRef = F523D17102DE42E7018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D18302DE42E7018635CA = {
+			fileRef = F523D17302DE42E7018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D18402DE42E8018635CA = {
+			children = (
+				F523D16402DE42E6018635CA,
+				F523D16502DE42E6018635CA,
+				F523D16602DE42E6018635CA,
+				F523D16702DE42E6018635CA,
+				F523D16802DE42E7018635CA,
+				F523D16902DE42E7018635CA,
+				F523D16A02DE42E7018635CA,
+				F523D16B02DE42E7018635CA,
+				F523D16C02DE42E7018635CA,
+				F523D16D02DE42E7018635CA,
+				F523D16F02DE42E7018635CA,
+				F523D17002DE42E7018635CA,
+				F523D17102DE42E7018635CA,
+				F523D17302DE42E7018635CA,
+			);
+			isa = PBXGroup;
+			name = css;
+			refType = 4;
+		};
+		F523D18502DE4322018635CA = {
+			isa = PBXFileReference;
+			name = css_rule.cpp;
+			path = khtml/dom/css_rule.cpp;
+			refType = 4;
+		};
+		F523D18602DE4322018635CA = {
+			isa = PBXFileReference;
+			name = css_rule.h;
+			path = khtml/dom/css_rule.h;
+			refType = 4;
+		};
+		F523D18702DE4322018635CA = {
+			isa = PBXFileReference;
+			name = css_stylesheet.cpp;
+			path = khtml/dom/css_stylesheet.cpp;
+			refType = 4;
+		};
+		F523D18802DE4322018635CA = {
+			isa = PBXFileReference;
+			name = css_stylesheet.h;
+			path = khtml/dom/css_stylesheet.h;
+			refType = 4;
+		};
+		F523D18902DE4322018635CA = {
+			isa = PBXFileReference;
+			name = css_value.cpp;
+			path = khtml/dom/css_value.cpp;
+			refType = 4;
+		};
+		F523D18A02DE4322018635CA = {
+			isa = PBXFileReference;
+			name = css_value.h;
+			path = khtml/dom/css_value.h;
+			refType = 4;
+		};
+		F523D18B02DE4322018635CA = {
+			isa = PBXFileReference;
+			name = dom_core.h;
+			path = khtml/dom/dom_core.h;
+			refType = 4;
+		};
+		F523D18C02DE4322018635CA = {
+			isa = PBXFileReference;
+			name = dom_doc.cpp;
+			path = khtml/dom/dom_doc.cpp;
+			refType = 4;
+		};
+		F523D18D02DE4322018635CA = {
+			isa = PBXFileReference;
+			name = dom_doc.h;
+			path = khtml/dom/dom_doc.h;
+			refType = 4;
+		};
+		F523D18E02DE4322018635CA = {
+			isa = PBXFileReference;
+			name = dom_element.cpp;
+			path = khtml/dom/dom_element.cpp;
+			refType = 4;
+		};
+		F523D18F02DE4322018635CA = {
+			isa = PBXFileReference;
+			name = dom_element.h;
+			path = khtml/dom/dom_element.h;
+			refType = 4;
+		};
+		F523D19002DE4322018635CA = {
+			isa = PBXFileReference;
+			name = dom_exception.h;
+			path = khtml/dom/dom_exception.h;
+			refType = 4;
+		};
+		F523D19102DE4322018635CA = {
+			isa = PBXFileReference;
+			name = dom_html.h;
+			path = khtml/dom/dom_html.h;
+			refType = 4;
+		};
+		F523D19202DE4322018635CA = {
+			isa = PBXFileReference;
+			name = dom_misc.cpp;
+			path = khtml/dom/dom_misc.cpp;
+			refType = 4;
+		};
+		F523D19302DE4322018635CA = {
+			isa = PBXFileReference;
+			name = dom_misc.h;
+			path = khtml/dom/dom_misc.h;
+			refType = 4;
+		};
+		F523D19402DE4322018635CA = {
+			isa = PBXFileReference;
+			name = dom_node.cpp;
+			path = khtml/dom/dom_node.cpp;
+			refType = 4;
+		};
+		F523D19502DE4322018635CA = {
+			isa = PBXFileReference;
+			name = dom_node.h;
+			path = khtml/dom/dom_node.h;
+			refType = 4;
+		};
+		F523D19602DE4322018635CA = {
+			isa = PBXFileReference;
+			name = dom_string.cpp;
+			path = khtml/dom/dom_string.cpp;
+			refType = 4;
+		};
+		F523D19702DE4322018635CA = {
+			isa = PBXFileReference;
+			name = dom_string.h;
+			path = khtml/dom/dom_string.h;
+			refType = 4;
+		};
+		F523D19802DE4322018635CA = {
+			isa = PBXFileReference;
+			name = dom_text.cpp;
+			path = khtml/dom/dom_text.cpp;
+			refType = 4;
+		};
+		F523D19902DE4322018635CA = {
+			isa = PBXFileReference;
+			name = dom_text.h;
+			path = khtml/dom/dom_text.h;
+			refType = 4;
+		};
+		F523D19A02DE4322018635CA = {
+			isa = PBXFileReference;
+			name = dom_xml.cpp;
+			path = khtml/dom/dom_xml.cpp;
+			refType = 4;
+		};
+		F523D19B02DE4322018635CA = {
+			isa = PBXFileReference;
+			name = dom_xml.h;
+			path = khtml/dom/dom_xml.h;
+			refType = 4;
+		};
+		F523D19C02DE4322018635CA = {
+			isa = PBXFileReference;
+			name = dom2_events.cpp;
+			path = khtml/dom/dom2_events.cpp;
+			refType = 4;
+		};
+		F523D19D02DE4322018635CA = {
+			isa = PBXFileReference;
+			name = dom2_events.h;
+			path = khtml/dom/dom2_events.h;
+			refType = 4;
+		};
+		F523D19E02DE4322018635CA = {
+			isa = PBXFileReference;
+			name = dom2_range.cpp;
+			path = khtml/dom/dom2_range.cpp;
+			refType = 4;
+		};
+		F523D19F02DE4322018635CA = {
+			isa = PBXFileReference;
+			name = dom2_range.h;
+			path = khtml/dom/dom2_range.h;
+			refType = 4;
+		};
+		F523D1A002DE4322018635CA = {
+			isa = PBXFileReference;
+			name = dom2_traversal.cpp;
+			path = khtml/dom/dom2_traversal.cpp;
+			refType = 4;
+		};
+		F523D1A102DE4322018635CA = {
+			isa = PBXFileReference;
+			name = dom2_traversal.h;
+			path = khtml/dom/dom2_traversal.h;
+			refType = 4;
+		};
+		F523D1A202DE4322018635CA = {
+			isa = PBXFileReference;
+			name = dom2_views.cpp;
+			path = khtml/dom/dom2_views.cpp;
+			refType = 4;
+		};
+		F523D1A302DE4322018635CA = {
+			isa = PBXFileReference;
+			name = dom2_views.h;
+			path = khtml/dom/dom2_views.h;
+			refType = 4;
+		};
+		F523D1A402DE4322018635CA = {
+			isa = PBXFileReference;
+			name = html_base.cpp;
+			path = khtml/dom/html_base.cpp;
+			refType = 4;
+		};
+		F523D1A502DE4322018635CA = {
+			isa = PBXFileReference;
+			name = html_base.h;
+			path = khtml/dom/html_base.h;
+			refType = 4;
+		};
+		F523D1A602DE4322018635CA = {
+			isa = PBXFileReference;
+			name = html_block.cpp;
+			path = khtml/dom/html_block.cpp;
+			refType = 4;
+		};
+		F523D1A702DE4322018635CA = {
+			isa = PBXFileReference;
+			name = html_block.h;
+			path = khtml/dom/html_block.h;
+			refType = 4;
+		};
+		F523D1A802DE4322018635CA = {
+			isa = PBXFileReference;
+			name = html_document.cpp;
+			path = khtml/dom/html_document.cpp;
+			refType = 4;
+		};
+		F523D1A902DE4322018635CA = {
+			isa = PBXFileReference;
+			name = html_document.h;
+			path = khtml/dom/html_document.h;
+			refType = 4;
+		};
+		F523D1AA02DE4322018635CA = {
+			isa = PBXFileReference;
+			name = html_element.cpp;
+			path = khtml/dom/html_element.cpp;
+			refType = 4;
+		};
+		F523D1AB02DE4322018635CA = {
+			isa = PBXFileReference;
+			name = html_element.h;
+			path = khtml/dom/html_element.h;
+			refType = 4;
+		};
+		F523D1AC02DE4322018635CA = {
+			isa = PBXFileReference;
+			name = html_form.cpp;
+			path = khtml/dom/html_form.cpp;
+			refType = 4;
+		};
+		F523D1AD02DE4322018635CA = {
+			isa = PBXFileReference;
+			name = html_form.h;
+			path = khtml/dom/html_form.h;
+			refType = 4;
+		};
+		F523D1AE02DE4322018635CA = {
+			isa = PBXFileReference;
+			name = html_head.cpp;
+			path = khtml/dom/html_head.cpp;
+			refType = 4;
+		};
+		F523D1AF02DE4322018635CA = {
+			isa = PBXFileReference;
+			name = html_head.h;
+			path = khtml/dom/html_head.h;
+			refType = 4;
+		};
+		F523D1B002DE4322018635CA = {
+			isa = PBXFileReference;
+			name = html_image.cpp;
+			path = khtml/dom/html_image.cpp;
+			refType = 4;
+		};
+		F523D1B102DE4322018635CA = {
+			isa = PBXFileReference;
+			name = html_image.h;
+			path = khtml/dom/html_image.h;
+			refType = 4;
+		};
+		F523D1B202DE4322018635CA = {
+			isa = PBXFileReference;
+			name = html_inline.cpp;
+			path = khtml/dom/html_inline.cpp;
+			refType = 4;
+		};
+		F523D1B302DE4322018635CA = {
+			isa = PBXFileReference;
+			name = html_inline.h;
+			path = khtml/dom/html_inline.h;
+			refType = 4;
+		};
+		F523D1B402DE4322018635CA = {
+			isa = PBXFileReference;
+			name = html_list.cpp;
+			path = khtml/dom/html_list.cpp;
+			refType = 4;
+		};
+		F523D1B502DE4322018635CA = {
+			isa = PBXFileReference;
+			name = html_list.h;
+			path = khtml/dom/html_list.h;
+			refType = 4;
+		};
+		F523D1B602DE4322018635CA = {
+			isa = PBXFileReference;
+			name = html_misc.cpp;
+			path = khtml/dom/html_misc.cpp;
+			refType = 4;
+		};
+		F523D1B702DE4322018635CA = {
+			isa = PBXFileReference;
+			name = html_misc.h;
+			path = khtml/dom/html_misc.h;
+			refType = 4;
+		};
+		F523D1B802DE4322018635CA = {
+			isa = PBXFileReference;
+			name = html_object.cpp;
+			path = khtml/dom/html_object.cpp;
+			refType = 4;
+		};
+		F523D1B902DE4322018635CA = {
+			isa = PBXFileReference;
+			name = html_object.h;
+			path = khtml/dom/html_object.h;
+			refType = 4;
+		};
+		F523D1BA02DE4322018635CA = {
+			isa = PBXFileReference;
+			name = html_table.cpp;
+			path = khtml/dom/html_table.cpp;
+			refType = 4;
+		};
+		F523D1BB02DE4322018635CA = {
+			isa = PBXFileReference;
+			name = html_table.h;
+			path = khtml/dom/html_table.h;
+			refType = 4;
+		};
+		F523D1BC02DE4322018635CA = {
+			fileRef = F523D18502DE4322018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D1BD02DE4322018635CA = {
+			fileRef = F523D18602DE4322018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D1BE02DE4322018635CA = {
+			fileRef = F523D18702DE4322018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D1BF02DE4322018635CA = {
+			fileRef = F523D18802DE4322018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D1C002DE4322018635CA = {
+			fileRef = F523D18902DE4322018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D1C102DE4322018635CA = {
+			fileRef = F523D18A02DE4322018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D1C202DE4322018635CA = {
+			fileRef = F523D18B02DE4322018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D1C302DE4322018635CA = {
+			fileRef = F523D18C02DE4322018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D1C402DE4322018635CA = {
+			fileRef = F523D18D02DE4322018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D1C502DE4322018635CA = {
+			fileRef = F523D18E02DE4322018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D1C602DE4322018635CA = {
+			fileRef = F523D18F02DE4322018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D1C702DE4322018635CA = {
+			fileRef = F523D19002DE4322018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D1C802DE4322018635CA = {
+			fileRef = F523D19102DE4322018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D1C902DE4322018635CA = {
+			fileRef = F523D19202DE4322018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D1CA02DE4322018635CA = {
+			fileRef = F523D19302DE4322018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D1CB02DE4322018635CA = {
+			fileRef = F523D19402DE4322018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D1CC02DE4322018635CA = {
+			fileRef = F523D19502DE4322018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D1CD02DE4322018635CA = {
+			fileRef = F523D19602DE4322018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D1CE02DE4322018635CA = {
+			fileRef = F523D19702DE4322018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D1CF02DE4322018635CA = {
+			fileRef = F523D19802DE4322018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D1D002DE4322018635CA = {
+			fileRef = F523D19902DE4322018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D1D102DE4322018635CA = {
+			fileRef = F523D19A02DE4322018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D1D202DE4322018635CA = {
+			fileRef = F523D19B02DE4322018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D1D302DE4322018635CA = {
+			fileRef = F523D19C02DE4322018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D1D402DE4322018635CA = {
+			fileRef = F523D19D02DE4322018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D1D502DE4322018635CA = {
+			fileRef = F523D19E02DE4322018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D1D602DE4322018635CA = {
+			fileRef = F523D19F02DE4322018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D1D702DE4322018635CA = {
+			fileRef = F523D1A002DE4322018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D1D802DE4322018635CA = {
+			fileRef = F523D1A102DE4322018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D1D902DE4322018635CA = {
+			fileRef = F523D1A202DE4322018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D1DA02DE4322018635CA = {
+			fileRef = F523D1A302DE4322018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D1DB02DE4322018635CA = {
+			fileRef = F523D1A402DE4322018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D1DC02DE4322018635CA = {
+			fileRef = F523D1A502DE4322018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D1DD02DE4322018635CA = {
+			fileRef = F523D1A602DE4322018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D1DE02DE4322018635CA = {
+			fileRef = F523D1A702DE4322018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D1DF02DE4322018635CA = {
+			fileRef = F523D1A802DE4322018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D1E002DE4322018635CA = {
+			fileRef = F523D1A902DE4322018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D1E102DE4322018635CA = {
+			fileRef = F523D1AA02DE4322018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D1E202DE4322018635CA = {
+			fileRef = F523D1AB02DE4322018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D1E302DE4322018635CA = {
+			fileRef = F523D1AC02DE4322018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D1E402DE4322018635CA = {
+			fileRef = F523D1AD02DE4322018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D1E502DE4322018635CA = {
+			fileRef = F523D1AE02DE4322018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D1E602DE4322018635CA = {
+			fileRef = F523D1AF02DE4322018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D1E702DE4322018635CA = {
+			fileRef = F523D1B002DE4322018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D1E802DE4322018635CA = {
+			fileRef = F523D1B102DE4322018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D1E902DE4322018635CA = {
+			fileRef = F523D1B202DE4322018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D1EA02DE4322018635CA = {
+			fileRef = F523D1B302DE4322018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D1EB02DE4322018635CA = {
+			fileRef = F523D1B402DE4322018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D1EC02DE4322018635CA = {
+			fileRef = F523D1B502DE4322018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D1ED02DE4322018635CA = {
+			fileRef = F523D1B602DE4322018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D1EE02DE4322018635CA = {
+			fileRef = F523D1B702DE4322018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D1EF02DE4322018635CA = {
+			fileRef = F523D1B802DE4322018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D1F002DE4322018635CA = {
+			fileRef = F523D1B902DE4322018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D1F102DE4322018635CA = {
+			fileRef = F523D1BA02DE4322018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D1F202DE4322018635CA = {
+			fileRef = F523D1BB02DE4322018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D1F302DE4324018635CA = {
+			children = (
+				F523D18502DE4322018635CA,
+				F523D18602DE4322018635CA,
+				F523D18702DE4322018635CA,
+				F523D18802DE4322018635CA,
+				F523D18902DE4322018635CA,
+				F523D18A02DE4322018635CA,
+				F523D18B02DE4322018635CA,
+				F523D18C02DE4322018635CA,
+				F523D18D02DE4322018635CA,
+				F523D18E02DE4322018635CA,
+				F523D18F02DE4322018635CA,
+				F523D19002DE4322018635CA,
+				F523D19102DE4322018635CA,
+				F523D19202DE4322018635CA,
+				F523D19302DE4322018635CA,
+				F523D19402DE4322018635CA,
+				F523D19502DE4322018635CA,
+				F523D19602DE4322018635CA,
+				F523D19702DE4322018635CA,
+				F523D19802DE4322018635CA,
+				F523D19902DE4322018635CA,
+				F523D19A02DE4322018635CA,
+				F523D19B02DE4322018635CA,
+				F523D19C02DE4322018635CA,
+				F523D19D02DE4322018635CA,
+				F523D19E02DE4322018635CA,
+				F523D19F02DE4322018635CA,
+				F523D1A002DE4322018635CA,
+				F523D1A102DE4322018635CA,
+				F523D1A202DE4322018635CA,
+				F523D1A302DE4322018635CA,
+				F523D1A402DE4322018635CA,
+				F523D1A502DE4322018635CA,
+				F523D1A602DE4322018635CA,
+				F523D1A702DE4322018635CA,
+				F523D1A802DE4322018635CA,
+				F523D1A902DE4322018635CA,
+				F523D1AA02DE4322018635CA,
+				F523D1AB02DE4322018635CA,
+				F523D1AC02DE4322018635CA,
+				F523D1AD02DE4322018635CA,
+				F523D1AE02DE4322018635CA,
+				F523D1AF02DE4322018635CA,
+				F523D1B002DE4322018635CA,
+				F523D1B102DE4322018635CA,
+				F523D1B202DE4322018635CA,
+				F523D1B302DE4322018635CA,
+				F523D1B402DE4322018635CA,
+				F523D1B502DE4322018635CA,
+				F523D1B602DE4322018635CA,
+				F523D1B702DE4322018635CA,
+				F523D1B802DE4322018635CA,
+				F523D1B902DE4322018635CA,
+				F523D1BA02DE4322018635CA,
+				F523D1BB02DE4322018635CA,
+			);
+			isa = PBXGroup;
+			name = dom;
+			path = "";
+			refType = 4;
+		};
+		F523D1F402DE4369018635CA = {
+			isa = PBXFileReference;
+			name = kjs_binding.cpp;
+			path = khtml/ecma/kjs_binding.cpp;
+			refType = 4;
+		};
+		F523D1F502DE4369018635CA = {
+			isa = PBXFileReference;
+			name = kjs_binding.h;
+			path = khtml/ecma/kjs_binding.h;
+			refType = 4;
+		};
+		F523D1F602DE4369018635CA = {
+			isa = PBXFileReference;
+			name = kjs_css.cpp;
+			path = khtml/ecma/kjs_css.cpp;
+			refType = 4;
+		};
+		F523D1F702DE4369018635CA = {
+			isa = PBXFileReference;
+			name = kjs_css.h;
+			path = khtml/ecma/kjs_css.h;
+			refType = 4;
+		};
+		F523D1F802DE4369018635CA = {
+			isa = PBXFileReference;
+			name = kjs_css.lut.h;
+			path = khtml/ecma/kjs_css.lut.h;
+			refType = 4;
+		};
+		F523D1F902DE4369018635CA = {
+			isa = PBXFileReference;
+			name = kjs_dom.cpp;
+			path = khtml/ecma/kjs_dom.cpp;
+			refType = 4;
+		};
+		F523D1FA02DE4369018635CA = {
+			isa = PBXFileReference;
+			name = kjs_dom.h;
+			path = khtml/ecma/kjs_dom.h;
+			refType = 4;
+		};
+		F523D1FB02DE4369018635CA = {
+			isa = PBXFileReference;
+			name = kjs_dom.lut.h;
+			path = khtml/ecma/kjs_dom.lut.h;
+			refType = 4;
+		};
+		F523D1FC02DE4369018635CA = {
+			isa = PBXFileReference;
+			name = kjs_events.cpp;
+			path = khtml/ecma/kjs_events.cpp;
+			refType = 4;
+		};
+		F523D1FD02DE4369018635CA = {
+			isa = PBXFileReference;
+			name = kjs_events.h;
+			path = khtml/ecma/kjs_events.h;
+			refType = 4;
+		};
+		F523D1FE02DE4369018635CA = {
+			isa = PBXFileReference;
+			name = kjs_events.lut.h;
+			path = khtml/ecma/kjs_events.lut.h;
+			refType = 4;
+		};
+		F523D1FF02DE4369018635CA = {
+			isa = PBXFileReference;
+			name = kjs_html.cpp;
+			path = khtml/ecma/kjs_html.cpp;
+			refType = 4;
+		};
+		F523D20002DE4369018635CA = {
+			isa = PBXFileReference;
+			name = kjs_html.h;
+			path = khtml/ecma/kjs_html.h;
+			refType = 4;
+		};
+		F523D20102DE4369018635CA = {
+			isa = PBXFileReference;
+			name = kjs_html.lut.h;
+			path = khtml/ecma/kjs_html.lut.h;
+			refType = 4;
+		};
+		F523D20202DE4369018635CA = {
+			isa = PBXFileReference;
+			name = kjs_navigator.cpp;
+			path = khtml/ecma/kjs_navigator.cpp;
+			refType = 4;
+		};
+		F523D20302DE4369018635CA = {
+			isa = PBXFileReference;
+			name = kjs_navigator.h;
+			path = khtml/ecma/kjs_navigator.h;
+			refType = 4;
+		};
+		F523D20402DE4369018635CA = {
+			isa = PBXFileReference;
+			name = kjs_navigator.lut.h;
+			path = khtml/ecma/kjs_navigator.lut.h;
+			refType = 4;
+		};
+		F523D20502DE4369018635CA = {
+			isa = PBXFileReference;
+			name = kjs_proxy.cpp;
+			path = khtml/ecma/kjs_proxy.cpp;
+			refType = 4;
+		};
+		F523D20602DE4369018635CA = {
+			isa = PBXFileReference;
+			name = kjs_proxy.h;
+			path = khtml/ecma/kjs_proxy.h;
+			refType = 4;
+		};
+		F523D20702DE4369018635CA = {
+			isa = PBXFileReference;
+			name = kjs_range.cpp;
+			path = khtml/ecma/kjs_range.cpp;
+			refType = 4;
+		};
+		F523D20802DE4369018635CA = {
+			isa = PBXFileReference;
+			name = kjs_range.h;
+			path = khtml/ecma/kjs_range.h;
+			refType = 4;
+		};
+		F523D20902DE4369018635CA = {
+			isa = PBXFileReference;
+			name = kjs_range.lut.h;
+			path = khtml/ecma/kjs_range.lut.h;
+			refType = 4;
+		};
+		F523D20A02DE4369018635CA = {
+			isa = PBXFileReference;
+			name = kjs_traversal.cpp;
+			path = khtml/ecma/kjs_traversal.cpp;
+			refType = 4;
+		};
+		F523D20B02DE4369018635CA = {
+			isa = PBXFileReference;
+			name = kjs_traversal.h;
+			path = khtml/ecma/kjs_traversal.h;
+			refType = 4;
+		};
+		F523D20C02DE4369018635CA = {
+			isa = PBXFileReference;
+			name = kjs_traversal.lut.h;
+			path = khtml/ecma/kjs_traversal.lut.h;
+			refType = 4;
+		};
+		F523D20D02DE4369018635CA = {
+			isa = PBXFileReference;
+			name = kjs_views.cpp;
+			path = khtml/ecma/kjs_views.cpp;
+			refType = 4;
+		};
+		F523D20E02DE4369018635CA = {
+			isa = PBXFileReference;
+			name = kjs_views.h;
+			path = khtml/ecma/kjs_views.h;
+			refType = 4;
+		};
+		F523D20F02DE4369018635CA = {
+			isa = PBXFileReference;
+			name = kjs_views.lut.h;
+			path = khtml/ecma/kjs_views.lut.h;
+			refType = 4;
+		};
+		F523D21002DE4369018635CA = {
+			isa = PBXFileReference;
+			name = kjs_window.cpp;
+			path = khtml/ecma/kjs_window.cpp;
+			refType = 4;
+		};
+		F523D21102DE4369018635CA = {
+			isa = PBXFileReference;
+			name = kjs_window.h;
+			path = khtml/ecma/kjs_window.h;
+			refType = 4;
+		};
+		F523D21202DE4369018635CA = {
+			isa = PBXFileReference;
+			name = kjs_window.lut.h;
+			path = khtml/ecma/kjs_window.lut.h;
+			refType = 4;
+		};
+		F523D21302DE4369018635CA = {
+			isa = PBXFileReference;
+			name = kjs_window.moc;
+			path = khtml/ecma/kjs_window.moc;
+			refType = 4;
+		};
+		F523D21402DE4369018635CA = {
+			fileRef = F523D1F402DE4369018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D21502DE4369018635CA = {
+			fileRef = F523D1F502DE4369018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D21602DE4369018635CA = {
+			fileRef = F523D1F602DE4369018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D21702DE4369018635CA = {
+			fileRef = F523D1F702DE4369018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D21802DE4369018635CA = {
+			fileRef = F523D1F802DE4369018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D21902DE4369018635CA = {
+			fileRef = F523D1F902DE4369018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D21A02DE4369018635CA = {
+			fileRef = F523D1FA02DE4369018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D21B02DE4369018635CA = {
+			fileRef = F523D1FB02DE4369018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D21C02DE4369018635CA = {
+			fileRef = F523D1FC02DE4369018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D21D02DE4369018635CA = {
+			fileRef = F523D1FD02DE4369018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D21E02DE4369018635CA = {
+			fileRef = F523D1FE02DE4369018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D21F02DE4369018635CA = {
+			fileRef = F523D1FF02DE4369018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D22002DE4369018635CA = {
+			fileRef = F523D20002DE4369018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D22102DE4369018635CA = {
+			fileRef = F523D20102DE4369018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D22202DE4369018635CA = {
+			fileRef = F523D20202DE4369018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D22302DE4369018635CA = {
+			fileRef = F523D20302DE4369018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D22402DE4369018635CA = {
+			fileRef = F523D20402DE4369018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D22502DE4369018635CA = {
+			fileRef = F523D20502DE4369018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D22602DE4369018635CA = {
+			fileRef = F523D20602DE4369018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D22702DE4369018635CA = {
+			fileRef = F523D20702DE4369018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D22802DE4369018635CA = {
+			fileRef = F523D20802DE4369018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D22902DE4369018635CA = {
+			fileRef = F523D20902DE4369018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D22A02DE4369018635CA = {
+			fileRef = F523D20A02DE4369018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D22B02DE4369018635CA = {
+			fileRef = F523D20B02DE4369018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D22C02DE4369018635CA = {
+			fileRef = F523D20C02DE4369018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D22D02DE4369018635CA = {
+			fileRef = F523D20D02DE4369018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D22E02DE4369018635CA = {
+			fileRef = F523D20E02DE4369018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D22F02DE4369018635CA = {
+			fileRef = F523D20F02DE4369018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D23002DE4369018635CA = {
+			fileRef = F523D21002DE4369018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D23102DE4369018635CA = {
+			fileRef = F523D21102DE4369018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D23202DE4369018635CA = {
+			fileRef = F523D21202DE4369018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D23402DE436B018635CA = {
+			children = (
+				F523D1F402DE4369018635CA,
+				F523D1F502DE4369018635CA,
+				F523D1F602DE4369018635CA,
+				F523D1F702DE4369018635CA,
+				F523D1F802DE4369018635CA,
+				F523D1F902DE4369018635CA,
+				F523D1FA02DE4369018635CA,
+				F523D1FB02DE4369018635CA,
+				F523D1FC02DE4369018635CA,
+				F523D1FD02DE4369018635CA,
+				F523D1FE02DE4369018635CA,
+				F523D1FF02DE4369018635CA,
+				F523D20002DE4369018635CA,
+				F523D20102DE4369018635CA,
+				F523D20202DE4369018635CA,
+				F523D20302DE4369018635CA,
+				F523D20402DE4369018635CA,
+				F523D20502DE4369018635CA,
+				F523D20602DE4369018635CA,
+				F523D20702DE4369018635CA,
+				F523D20802DE4369018635CA,
+				F523D20902DE4369018635CA,
+				F523D20A02DE4369018635CA,
+				F523D20B02DE4369018635CA,
+				F523D20C02DE4369018635CA,
+				F523D20D02DE4369018635CA,
+				F523D20E02DE4369018635CA,
+				F523D20F02DE4369018635CA,
+				F523D21002DE4369018635CA,
+				F523D21102DE4369018635CA,
+				F523D21202DE4369018635CA,
+				F523D21302DE4369018635CA,
+			);
+			isa = PBXGroup;
+			name = ecma;
+			path = "";
+			refType = 4;
+		};
+		F523D23502DE4396018635CA = {
+			isa = PBXFileReference;
+			name = dtd.cpp;
+			path = khtml/html/dtd.cpp;
+			refType = 4;
+		};
+		F523D23602DE4396018635CA = {
+			isa = PBXFileReference;
+			name = dtd.h;
+			path = khtml/html/dtd.h;
+			refType = 4;
+		};
+		F523D23702DE4396018635CA = {
+			isa = PBXFileReference;
+			name = html_baseimpl.cpp;
+			path = khtml/html/html_baseimpl.cpp;
+			refType = 4;
+		};
+		F523D23802DE4396018635CA = {
+			isa = PBXFileReference;
+			name = html_baseimpl.h;
+			path = khtml/html/html_baseimpl.h;
+			refType = 4;
+		};
+		F523D23902DE4396018635CA = {
+			isa = PBXFileReference;
+			name = html_blockimpl.cpp;
+			path = khtml/html/html_blockimpl.cpp;
+			refType = 4;
+		};
+		F523D23A02DE4396018635CA = {
+			isa = PBXFileReference;
+			name = html_blockimpl.h;
+			path = khtml/html/html_blockimpl.h;
+			refType = 4;
+		};
+		F523D23B02DE4396018635CA = {
+			isa = PBXFileReference;
+			name = html_documentimpl.cpp;
+			path = khtml/html/html_documentimpl.cpp;
+			refType = 4;
+		};
+		F523D23C02DE4396018635CA = {
+			isa = PBXFileReference;
+			name = html_documentimpl.h;
+			path = khtml/html/html_documentimpl.h;
+			refType = 4;
+		};
+		F523D23D02DE4396018635CA = {
+			isa = PBXFileReference;
+			name = html_documentimpl.moc;
+			path = khtml/html/html_documentimpl.moc;
+			refType = 4;
+		};
+		F523D23E02DE4396018635CA = {
+			isa = PBXFileReference;
+			name = html_elementimpl.cpp;
+			path = khtml/html/html_elementimpl.cpp;
+			refType = 4;
+		};
+		F523D23F02DE4396018635CA = {
+			isa = PBXFileReference;
+			name = html_elementimpl.h;
+			path = khtml/html/html_elementimpl.h;
+			refType = 4;
+		};
+		F523D24002DE4396018635CA = {
+			isa = PBXFileReference;
+			name = html_formimpl.cpp;
+			path = khtml/html/html_formimpl.cpp;
+			refType = 4;
+		};
+		F523D24102DE4396018635CA = {
+			isa = PBXFileReference;
+			name = html_formimpl.h;
+			path = khtml/html/html_formimpl.h;
+			refType = 4;
+		};
+		F523D24202DE4396018635CA = {
+			isa = PBXFileReference;
+			name = html_headimpl.cpp;
+			path = khtml/html/html_headimpl.cpp;
+			refType = 4;
+		};
+		F523D24302DE4396018635CA = {
+			isa = PBXFileReference;
+			name = html_headimpl.h;
+			path = khtml/html/html_headimpl.h;
+			refType = 4;
+		};
+		F523D24402DE4396018635CA = {
+			isa = PBXFileReference;
+			name = html_imageimpl.cpp;
+			path = khtml/html/html_imageimpl.cpp;
+			refType = 4;
+		};
+		F523D24502DE4396018635CA = {
+			isa = PBXFileReference;
+			name = html_imageimpl.h;
+			path = khtml/html/html_imageimpl.h;
+			refType = 4;
+		};
+		F523D24602DE4396018635CA = {
+			isa = PBXFileReference;
+			name = html_inlineimpl.cpp;
+			path = khtml/html/html_inlineimpl.cpp;
+			refType = 4;
+		};
+		F523D24702DE4396018635CA = {
+			isa = PBXFileReference;
+			name = html_inlineimpl.h;
+			path = khtml/html/html_inlineimpl.h;
+			refType = 4;
+		};
+		F523D24802DE4396018635CA = {
+			isa = PBXFileReference;
+			name = html_listimpl.cpp;
+			path = khtml/html/html_listimpl.cpp;
+			refType = 4;
+		};
+		F523D24902DE4396018635CA = {
+			isa = PBXFileReference;
+			name = html_listimpl.h;
+			path = khtml/html/html_listimpl.h;
+			refType = 4;
+		};
+		F523D24A02DE4396018635CA = {
+			isa = PBXFileReference;
+			name = html_miscimpl.cpp;
+			path = khtml/html/html_miscimpl.cpp;
+			refType = 4;
+		};
+		F523D24B02DE4396018635CA = {
+			isa = PBXFileReference;
+			name = html_miscimpl.h;
+			path = khtml/html/html_miscimpl.h;
+			refType = 4;
+		};
+		F523D24C02DE4396018635CA = {
+			isa = PBXFileReference;
+			name = html_objectimpl.cpp;
+			path = khtml/html/html_objectimpl.cpp;
+			refType = 4;
+		};
+		F523D24D02DE4396018635CA = {
+			isa = PBXFileReference;
+			name = html_objectimpl.h;
+			path = khtml/html/html_objectimpl.h;
+			refType = 4;
+		};
+		F523D24E02DE4396018635CA = {
+			isa = PBXFileReference;
+			name = html_tableimpl.cpp;
+			path = khtml/html/html_tableimpl.cpp;
+			refType = 4;
+		};
+		F523D24F02DE4396018635CA = {
+			isa = PBXFileReference;
+			name = html_tableimpl.h;
+			path = khtml/html/html_tableimpl.h;
+			refType = 4;
+		};
+		F523D25002DE4396018635CA = {
+			isa = PBXFileReference;
+			name = htmlparser.cpp;
+			path = khtml/html/htmlparser.cpp;
+			refType = 4;
+		};
+		F523D25102DE4396018635CA = {
+			isa = PBXFileReference;
+			name = htmlparser.h;
+			path = khtml/html/htmlparser.h;
+			refType = 4;
+		};
+		F523D25202DE4396018635CA = {
+			isa = PBXFileReference;
+			name = htmltokenizer.cpp;
+			path = khtml/html/htmltokenizer.cpp;
+			refType = 4;
+		};
+		F523D25302DE4396018635CA = {
+			isa = PBXFileReference;
+			name = htmltokenizer.h;
+			path = khtml/html/htmltokenizer.h;
+			refType = 4;
+		};
+		F523D25402DE4396018635CA = {
+			isa = PBXFileReference;
+			name = htmltokenizer.moc;
+			path = khtml/html/htmltokenizer.moc;
+			refType = 4;
+		};
+		F523D25602DE4396018635CA = {
+			fileRef = F523D23502DE4396018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D25702DE4396018635CA = {
+			fileRef = F523D23602DE4396018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D25802DE4396018635CA = {
+			fileRef = F523D23702DE4396018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D25902DE4396018635CA = {
+			fileRef = F523D23802DE4396018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D25A02DE4396018635CA = {
+			fileRef = F523D23902DE4396018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D25B02DE4396018635CA = {
+			fileRef = F523D23A02DE4396018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D25C02DE4396018635CA = {
+			fileRef = F523D23B02DE4396018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D25D02DE4396018635CA = {
+			fileRef = F523D23C02DE4396018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D25F02DE4396018635CA = {
+			fileRef = F523D23E02DE4396018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D26002DE4396018635CA = {
+			fileRef = F523D23F02DE4396018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D26102DE4396018635CA = {
+			fileRef = F523D24002DE4396018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D26202DE4396018635CA = {
+			fileRef = F523D24102DE4396018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D26302DE4396018635CA = {
+			fileRef = F523D24202DE4396018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D26402DE4396018635CA = {
+			fileRef = F523D24302DE4396018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D26502DE4396018635CA = {
+			fileRef = F523D24402DE4396018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D26602DE4396018635CA = {
+			fileRef = F523D24502DE4396018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D26702DE4396018635CA = {
+			fileRef = F523D24602DE4396018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D26802DE4396018635CA = {
+			fileRef = F523D24702DE4396018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D26902DE4396018635CA = {
+			fileRef = F523D24802DE4396018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D26A02DE4396018635CA = {
+			fileRef = F523D24902DE4396018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D26B02DE4396018635CA = {
+			fileRef = F523D24A02DE4396018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D26C02DE4396018635CA = {
+			fileRef = F523D24B02DE4396018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D26D02DE4396018635CA = {
+			fileRef = F523D24C02DE4396018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D26E02DE4396018635CA = {
+			fileRef = F523D24D02DE4396018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D26F02DE4396018635CA = {
+			fileRef = F523D24E02DE4396018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D27002DE4396018635CA = {
+			fileRef = F523D24F02DE4396018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D27102DE4396018635CA = {
+			fileRef = F523D25002DE4396018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D27202DE4396018635CA = {
+			fileRef = F523D25102DE4396018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D27302DE4396018635CA = {
+			fileRef = F523D25202DE4396018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D27402DE4396018635CA = {
+			fileRef = F523D25302DE4396018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D27702DE4398018635CA = {
+			children = (
+				F523D23502DE4396018635CA,
+				F523D23602DE4396018635CA,
+				F523D23702DE4396018635CA,
+				F523D23802DE4396018635CA,
+				F523D23902DE4396018635CA,
+				F523D23A02DE4396018635CA,
+				F523D23B02DE4396018635CA,
+				F523D23C02DE4396018635CA,
+				F523D23D02DE4396018635CA,
+				F523D23E02DE4396018635CA,
+				F523D23F02DE4396018635CA,
+				F523D24002DE4396018635CA,
+				F523D24102DE4396018635CA,
+				F523D24202DE4396018635CA,
+				F523D24302DE4396018635CA,
+				F523D24402DE4396018635CA,
+				F523D24502DE4396018635CA,
+				F523D24602DE4396018635CA,
+				F523D24702DE4396018635CA,
+				F523D24802DE4396018635CA,
+				F523D24902DE4396018635CA,
+				F523D24A02DE4396018635CA,
+				F523D24B02DE4396018635CA,
+				F523D24C02DE4396018635CA,
+				F523D24D02DE4396018635CA,
+				F523D24E02DE4396018635CA,
+				F523D24F02DE4396018635CA,
+				F523D25002DE4396018635CA,
+				F523D25102DE4396018635CA,
+				F523D25202DE4396018635CA,
+				F523D25302DE4396018635CA,
+				F523D25402DE4396018635CA,
+			);
+			isa = PBXGroup;
+			name = html;
+			path = "";
+			refType = 4;
+		};
+		F523D27802DE43D7018635CA = {
+			isa = PBXFileReference;
+			name = decoder.cpp;
+			path = khtml/misc/decoder.cpp;
+			refType = 4;
+		};
+		F523D27902DE43D7018635CA = {
+			isa = PBXFileReference;
+			name = decoder.h;
+			path = khtml/misc/decoder.h;
+			refType = 4;
+		};
+		F523D27A02DE43D7018635CA = {
+			isa = PBXFileReference;
+			name = helper.cpp;
+			path = khtml/misc/helper.cpp;
+			refType = 4;
+		};
+		F523D27B02DE43D7018635CA = {
+			isa = PBXFileReference;
+			name = helper.h;
+			path = khtml/misc/helper.h;
+			refType = 4;
+		};
+		F523D27D02DE43D7018635CA = {
+			isa = PBXFileReference;
+			name = htmlattrs.h;
+			path = khtml/misc/htmlattrs.h;
+			refType = 4;
+		};
+		F523D27E02DE43D7018635CA = {
+			isa = PBXFileReference;
+			name = htmlhashes.cpp;
+			path = khtml/misc/htmlhashes.cpp;
+			refType = 4;
+		};
+		F523D27F02DE43D7018635CA = {
+			isa = PBXFileReference;
+			name = htmlhashes.h;
+			path = khtml/misc/htmlhashes.h;
+			refType = 4;
+		};
+		F523D28102DE43D7018635CA = {
+			isa = PBXFileReference;
+			name = htmltags.h;
+			path = khtml/misc/htmltags.h;
+			refType = 4;
+		};
+		F523D28202DE43D7018635CA = {
+			isa = PBXFileReference;
+			name = khtmldata.h;
+			path = khtml/misc/khtmldata.h;
+			refType = 4;
+		};
+		F523D28302DE43D7018635CA = {
+			isa = PBXFileReference;
+			name = khtmllayout.h;
+			path = khtml/misc/khtmllayout.h;
+			refType = 4;
+		};
+		F523D28402DE43D7018635CA = {
+			isa = PBXFileReference;
+			name = loader_client.h;
+			path = khtml/misc/loader_client.h;
+			refType = 4;
+		};
+		F523D28502DE43D7018635CA = {
+			isa = PBXFileReference;
+			name = loader.cpp;
+			path = khtml/misc/loader.cpp;
+			refType = 4;
+		};
+		F523D28602DE43D7018635CA = {
+			isa = PBXFileReference;
+			name = loader.h;
+			path = khtml/misc/loader.h;
+			refType = 4;
+		};
+		F523D28702DE43D7018635CA = {
+			isa = PBXFileReference;
+			name = loader.moc;
+			path = khtml/misc/loader.moc;
+			refType = 4;
+		};
+		F523D28802DE43D7018635CA = {
+			isa = PBXFileReference;
+			name = shared.h;
+			path = khtml/misc/shared.h;
+			refType = 4;
+		};
+		F523D28902DE43D7018635CA = {
+			isa = PBXFileReference;
+			name = stringit.h;
+			path = khtml/misc/stringit.h;
+			refType = 4;
+		};
+		F523D28A02DE43D7018635CA = {
+			fileRef = F523D27802DE43D7018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D28B02DE43D7018635CA = {
+			fileRef = F523D27902DE43D7018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D28C02DE43D7018635CA = {
+			fileRef = F523D27A02DE43D7018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D28D02DE43D7018635CA = {
+			fileRef = F523D27B02DE43D7018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D28F02DE43D7018635CA = {
+			fileRef = F523D27D02DE43D7018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D29002DE43D7018635CA = {
+			fileRef = F523D27E02DE43D7018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D29102DE43D7018635CA = {
+			fileRef = F523D27F02DE43D7018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D29302DE43D7018635CA = {
+			fileRef = F523D28102DE43D7018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D29402DE43D7018635CA = {
+			fileRef = F523D28202DE43D7018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D29502DE43D7018635CA = {
+			fileRef = F523D28302DE43D7018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D29602DE43D7018635CA = {
+			fileRef = F523D28402DE43D7018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D29702DE43D7018635CA = {
+			fileRef = F523D28502DE43D7018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D29802DE43D7018635CA = {
+			fileRef = F523D28602DE43D7018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D29A02DE43D7018635CA = {
+			fileRef = F523D28802DE43D7018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D29B02DE43D7018635CA = {
+			fileRef = F523D28902DE43D7018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D29C02DE43D9018635CA = {
+			children = (
+				F523D27802DE43D7018635CA,
+				F523D27902DE43D7018635CA,
+				F523D27A02DE43D7018635CA,
+				F523D27B02DE43D7018635CA,
+				F523D27D02DE43D7018635CA,
+				F523D27E02DE43D7018635CA,
+				F523D27F02DE43D7018635CA,
+				F523D28102DE43D7018635CA,
+				F523D28202DE43D7018635CA,
+				F523D28302DE43D7018635CA,
+				F523D28402DE43D7018635CA,
+				F523D28502DE43D7018635CA,
+				F523D28602DE43D7018635CA,
+				F523D28702DE43D7018635CA,
+				F523D28802DE43D7018635CA,
+				F523D28902DE43D7018635CA,
+			);
+			isa = PBXGroup;
+			name = misc;
+			refType = 4;
+		};
+		F523D29D02DE4438018635CA = {
+			isa = PBXFileReference;
+			name = bidi.cpp;
+			path = khtml/rendering/bidi.cpp;
+			refType = 4;
+		};
+		F523D29E02DE4438018635CA = {
+			isa = PBXFileReference;
+			name = bidi.h;
+			path = khtml/rendering/bidi.h;
+			refType = 4;
+		};
+		F523D29F02DE4438018635CA = {
+			isa = PBXFileReference;
+			name = break_lines.cpp;
+			path = khtml/rendering/break_lines.cpp;
+			refType = 4;
+		};
+		F523D2A002DE4438018635CA = {
+			isa = PBXFileReference;
+			name = break_lines.h;
+			path = khtml/rendering/break_lines.h;
+			refType = 4;
+		};
+		F523D2A102DE4438018635CA = {
+			isa = PBXFileReference;
+			name = font.cpp;
+			path = khtml/rendering/font.cpp;
+			refType = 4;
+		};
+		F523D2A202DE4438018635CA = {
+			isa = PBXFileReference;
+			name = font.h;
+			path = khtml/rendering/font.h;
+			refType = 4;
+		};
+		F523D2A302DE4438018635CA = {
+			isa = PBXFileReference;
+			name = render_applet.cpp;
+			path = khtml/rendering/render_applet.cpp;
+			refType = 4;
+		};
+		F523D2A402DE4438018635CA = {
+			isa = PBXFileReference;
+			name = render_applet.h;
+			path = khtml/rendering/render_applet.h;
+			refType = 4;
+		};
+		F523D2A502DE4438018635CA = {
+			isa = PBXFileReference;
+			name = render_body.cpp;
+			path = khtml/rendering/render_body.cpp;
+			refType = 4;
+		};
+		F523D2A602DE4438018635CA = {
+			isa = PBXFileReference;
+			name = render_body.h;
+			path = khtml/rendering/render_body.h;
+			refType = 4;
+		};
+		F523D2A702DE4438018635CA = {
+			isa = PBXFileReference;
+			name = render_box.cpp;
+			path = khtml/rendering/render_box.cpp;
+			refType = 4;
+		};
+		F523D2A802DE4438018635CA = {
+			isa = PBXFileReference;
+			name = render_box.h;
+			path = khtml/rendering/render_box.h;
+			refType = 4;
+		};
+		F523D2A902DE4438018635CA = {
+			isa = PBXFileReference;
+			name = render_br.cpp;
+			path = khtml/rendering/render_br.cpp;
+			refType = 4;
+		};
+		F523D2AA02DE4438018635CA = {
+			isa = PBXFileReference;
+			name = render_br.h;
+			path = khtml/rendering/render_br.h;
+			refType = 4;
+		};
+		F523D2AB02DE4438018635CA = {
+			isa = PBXFileReference;
+			name = render_container.cpp;
+			path = khtml/rendering/render_container.cpp;
+			refType = 4;
+		};
+		F523D2AC02DE4438018635CA = {
+			isa = PBXFileReference;
+			name = render_container.h;
+			path = khtml/rendering/render_container.h;
+			refType = 4;
+		};
+		F523D2AD02DE4438018635CA = {
+			isa = PBXFileReference;
+			name = render_flow.cpp;
+			path = khtml/rendering/render_flow.cpp;
+			refType = 4;
+		};
+		F523D2AE02DE4438018635CA = {
+			isa = PBXFileReference;
+			name = render_flow.h;
+			path = khtml/rendering/render_flow.h;
+			refType = 4;
+		};
+		F523D2AF02DE4438018635CA = {
+			isa = PBXFileReference;
+			name = render_form.cpp;
+			path = khtml/rendering/render_form.cpp;
+			refType = 4;
+		};
+		F523D2B002DE4438018635CA = {
+			isa = PBXFileReference;
+			name = render_form.h;
+			path = khtml/rendering/render_form.h;
+			refType = 4;
+		};
+		F523D2B102DE4438018635CA = {
+			isa = PBXFileReference;
+			name = render_form.moc;
+			path = khtml/rendering/render_form.moc;
+			refType = 4;
+		};
+		F523D2B202DE4438018635CA = {
+			isa = PBXFileReference;
+			name = render_frames.cpp;
+			path = khtml/rendering/render_frames.cpp;
+			refType = 4;
+		};
+		F523D2B302DE4438018635CA = {
+			isa = PBXFileReference;
+			name = render_frames.h;
+			path = khtml/rendering/render_frames.h;
+			refType = 4;
+		};
+		F523D2B402DE4438018635CA = {
+			isa = PBXFileReference;
+			name = render_frames.moc;
+			path = khtml/rendering/render_frames.moc;
+			refType = 4;
+		};
+		F523D2B502DE4438018635CA = {
+			isa = PBXFileReference;
+			name = render_html.cpp;
+			path = khtml/rendering/render_html.cpp;
+			refType = 4;
+		};
+		F523D2B602DE4438018635CA = {
+			isa = PBXFileReference;
+			name = render_html.h;
+			path = khtml/rendering/render_html.h;
+			refType = 4;
+		};
+		F523D2B702DE4438018635CA = {
+			isa = PBXFileReference;
+			name = render_image.cpp;
+			path = khtml/rendering/render_image.cpp;
+			refType = 4;
+		};
+		F523D2B802DE4438018635CA = {
+			isa = PBXFileReference;
+			name = render_image.h;
+			path = khtml/rendering/render_image.h;
+			refType = 4;
+		};
+		F523D2B902DE4438018635CA = {
+			isa = PBXFileReference;
+			name = render_list.cpp;
+			path = khtml/rendering/render_list.cpp;
+			refType = 4;
+		};
+		F523D2BA02DE4438018635CA = {
+			isa = PBXFileReference;
+			name = render_list.h;
+			path = khtml/rendering/render_list.h;
+			refType = 4;
+		};
+		F523D2BB02DE4438018635CA = {
+			isa = PBXFileReference;
+			name = render_object.cpp;
+			path = khtml/rendering/render_object.cpp;
+			refType = 4;
+		};
+		F523D2BC02DE4438018635CA = {
+			isa = PBXFileReference;
+			name = render_object.h;
+			path = khtml/rendering/render_object.h;
+			refType = 4;
+		};
+		F523D2BD02DE4438018635CA = {
+			isa = PBXFileReference;
+			name = render_replaced.cpp;
+			path = khtml/rendering/render_replaced.cpp;
+			refType = 4;
+		};
+		F523D2BE02DE4438018635CA = {
+			isa = PBXFileReference;
+			name = render_replaced.h;
+			path = khtml/rendering/render_replaced.h;
+			refType = 4;
+		};
+		F523D2BF02DE4438018635CA = {
+			isa = PBXFileReference;
+			name = render_replaced.moc;
+			path = khtml/rendering/render_replaced.moc;
+			refType = 4;
+		};
+		F523D2C002DE4438018635CA = {
+			isa = PBXFileReference;
+			name = render_root.cpp;
+			path = khtml/rendering/render_root.cpp;
+			refType = 4;
+		};
+		F523D2C102DE4438018635CA = {
+			isa = PBXFileReference;
+			name = render_root.h;
+			path = khtml/rendering/render_root.h;
+			refType = 4;
+		};
+		F523D2C202DE4438018635CA = {
+			isa = PBXFileReference;
+			name = render_style.cpp;
+			path = khtml/rendering/render_style.cpp;
+			refType = 4;
+		};
+		F523D2C302DE4438018635CA = {
+			isa = PBXFileReference;
+			name = render_style.h;
+			path = khtml/rendering/render_style.h;
+			refType = 4;
+		};
+		F523D2C402DE4438018635CA = {
+			isa = PBXFileReference;
+			name = render_table.cpp;
+			path = khtml/rendering/render_table.cpp;
+			refType = 4;
+		};
+		F523D2C502DE4438018635CA = {
+			isa = PBXFileReference;
+			name = render_table.h;
+			path = khtml/rendering/render_table.h;
+			refType = 4;
+		};
+		F523D2C602DE4438018635CA = {
+			isa = PBXFileReference;
+			name = render_text.cpp;
+			path = khtml/rendering/render_text.cpp;
+			refType = 4;
+		};
+		F523D2C702DE4438018635CA = {
+			isa = PBXFileReference;
+			name = render_text.h;
+			path = khtml/rendering/render_text.h;
+			refType = 4;
+		};
+		F523D2C802DE4438018635CA = {
+			fileRef = F523D29D02DE4438018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D2C902DE4438018635CA = {
+			fileRef = F523D29E02DE4438018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D2CA02DE4438018635CA = {
+			fileRef = F523D29F02DE4438018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D2CB02DE4438018635CA = {
+			fileRef = F523D2A002DE4438018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D2CC02DE4438018635CA = {
+			fileRef = F523D2A102DE4438018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D2CD02DE4438018635CA = {
+			fileRef = F523D2A202DE4438018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D2CE02DE4438018635CA = {
+			fileRef = F523D2A302DE4438018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D2CF02DE4438018635CA = {
+			fileRef = F523D2A402DE4438018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D2D002DE4438018635CA = {
+			fileRef = F523D2A502DE4438018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D2D102DE4438018635CA = {
+			fileRef = F523D2A602DE4438018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D2D202DE4438018635CA = {
+			fileRef = F523D2A702DE4438018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D2D302DE4438018635CA = {
+			fileRef = F523D2A802DE4438018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D2D402DE4438018635CA = {
+			fileRef = F523D2A902DE4438018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D2D502DE4438018635CA = {
+			fileRef = F523D2AA02DE4438018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D2D602DE4438018635CA = {
+			fileRef = F523D2AB02DE4438018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D2D702DE4438018635CA = {
+			fileRef = F523D2AC02DE4438018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D2D802DE4438018635CA = {
+			fileRef = F523D2AD02DE4438018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D2D902DE4438018635CA = {
+			fileRef = F523D2AE02DE4438018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D2DA02DE4438018635CA = {
+			fileRef = F523D2AF02DE4438018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D2DB02DE4438018635CA = {
+			fileRef = F523D2B002DE4438018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D2DD02DE4438018635CA = {
+			fileRef = F523D2B202DE4438018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D2DE02DE4438018635CA = {
+			fileRef = F523D2B302DE4438018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D2E002DE4438018635CA = {
+			fileRef = F523D2B502DE4438018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D2E102DE4438018635CA = {
+			fileRef = F523D2B602DE4438018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D2E202DE4438018635CA = {
+			fileRef = F523D2B702DE4438018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D2E302DE4438018635CA = {
+			fileRef = F523D2B802DE4438018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D2E402DE4438018635CA = {
+			fileRef = F523D2B902DE4438018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D2E502DE4438018635CA = {
+			fileRef = F523D2BA02DE4438018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D2E602DE4438018635CA = {
+			fileRef = F523D2BB02DE4438018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D2E702DE4438018635CA = {
+			fileRef = F523D2BC02DE4438018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D2E802DE4438018635CA = {
+			fileRef = F523D2BD02DE4438018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D2E902DE4438018635CA = {
+			fileRef = F523D2BE02DE4438018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D2EB02DE4438018635CA = {
+			fileRef = F523D2C002DE4438018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D2EC02DE4438018635CA = {
+			fileRef = F523D2C102DE4438018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D2ED02DE4438018635CA = {
+			fileRef = F523D2C202DE4438018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D2EE02DE4438018635CA = {
+			fileRef = F523D2C302DE4438018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D2EF02DE4438018635CA = {
+			fileRef = F523D2C402DE4438018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D2F002DE4438018635CA = {
+			fileRef = F523D2C502DE4438018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D2F102DE4438018635CA = {
+			fileRef = F523D2C602DE4438018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D2F202DE4438018635CA = {
+			fileRef = F523D2C702DE4438018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D2F302DE443B018635CA = {
+			children = (
+				F523D29D02DE4438018635CA,
+				F523D29E02DE4438018635CA,
+				F523D29F02DE4438018635CA,
+				F523D2A002DE4438018635CA,
+				F523D2A102DE4438018635CA,
+				F523D2A202DE4438018635CA,
+				F523D2A302DE4438018635CA,
+				F523D2A402DE4438018635CA,
+				F523D2A502DE4438018635CA,
+				F523D2A602DE4438018635CA,
+				F523D2A702DE4438018635CA,
+				F523D2A802DE4438018635CA,
+				F523D2A902DE4438018635CA,
+				F523D2AA02DE4438018635CA,
+				F523D2AB02DE4438018635CA,
+				F523D2AC02DE4438018635CA,
+				F523D2AD02DE4438018635CA,
+				F523D2AE02DE4438018635CA,
+				F523D2AF02DE4438018635CA,
+				F523D2B002DE4438018635CA,
+				F523D2B102DE4438018635CA,
+				F523D2B202DE4438018635CA,
+				F523D2B302DE4438018635CA,
+				F523D2B402DE4438018635CA,
+				F523D2B502DE4438018635CA,
+				F523D2B602DE4438018635CA,
+				F523D2B702DE4438018635CA,
+				F523D2B802DE4438018635CA,
+				F523D2B902DE4438018635CA,
+				F523D2BA02DE4438018635CA,
+				F523D2BB02DE4438018635CA,
+				F523D2BC02DE4438018635CA,
+				F523D2BD02DE4438018635CA,
+				F523D2BE02DE4438018635CA,
+				F523D2BF02DE4438018635CA,
+				F523D2C002DE4438018635CA,
+				F523D2C102DE4438018635CA,
+				F523D2C202DE4438018635CA,
+				F523D2C302DE4438018635CA,
+				F523D2C402DE4438018635CA,
+				F523D2C502DE4438018635CA,
+				F523D2C602DE4438018635CA,
+				F523D2C702DE4438018635CA,
+			);
+			isa = PBXGroup;
+			name = rendering;
+			refType = 4;
+		};
+		F523D2F402DE4476018635CA = {
+			isa = PBXFileReference;
+			name = dom_docimpl.cpp;
+			path = khtml/xml/dom_docimpl.cpp;
+			refType = 4;
+		};
+		F523D2F502DE4476018635CA = {
+			isa = PBXFileReference;
+			name = dom_docimpl.h;
+			path = khtml/xml/dom_docimpl.h;
+			refType = 4;
+		};
+		F523D2F602DE4476018635CA = {
+			isa = PBXFileReference;
+			name = dom_docimpl.moc;
+			path = khtml/xml/dom_docimpl.moc;
+			refType = 4;
+		};
+		F523D2F702DE4476018635CA = {
+			isa = PBXFileReference;
+			name = dom_elementimpl.cpp;
+			path = khtml/xml/dom_elementimpl.cpp;
+			refType = 4;
+		};
+		F523D2F802DE4476018635CA = {
+			isa = PBXFileReference;
+			name = dom_elementimpl.h;
+			path = khtml/xml/dom_elementimpl.h;
+			refType = 4;
+		};
+		F523D2F902DE4476018635CA = {
+			isa = PBXFileReference;
+			name = dom_nodeimpl.cpp;
+			path = khtml/xml/dom_nodeimpl.cpp;
+			refType = 4;
+		};
+		F523D2FA02DE4476018635CA = {
+			isa = PBXFileReference;
+			name = dom_nodeimpl.h;
+			path = khtml/xml/dom_nodeimpl.h;
+			refType = 4;
+		};
+		F523D2FB02DE4476018635CA = {
+			isa = PBXFileReference;
+			name = dom_stringimpl.cpp;
+			path = khtml/xml/dom_stringimpl.cpp;
+			refType = 4;
+		};
+		F523D2FC02DE4476018635CA = {
+			isa = PBXFileReference;
+			name = dom_stringimpl.h;
+			path = khtml/xml/dom_stringimpl.h;
+			refType = 4;
+		};
+		F523D2FD02DE4476018635CA = {
+			isa = PBXFileReference;
+			name = dom_textimpl.cpp;
+			path = khtml/xml/dom_textimpl.cpp;
+			refType = 4;
+		};
+		F523D2FE02DE4476018635CA = {
+			isa = PBXFileReference;
+			name = dom_textimpl.h;
+			path = khtml/xml/dom_textimpl.h;
+			refType = 4;
+		};
+		F523D2FF02DE4476018635CA = {
+			isa = PBXFileReference;
+			name = dom_xmlimpl.cpp;
+			path = khtml/xml/dom_xmlimpl.cpp;
+			refType = 4;
+		};
+		F523D30002DE4476018635CA = {
+			isa = PBXFileReference;
+			name = dom_xmlimpl.h;
+			path = khtml/xml/dom_xmlimpl.h;
+			refType = 4;
+		};
+		F523D30102DE4476018635CA = {
+			isa = PBXFileReference;
+			name = dom2_eventsimpl.cpp;
+			path = khtml/xml/dom2_eventsimpl.cpp;
+			refType = 4;
+		};
+		F523D30202DE4476018635CA = {
+			isa = PBXFileReference;
+			name = dom2_eventsimpl.h;
+			path = khtml/xml/dom2_eventsimpl.h;
+			refType = 4;
+		};
+		F523D30302DE4476018635CA = {
+			isa = PBXFileReference;
+			name = dom2_rangeimpl.cpp;
+			path = khtml/xml/dom2_rangeimpl.cpp;
+			refType = 4;
+		};
+		F523D30402DE4476018635CA = {
+			isa = PBXFileReference;
+			name = dom2_rangeimpl.h;
+			path = khtml/xml/dom2_rangeimpl.h;
+			refType = 4;
+		};
+		F523D30502DE4476018635CA = {
+			isa = PBXFileReference;
+			name = dom2_traversalimpl.cpp;
+			path = khtml/xml/dom2_traversalimpl.cpp;
+			refType = 4;
+		};
+		F523D30602DE4476018635CA = {
+			isa = PBXFileReference;
+			name = dom2_traversalimpl.h;
+			path = khtml/xml/dom2_traversalimpl.h;
+			refType = 4;
+		};
+		F523D30702DE4476018635CA = {
+			isa = PBXFileReference;
+			name = dom2_viewsimpl.cpp;
+			path = khtml/xml/dom2_viewsimpl.cpp;
+			refType = 4;
+		};
+		F523D30802DE4476018635CA = {
+			isa = PBXFileReference;
+			name = dom2_viewsimpl.h;
+			path = khtml/xml/dom2_viewsimpl.h;
+			refType = 4;
+		};
+		F523D30902DE4476018635CA = {
+			isa = PBXFileReference;
+			name = xml_tokenizer.cpp;
+			path = khtml/xml/xml_tokenizer.cpp;
+			refType = 4;
+		};
+		F523D30A02DE4476018635CA = {
+			isa = PBXFileReference;
+			name = xml_tokenizer.h;
+			path = khtml/xml/xml_tokenizer.h;
+			refType = 4;
+		};
+		F523D30B02DE4476018635CA = {
+			isa = PBXFileReference;
+			name = xml_tokenizer.moc;
+			path = khtml/xml/xml_tokenizer.moc;
+			refType = 4;
+		};
+		F523D30C02DE4476018635CA = {
+			fileRef = F523D2F402DE4476018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D30D02DE4476018635CA = {
+			fileRef = F523D2F502DE4476018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D30F02DE4476018635CA = {
+			fileRef = F523D2F702DE4476018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D31002DE4476018635CA = {
+			fileRef = F523D2F802DE4476018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D31102DE4476018635CA = {
+			fileRef = F523D2F902DE4476018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D31202DE4476018635CA = {
+			fileRef = F523D2FA02DE4476018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D31302DE4476018635CA = {
+			fileRef = F523D2FB02DE4476018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D31402DE4476018635CA = {
+			fileRef = F523D2FC02DE4476018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D31502DE4476018635CA = {
+			fileRef = F523D2FD02DE4476018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D31602DE4476018635CA = {
+			fileRef = F523D2FE02DE4476018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D31702DE4476018635CA = {
+			fileRef = F523D2FF02DE4476018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D31802DE4476018635CA = {
+			fileRef = F523D30002DE4476018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D31902DE4476018635CA = {
+			fileRef = F523D30102DE4476018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D31A02DE4476018635CA = {
+			fileRef = F523D30202DE4476018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D31B02DE4476018635CA = {
+			fileRef = F523D30302DE4476018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D31C02DE4476018635CA = {
+			fileRef = F523D30402DE4476018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D31D02DE4476018635CA = {
+			fileRef = F523D30502DE4476018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D31E02DE4476018635CA = {
+			fileRef = F523D30602DE4476018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D31F02DE4476018635CA = {
+			fileRef = F523D30702DE4476018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D32002DE4476018635CA = {
+			fileRef = F523D30802DE4476018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D32102DE4476018635CA = {
+			fileRef = F523D30902DE4476018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D32202DE4476018635CA = {
+			fileRef = F523D30A02DE4476018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F523D32402DE4478018635CA = {
+			children = (
+				F523D2F402DE4476018635CA,
+				F523D2F502DE4476018635CA,
+				F523D2F602DE4476018635CA,
+				F523D2F702DE4476018635CA,
+				F523D2F802DE4476018635CA,
+				F523D2F902DE4476018635CA,
+				F523D2FA02DE4476018635CA,
+				F523D2FB02DE4476018635CA,
+				F523D2FC02DE4476018635CA,
+				F523D2FD02DE4476018635CA,
+				F523D2FE02DE4476018635CA,
+				F523D2FF02DE4476018635CA,
+				F523D30002DE4476018635CA,
+				F523D30102DE4476018635CA,
+				F523D30202DE4476018635CA,
+				F523D30302DE4476018635CA,
+				F523D30402DE4476018635CA,
+				F523D30502DE4476018635CA,
+				F523D30602DE4476018635CA,
+				F523D30702DE4476018635CA,
+				F523D30802DE4476018635CA,
+				F523D30902DE4476018635CA,
+				F523D30A02DE4476018635CA,
+				F523D30B02DE4476018635CA,
+			);
+			isa = PBXGroup;
+			name = xml;
+			refType = 4;
+		};
+		F58784C402DE375801EA4122 = {
+			isa = PBXFileReference;
+			name = KWQApplication.mm;
+			path = kwq/KWQApplication.mm;
+			refType = 4;
+		};
+		F58784C502DE375801EA4122 = {
+			isa = PBXFileReference;
+			name = KWQArrayImpl.h;
+			path = kwq/KWQArrayImpl.h;
+			refType = 4;
+		};
+		F58784C602DE375801EA4122 = {
+			isa = PBXFileReference;
+			name = KWQArrayImpl.mm;
+			path = kwq/KWQArrayImpl.mm;
+			refType = 4;
+		};
+		F58784C702DE375801EA4122 = {
+			isa = PBXFileReference;
+			name = KWQbrowserinterface.mm;
+			path = kwq/KWQbrowserinterface.mm;
+			refType = 4;
+		};
+		F58784C802DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQBuffer.mm;
+			path = kwq/KWQBuffer.mm;
+			refType = 4;
+		};
+		F58784C902DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQButton.mm;
+			path = kwq/KWQButton.mm;
+			refType = 4;
+		};
+		F58784CA02DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQChar.mm;
+			path = kwq/KWQChar.mm;
+			refType = 4;
+		};
+		F58784CC02DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQCharsets.h;
+			path = kwq/KWQCharsets.h;
+			refType = 4;
+		};
+		F58784CD02DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQCharsets.mm;
+			path = kwq/KWQCharsets.mm;
+			refType = 4;
+		};
+		F58784CE02DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQCheckBox.mm;
+			path = kwq/KWQCheckBox.mm;
+			refType = 4;
+		};
+		F58784CF02DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQCollection.mm;
+			path = kwq/KWQCollection.mm;
+			refType = 4;
+		};
+		F58784D002DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQColor.mm;
+			path = kwq/KWQColor.mm;
+			refType = 4;
+		};
+		F58784D102DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQColorGroup.mm;
+			path = kwq/KWQColorGroup.mm;
+			refType = 4;
+		};
+		F58784D202DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQComboBox.mm;
+			path = kwq/KWQComboBox.mm;
+			refType = 4;
+		};
+		F58784D302DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQCompletion.h;
+			path = kwq/KWQCompletion.h;
+			refType = 4;
+		};
+		F58784D402DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQCompletion.mm;
+			path = kwq/KWQCompletion.mm;
+			refType = 4;
+		};
+		F58784D502DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQCString.mm;
+			path = kwq/KWQCString.mm;
+			refType = 4;
+		};
+		F58784D602DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQCursor.mm;
+			path = kwq/KWQCursor.mm;
+			refType = 4;
+		};
+		F58784D702DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQDateTime.mm;
+			path = kwq/KWQDateTime.mm;
+			refType = 4;
+		};
+		F58784D802DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = kwqdebug.h;
+			path = kwq/kwqdebug.h;
+			refType = 4;
+		};
+		F58784D902DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = kwqdebug.mm;
+			path = kwq/kwqdebug.mm;
+			refType = 4;
+		};
+		F58784DA02DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQDef.h;
+			path = kwq/KWQDef.h;
+			refType = 4;
+		};
+		F58784DB02DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQDictImpl.h;
+			path = kwq/KWQDictImpl.h;
+			refType = 4;
+		};
+		F58784DC02DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQDictImpl.mm;
+			path = kwq/KWQDictImpl.mm;
+			refType = 4;
+		};
+		F58784DD02DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQDrawUtil.mm;
+			path = kwq/KWQDrawUtil.mm;
+			refType = 4;
+		};
+		F58784DE02DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQEvent.mm;
+			path = kwq/KWQEvent.mm;
+			refType = 4;
+		};
+		F58784DF02DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQFile.mm;
+			path = kwq/KWQFile.mm;
+			refType = 4;
+		};
+		F58784E002DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQFont.mm;
+			path = kwq/KWQFont.mm;
+			refType = 4;
+		};
+		F58784E102DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQFontInfo.mm;
+			path = kwq/KWQFontInfo.mm;
+			refType = 4;
+		};
+		F58784E202DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQFontMetrics.mm;
+			path = kwq/KWQFontMetrics.mm;
+			refType = 4;
+		};
+		F58784E302DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQFrame.h;
+			path = kwq/KWQFrame.h;
+			refType = 4;
+		};
+		F58784E402DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQFrame.mm;
+			path = kwq/KWQFrame.mm;
+			refType = 4;
+		};
+		F58784E502DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQGlobal.mm;
+			path = kwq/KWQGlobal.mm;
+			refType = 4;
+		};
+		F58784E602DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQGuardedPtr.mm;
+			path = kwq/KWQGuardedPtr.mm;
+			refType = 4;
+		};
+		F58784E702DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQHBox.mm;
+			path = kwq/KWQHBox.mm;
+			refType = 4;
+		};
+		F58784E802DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQInputDialog.mm;
+			path = kwq/KWQInputDialog.mm;
+			refType = 4;
+		};
+		F58784E902DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQInvisibleButton.h;
+			path = kwq/KWQInvisibleButton.h;
+			refType = 4;
+		};
+		F58784EA02DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQInvisibleButton.mm;
+			path = kwq/KWQInvisibleButton.mm;
+			refType = 4;
+		};
+		F58784EB02DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQKCharsets.mm;
+			path = kwq/KWQKCharsets.mm;
+			refType = 4;
+		};
+		F58784EC02DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQKComboBox.mm;
+			path = kwq/KWQKComboBox.mm;
+			refType = 4;
+		};
+		F58784ED02DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQKConfigBase.mm;
+			path = kwq/KWQKConfigBase.mm;
+			refType = 4;
+		};
+		F58784EE02DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQKCookieJar.h;
+			path = kwq/KWQKCookieJar.h;
+			refType = 4;
+		};
+		F58784EF02DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQKCookieJar.mm;
+			path = kwq/KWQKCookieJar.mm;
+			refType = 4;
+		};
+		F58784F002DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQKCursor.mm;
+			path = kwq/KWQKCursor.mm;
+			refType = 4;
+		};
+		F58784F202DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQKFileDialog.mm;
+			path = kwq/KWQKFileDialog.mm;
+			refType = 4;
+		};
+		F58784F302DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQKFileItem.mm;
+			path = kwq/KWQKFileItem.mm;
+			refType = 4;
+		};
+		F58784F402DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQKGlobal.mm;
+			path = kwq/KWQKGlobal.mm;
+			refType = 4;
+		};
+		F58784F502DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQKGlobalSettings.mm;
+			path = kwq/KWQKGlobalSettings.mm;
+			refType = 4;
+		};
+		F58784F602DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQKHistoryProvider.mm;
+			path = kwq/KWQKHistoryProvider.mm;
+			refType = 4;
+		};
+		F58784F702DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQKHTMLFactory.mm;
+			path = kwq/KWQKHTMLFactory.mm;
+			refType = 4;
+		};
+		F58784F802DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQKHTMLPart.mm;
+			path = kwq/KWQKHTMLPart.mm;
+			refType = 4;
+		};
+		F58784F902DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQKHTMLPartBrowserExtension.mm;
+			path = kwq/KWQKHTMLPartBrowserExtension.mm;
+			refType = 4;
+		};
+		F58784FA02DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQKHTMLPartImpl.h;
+			path = kwq/KWQKHTMLPartImpl.h;
+			refType = 4;
+		};
+		F58784FB02DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQKHTMLSettings.mm;
+			path = kwq/KWQKHTMLSettings.mm;
+			refType = 4;
+		};
+		F58784FC02DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQKHTMLView.mm;
+			path = kwq/KWQKHTMLView.mm;
+			refType = 4;
+		};
+		F58784FD02DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQKIconLoader.mm;
+			path = kwq/KWQKIconLoader.mm;
+			refType = 4;
+		};
+		F58784FF02DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQKJavaAppletWidget.mm;
+			path = kwq/KWQKJavaAppletWidget.mm;
+			refType = 4;
+		};
+		F587850002DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQKJob.mm;
+			path = kwq/KWQKJob.mm;
+			refType = 4;
+		};
+		F587850102DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQKjobclasses.mm;
+			path = kwq/KWQKjobclasses.mm;
+			refType = 4;
+		};
+		F587850202DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQKLineEdit.mm;
+			path = kwq/KWQKLineEdit.mm;
+			refType = 4;
+		};
+		F587850302DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQKloader.mm;
+			path = kwq/KWQKloader.mm;
+			refType = 4;
+		};
+		F587850402DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQKLocale.mm;
+			path = kwq/KWQKLocale.mm;
+			refType = 4;
+		};
+		F587850502DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQKMessageBox.mm;
+			path = kwq/KWQKMessageBox.mm;
+			refType = 4;
+		};
+		F587850602DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQKMimeType.mm;
+			path = kwq/KWQKMimeType.mm;
+			refType = 4;
+		};
+		F587850702DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQKnetaccess.mm;
+			path = kwq/KWQKnetaccess.mm;
+			refType = 4;
+		};
+		F587850802DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQKPartsEvent.mm;
+			path = kwq/KWQKPartsEvent.mm;
+			refType = 4;
+		};
+		F587850902DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQKPrinter.mm;
+			path = kwq/KWQKPrinter.mm;
+			refType = 4;
+		};
+		F587850A02DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQKProtocolManager.mm;
+			path = kwq/KWQKProtocolManager.mm;
+			refType = 4;
+		};
+		F587850B02DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQKSimpleConfig.mm;
+			path = kwq/KWQKSimpleConfig.mm;
+			refType = 4;
+		};
+		F587850C02DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQKstddirs.mm;
+			path = kwq/KWQKstddirs.mm;
+			refType = 4;
+		};
+		F587850D02DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQKStringHandler.mm;
+			path = kwq/KWQKStringHandler.mm;
+			refType = 4;
+		};
+		F587850E02DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQKURL.mm;
+			path = kwq/KWQKURL.mm;
+			refType = 4;
+		};
+		F587850F02DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQKWin.mm;
+			path = kwq/KWQKWin.mm;
+			refType = 4;
+		};
+		F587851002DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQKWinModule.mm;
+			path = kwq/KWQKWinModule.mm;
+			refType = 4;
+		};
+		F587851102DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQLabel.mm;
+			path = kwq/KWQLabel.mm;
+			refType = 4;
+		};
+		F587851202DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQLineEdit.mm;
+			path = kwq/KWQLineEdit.mm;
+			refType = 4;
+		};
+		F587851302DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQListBox.h;
+			path = kwq/KWQListBox.h;
+			refType = 4;
+		};
+		F587851402DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQListBox.mm;
+			path = kwq/KWQListBox.mm;
+			refType = 4;
+		};
+		F587851502DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQListImpl.h;
+			path = kwq/KWQListImpl.h;
+			refType = 4;
+		};
+		F587851602DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQListImpl.mm;
+			path = kwq/KWQListImpl.mm;
+			refType = 4;
+		};
+		F587851702DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQLoaderImpl.h;
+			path = kwq/KWQLoaderImpl.h;
+			refType = 4;
+		};
+		F587851802DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQMapImpl.h;
+			path = kwq/KWQMapImpl.h;
+			refType = 4;
+		};
+		F587851902DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQMapImpl.mm;
+			path = kwq/KWQMapImpl.mm;
+			refType = 4;
+		};
+		F587851A02DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQMovie.mm;
+			path = kwq/KWQMovie.mm;
+			refType = 4;
+		};
+		F587851B02DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQNSTextField.h;
+			path = kwq/KWQNSTextField.h;
+			refType = 4;
+		};
+		F587851C02DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQNSTextField.mm;
+			path = kwq/KWQNSTextField.mm;
+			refType = 4;
+		};
+		F587851D02DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQObject.mm;
+			path = kwq/KWQObject.mm;
+			refType = 4;
+		};
+		F587851E02DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQPaintDeviceMetrics.mm;
+			path = kwq/KWQPaintDeviceMetrics.mm;
+			refType = 4;
+		};
+		F587851F02DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQPainter.mm;
+			path = kwq/KWQPainter.mm;
+			refType = 4;
+		};
+		F587852002DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQPalette.mm;
+			path = kwq/KWQPalette.mm;
+			refType = 4;
+		};
+		F587852102DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQPen.mm;
+			path = kwq/KWQPen.mm;
+			refType = 4;
+		};
+		F587852202DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQPixmap.mm;
+			path = kwq/KWQPixmap.mm;
+			refType = 4;
+		};
+		F587852302DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQPoint.mm;
+			path = kwq/KWQPoint.mm;
+			refType = 4;
+		};
+		F587852402DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQPointArray.mm;
+			path = kwq/KWQPointArray.mm;
+			refType = 4;
+		};
+		F587852502DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQPtrDictImpl.h;
+			path = kwq/KWQPtrDictImpl.h;
+			refType = 4;
+		};
+		F587852602DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQPtrDictImpl.mm;
+			path = kwq/KWQPtrDictImpl.mm;
+			refType = 4;
+		};
+		F587852702DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQPushButton.mm;
+			path = kwq/KWQPushButton.mm;
+			refType = 4;
+		};
+		F587852802DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQRadioButton.mm;
+			path = kwq/KWQRadioButton.mm;
+			refType = 4;
+		};
+		F587852902DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQRect.mm;
+			path = kwq/KWQRect.mm;
+			refType = 4;
+		};
+		F587852A02DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQRefPtr.h;
+			path = kwq/KWQRefPtr.h;
+			refType = 4;
+		};
+		F587852B02DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQRegExp.mm;
+			path = kwq/KWQRegExp.mm;
+			refType = 4;
+		};
+		F587852C02DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQRegion.mm;
+			path = kwq/KWQRegion.mm;
+			refType = 4;
+		};
+		F587852D02DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQScrollBar.h;
+			path = kwq/KWQScrollBar.h;
+			refType = 4;
+		};
+		F587852E02DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQScrollView.mm;
+			path = kwq/KWQScrollView.mm;
+			refType = 4;
+		};
+		F587852F02DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQsignals.mm;
+			path = kwq/KWQsignals.mm;
+			refType = 4;
+		};
+		F587853002DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQSize.mm;
+			path = kwq/KWQSize.mm;
+			refType = 4;
+		};
+		F587853102DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQString.mm;
+			path = kwq/KWQString.mm;
+			refType = 4;
+		};
+		F587853202DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQStringList.mm;
+			path = kwq/KWQStringList.mm;
+			refType = 4;
+		};
+		F587853302DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQStyle.h;
+			path = kwq/KWQStyle.h;
+			refType = 4;
+		};
+		F587853402DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQStyleSheet.mm;
+			path = kwq/KWQStyleSheet.mm;
+			refType = 4;
+		};
+		F587853502DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQTextArea.h;
+			path = kwq/KWQTextArea.h;
+			refType = 4;
+		};
+		F587853602DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQTextArea.mm;
+			path = kwq/KWQTextArea.mm;
+			refType = 4;
+		};
+		F587853702DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQtextcodec.mm;
+			path = kwq/KWQtextcodec.mm;
+			refType = 4;
+		};
+		F587853802DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQTextEdit.mm;
+			path = kwq/KWQTextEdit.mm;
+			refType = 4;
+		};
+		F587853902DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQtextstream.mm;
+			path = kwq/KWQtextstream.mm;
+			refType = 4;
+		};
+		F587853A02DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQTimer.mm;
+			path = kwq/KWQTimer.mm;
+			refType = 4;
+		};
+		F587853B02DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQValueListImpl.h;
+			path = kwq/KWQValueListImpl.h;
+			refType = 4;
+		};
+		F587853C02DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQValueListImpl.mm;
+			path = kwq/KWQValueListImpl.mm;
+			refType = 4;
+		};
+		F587853D02DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQVariant.mm;
+			path = kwq/KWQVariant.mm;
+			refType = 4;
+		};
+		F587853E02DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQVectorImpl.h;
+			path = kwq/KWQVectorImpl.h;
+			refType = 4;
+		};
+		F587853F02DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQVectorImpl.mm;
+			path = kwq/KWQVectorImpl.mm;
+			refType = 4;
+		};
+		F587854002DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQView.h;
+			path = kwq/KWQView.h;
+			refType = 4;
+		};
+		F587854102DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQView.mm;
+			path = kwq/KWQView.mm;
+			refType = 4;
+		};
+		F587854202DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQWidget.mm;
+			path = kwq/KWQWidget.mm;
+			refType = 4;
+		};
+		F587854302DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQWindowWidget.h;
+			path = kwq/KWQWindowWidget.h;
+			refType = 4;
+		};
+		F587854402DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQWindowWidget.mm;
+			path = kwq/KWQWindowWidget.mm;
+			refType = 4;
+		};
+		F587854502DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQWMatrix.mm;
+			path = kwq/KWQWMatrix.mm;
+			refType = 4;
+		};
+		F587854602DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = KWQxml.mm;
+			path = kwq/KWQxml.mm;
+			refType = 4;
+		};
+		F587854702DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = WebCoreBridge.h;
+			path = kwq/WebCoreBridge.h;
+			refType = 4;
+		};
+		F587854802DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = WebCoreBridge.mm;
+			path = kwq/WebCoreBridge.mm;
+			refType = 4;
+		};
+		F587854902DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = WebCoreCookieAdapter.h;
+			path = kwq/WebCoreCookieAdapter.h;
+			refType = 4;
+		};
+		F587854A02DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = WebCoreCookieAdapter.m;
+			path = kwq/WebCoreCookieAdapter.m;
+			refType = 4;
+		};
+		F587854B02DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = WebCoreFrame.h;
+			path = kwq/WebCoreFrame.h;
+			refType = 4;
+		};
+		F587854C02DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = WebCoreFrameView.h;
+			path = kwq/WebCoreFrameView.h;
+			refType = 4;
+		};
+		F587854D02DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = WebCoreImageRenderer.h;
+			path = kwq/WebCoreImageRenderer.h;
+			refType = 4;
+		};
+		F587854E02DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = WebCoreImageRendererFactory.h;
+			path = kwq/WebCoreImageRendererFactory.h;
+			refType = 4;
+		};
+		F587854F02DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = WebCoreImageRendererFactory.m;
+			path = kwq/WebCoreImageRendererFactory.m;
+			refType = 4;
+		};
+		F587855002DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = WebCoreResourceLoader.h;
+			path = kwq/WebCoreResourceLoader.h;
+			refType = 4;
+		};
+		F587855102DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = WebCoreTextRenderer.h;
+			path = kwq/WebCoreTextRenderer.h;
+			refType = 4;
+		};
+		F587855202DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = WebCoreTextRendererFactory.h;
+			path = kwq/WebCoreTextRendererFactory.h;
+			refType = 4;
+		};
+		F587855302DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = WebCoreTextRendererFactory.m;
+			path = kwq/WebCoreTextRendererFactory.m;
+			refType = 4;
+		};
+		F587855402DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = WebCoreViewFactory.h;
+			path = kwq/WebCoreViewFactory.h;
+			refType = 4;
+		};
+		F587855502DE375901EA4122 = {
+			isa = PBXFileReference;
+			name = WebCoreViewFactory.m;
+			path = kwq/WebCoreViewFactory.m;
+			refType = 4;
+		};
+		F587855602DE375901EA4122 = {
+			fileRef = F58784C402DE375801EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587855702DE375901EA4122 = {
+			fileRef = F58784C502DE375801EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587855802DE375901EA4122 = {
+			fileRef = F58784C602DE375801EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587855902DE375901EA4122 = {
+			fileRef = F58784C702DE375801EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587855A02DE375901EA4122 = {
+			fileRef = F58784C802DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587855B02DE375901EA4122 = {
+			fileRef = F58784C902DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587855C02DE375901EA4122 = {
+			fileRef = F58784CA02DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587855E02DE375901EA4122 = {
+			fileRef = F58784CC02DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587855F02DE375901EA4122 = {
+			fileRef = F58784CD02DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587856002DE375901EA4122 = {
+			fileRef = F58784CE02DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587856102DE375901EA4122 = {
+			fileRef = F58784CF02DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587856202DE375901EA4122 = {
+			fileRef = F58784D002DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587856302DE375901EA4122 = {
+			fileRef = F58784D102DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587856402DE375901EA4122 = {
+			fileRef = F58784D202DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587856502DE375901EA4122 = {
+			fileRef = F58784D302DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587856602DE375901EA4122 = {
+			fileRef = F58784D402DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587856702DE375901EA4122 = {
+			fileRef = F58784D502DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587856802DE375901EA4122 = {
+			fileRef = F58784D602DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587856902DE375901EA4122 = {
+			fileRef = F58784D702DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587856A02DE375901EA4122 = {
+			fileRef = F58784D802DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587856B02DE375901EA4122 = {
+			fileRef = F58784D902DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587856C02DE375901EA4122 = {
+			fileRef = F58784DA02DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587856D02DE375901EA4122 = {
+			fileRef = F58784DB02DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587856E02DE375901EA4122 = {
+			fileRef = F58784DC02DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587856F02DE375901EA4122 = {
+			fileRef = F58784DD02DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587857002DE375901EA4122 = {
+			fileRef = F58784DE02DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587857102DE375901EA4122 = {
+			fileRef = F58784DF02DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587857202DE375901EA4122 = {
+			fileRef = F58784E002DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587857302DE375901EA4122 = {
+			fileRef = F58784E102DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587857402DE375901EA4122 = {
+			fileRef = F58784E202DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587857502DE375901EA4122 = {
+			fileRef = F58784E302DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587857602DE375901EA4122 = {
+			fileRef = F58784E402DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587857702DE375901EA4122 = {
+			fileRef = F58784E502DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587857802DE375901EA4122 = {
+			fileRef = F58784E602DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587857902DE375901EA4122 = {
+			fileRef = F58784E702DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587857A02DE375901EA4122 = {
+			fileRef = F58784E802DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587857B02DE375901EA4122 = {
+			fileRef = F58784E902DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587857C02DE375901EA4122 = {
+			fileRef = F58784EA02DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587857D02DE375901EA4122 = {
+			fileRef = F58784EB02DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587857E02DE375901EA4122 = {
+			fileRef = F58784EC02DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587857F02DE375901EA4122 = {
+			fileRef = F58784ED02DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587858002DE375901EA4122 = {
+			fileRef = F58784EE02DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587858102DE375901EA4122 = {
+			fileRef = F58784EF02DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587858202DE375901EA4122 = {
+			fileRef = F58784F002DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587858402DE375901EA4122 = {
+			fileRef = F58784F202DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587858502DE375901EA4122 = {
+			fileRef = F58784F302DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587858602DE375901EA4122 = {
+			fileRef = F58784F402DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587858702DE375901EA4122 = {
+			fileRef = F58784F502DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587858802DE375901EA4122 = {
+			fileRef = F58784F602DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587858902DE375901EA4122 = {
+			fileRef = F58784F702DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587858A02DE375901EA4122 = {
+			fileRef = F58784F802DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587858B02DE375901EA4122 = {
+			fileRef = F58784F902DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587858C02DE375901EA4122 = {
+			fileRef = F58784FA02DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587858D02DE375901EA4122 = {
+			fileRef = F58784FB02DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587858E02DE375901EA4122 = {
+			fileRef = F58784FC02DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587858F02DE375901EA4122 = {
+			fileRef = F58784FD02DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587859102DE375901EA4122 = {
+			fileRef = F58784FF02DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587859202DE375901EA4122 = {
+			fileRef = F587850002DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587859302DE375901EA4122 = {
+			fileRef = F587850102DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587859402DE375901EA4122 = {
+			fileRef = F587850202DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587859502DE375901EA4122 = {
+			fileRef = F587850302DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587859602DE375901EA4122 = {
+			fileRef = F587850402DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587859702DE375901EA4122 = {
+			fileRef = F587850502DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587859802DE375901EA4122 = {
+			fileRef = F587850602DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587859902DE375901EA4122 = {
+			fileRef = F587850702DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587859A02DE375901EA4122 = {
+			fileRef = F587850802DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587859B02DE375901EA4122 = {
+			fileRef = F587850902DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587859C02DE375901EA4122 = {
+			fileRef = F587850A02DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587859D02DE375901EA4122 = {
+			fileRef = F587850B02DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587859E02DE375901EA4122 = {
+			fileRef = F587850C02DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587859F02DE375901EA4122 = {
+			fileRef = F587850D02DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58785A002DE375901EA4122 = {
+			fileRef = F587850E02DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58785A102DE375901EA4122 = {
+			fileRef = F587850F02DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58785A202DE375901EA4122 = {
+			fileRef = F587851002DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58785A302DE375901EA4122 = {
+			fileRef = F587851102DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58785A402DE375901EA4122 = {
+			fileRef = F587851202DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58785A502DE375901EA4122 = {
+			fileRef = F587851302DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58785A602DE375901EA4122 = {
+			fileRef = F587851402DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58785A702DE375901EA4122 = {
+			fileRef = F587851502DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58785A802DE375901EA4122 = {
+			fileRef = F587851602DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58785A902DE375901EA4122 = {
+			fileRef = F587851702DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58785AA02DE375901EA4122 = {
+			fileRef = F587851802DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58785AB02DE375901EA4122 = {
+			fileRef = F587851902DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58785AC02DE375901EA4122 = {
+			fileRef = F587851A02DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58785AD02DE375901EA4122 = {
+			fileRef = F587851B02DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58785AE02DE375901EA4122 = {
+			fileRef = F587851C02DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58785AF02DE375901EA4122 = {
+			fileRef = F587851D02DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58785B002DE375901EA4122 = {
+			fileRef = F587851E02DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58785B102DE375901EA4122 = {
+			fileRef = F587851F02DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58785B202DE375901EA4122 = {
+			fileRef = F587852002DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58785B302DE375901EA4122 = {
+			fileRef = F587852102DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58785B402DE375901EA4122 = {
+			fileRef = F587852202DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58785B502DE375901EA4122 = {
+			fileRef = F587852302DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58785B602DE375901EA4122 = {
+			fileRef = F587852402DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58785B702DE375901EA4122 = {
+			fileRef = F587852502DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58785B802DE375901EA4122 = {
+			fileRef = F587852602DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58785B902DE375901EA4122 = {
+			fileRef = F587852702DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58785BA02DE375901EA4122 = {
+			fileRef = F587852802DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58785BB02DE375901EA4122 = {
+			fileRef = F587852902DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58785BC02DE375901EA4122 = {
+			fileRef = F587852A02DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58785BD02DE375901EA4122 = {
+			fileRef = F587852B02DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58785BE02DE375901EA4122 = {
+			fileRef = F587852C02DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58785BF02DE375901EA4122 = {
+			fileRef = F587852D02DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58785C002DE375901EA4122 = {
+			fileRef = F587852E02DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58785C102DE375901EA4122 = {
+			fileRef = F587852F02DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58785C202DE375901EA4122 = {
+			fileRef = F587853002DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58785C302DE375901EA4122 = {
+			fileRef = F587853102DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58785C402DE375901EA4122 = {
+			fileRef = F587853202DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58785C502DE375901EA4122 = {
+			fileRef = F587853302DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58785C602DE375901EA4122 = {
+			fileRef = F587853402DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58785C702DE375901EA4122 = {
+			fileRef = F587853502DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58785C802DE375901EA4122 = {
+			fileRef = F587853602DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58785C902DE375901EA4122 = {
+			fileRef = F587853702DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58785CA02DE375901EA4122 = {
+			fileRef = F587853802DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58785CB02DE375901EA4122 = {
+			fileRef = F587853902DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58785CC02DE375901EA4122 = {
+			fileRef = F587853A02DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58785CD02DE375901EA4122 = {
+			fileRef = F587853B02DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58785CE02DE375901EA4122 = {
+			fileRef = F587853C02DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58785CF02DE375901EA4122 = {
+			fileRef = F587853D02DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58785D002DE375901EA4122 = {
+			fileRef = F587853E02DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58785D102DE375901EA4122 = {
+			fileRef = F587853F02DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58785D202DE375901EA4122 = {
+			fileRef = F587854002DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58785D302DE375901EA4122 = {
+			fileRef = F587854102DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58785D402DE375901EA4122 = {
+			fileRef = F587854202DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58785D502DE375901EA4122 = {
+			fileRef = F587854302DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58785D602DE375901EA4122 = {
+			fileRef = F587854402DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58785D702DE375901EA4122 = {
+			fileRef = F587854502DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58785D802DE375901EA4122 = {
+			fileRef = F587854602DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58785D902DE375901EA4122 = {
+			fileRef = F587854702DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58785DA02DE375901EA4122 = {
+			fileRef = F587854802DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58785DB02DE375901EA4122 = {
+			fileRef = F587854902DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58785DC02DE375901EA4122 = {
+			fileRef = F587854A02DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58785DD02DE375901EA4122 = {
+			fileRef = F587854B02DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58785DE02DE375901EA4122 = {
+			fileRef = F587854C02DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58785DF02DE375901EA4122 = {
+			fileRef = F587854D02DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58785E002DE375901EA4122 = {
+			fileRef = F587854E02DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58785E102DE375901EA4122 = {
+			fileRef = F587854F02DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58785E202DE375901EA4122 = {
+			fileRef = F587855002DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58785E302DE375901EA4122 = {
+			fileRef = F587855102DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58785E402DE375901EA4122 = {
+			fileRef = F587855202DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58785E502DE375901EA4122 = {
+			fileRef = F587855302DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58785E602DE375901EA4122 = {
+			fileRef = F587855402DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58785E702DE375901EA4122 = {
+			fileRef = F587855502DE375901EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58785E802DE377601EA4122 = {
+			children = (
+				F587871802DE3B8801EA4122,
+				F587861C02DE382201EA4122,
+				F587862F02DE398601EA4122,
+				F58785EF02DE37DE01EA4122,
+				F587863202DE39E701EA4122,
+				F587865F02DE3A9C01EA4122,
+				F587867502DE3B3301EA4122,
+				F587864302DE3A1601EA4122,
+				F523D15002DE4271018635CA,
+			);
+			isa = PBXGroup;
+			name = kwq;
+			refType = 4;
+		};
+		F58785E902DE378A01EA4122 = {
+			children = (
+				F587854702DE375901EA4122,
+				F587854802DE375901EA4122,
+				F587854902DE375901EA4122,
+				F587854A02DE375901EA4122,
+				F587854B02DE375901EA4122,
+				F587854C02DE375901EA4122,
+				F587854D02DE375901EA4122,
+				F587854E02DE375901EA4122,
+				F587854F02DE375901EA4122,
+				F587855002DE375901EA4122,
+				F587855102DE375901EA4122,
+				F587855202DE375901EA4122,
+				F587855302DE375901EA4122,
+				F587855402DE375901EA4122,
+				F587855502DE375901EA4122,
+			);
+			isa = PBXGroup;
+			name = "WebCore SPI";
+			refType = 4;
+		};
+		F58785EA02DE37CB01EA4122 = {
+			isa = PBXFileReference;
+			name = dcopclient.h;
+			path = kwq/dcop/dcopclient.h;
+			refType = 4;
+		};
+		F58785EB02DE37CB01EA4122 = {
+			isa = PBXFileReference;
+			name = kdatastream.h;
+			path = kwq/dcop/kdatastream.h;
+			refType = 4;
+		};
+		F58785EC02DE37CB01EA4122 = {
+			fileRef = F58785EA02DE37CB01EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58785ED02DE37CB01EA4122 = {
+			fileRef = F58785EB02DE37CB01EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58785EF02DE37DE01EA4122 = {
+			children = (
+				F58785EA02DE37CB01EA4122,
+				F58785EB02DE37CB01EA4122,
+			);
+			isa = PBXGroup;
+			name = dcop;
+			refType = 4;
+		};
+		F58785F002DE382001EA4122 = {
+			isa = PBXFileReference;
+			name = kapplication.h;
+			path = kwq/kdecore/kapplication.h;
+			refType = 4;
+		};
+		F58785F102DE382001EA4122 = {
+			isa = PBXFileReference;
+			name = kcharsets.h;
+			path = kwq/kdecore/kcharsets.h;
+			refType = 4;
+		};
+		F58785F202DE382001EA4122 = {
+			isa = PBXFileReference;
+			name = kcmdlineargs.h;
+			path = kwq/kdecore/kcmdlineargs.h;
+			refType = 4;
+		};
+		F58785F302DE382001EA4122 = {
+			isa = PBXFileReference;
+			name = kconfig.h;
+			path = kwq/kdecore/kconfig.h;
+			refType = 4;
+		};
+		F58785F402DE382001EA4122 = {
+			isa = PBXFileReference;
+			name = kdebug.h;
+			path = kwq/kdecore/kdebug.h;
+			refType = 4;
+		};
+		F58785F502DE382001EA4122 = {
+			isa = PBXFileReference;
+			name = kglobal.h;
+			path = kwq/kdecore/kglobal.h;
+			refType = 4;
+		};
+		F58785F602DE382001EA4122 = {
+			isa = PBXFileReference;
+			name = kglobalsettings.h;
+			path = kwq/kdecore/kglobalsettings.h;
+			refType = 4;
+		};
+		F58785F702DE382001EA4122 = {
+			isa = PBXFileReference;
+			name = kiconloader.h;
+			path = kwq/kdecore/kiconloader.h;
+			refType = 4;
+		};
+		F58785F802DE382001EA4122 = {
+			isa = PBXFileReference;
+			name = kinstance.h;
+			path = kwq/kdecore/kinstance.h;
+			refType = 4;
+		};
+		F58785F902DE382001EA4122 = {
+			isa = PBXFileReference;
+			name = klibloader.h;
+			path = kwq/kdecore/klibloader.h;
+			refType = 4;
+		};
+		F58785FA02DE382001EA4122 = {
+			isa = PBXFileReference;
+			name = klocale.h;
+			path = kwq/kdecore/klocale.h;
+			refType = 4;
+		};
+		F58785FB02DE382001EA4122 = {
+			isa = PBXFileReference;
+			name = kmultipledrag.h;
+			path = kwq/kdecore/kmultipledrag.h;
+			refType = 4;
+		};
+		F58785FC02DE382001EA4122 = {
+			isa = PBXFileReference;
+			name = ksimpleconfig.h;
+			path = kwq/kdecore/ksimpleconfig.h;
+			refType = 4;
+		};
+		F58785FD02DE382001EA4122 = {
+			isa = PBXFileReference;
+			name = kstandarddirs.h;
+			path = kwq/kdecore/kstandarddirs.h;
+			refType = 4;
+		};
+		F58785FE02DE382001EA4122 = {
+			isa = PBXFileReference;
+			name = kstaticdeleter.h;
+			path = kwq/kdecore/kstaticdeleter.h;
+			refType = 4;
+		};
+		F58785FF02DE382001EA4122 = {
+			isa = PBXFileReference;
+			name = kstddirs.h;
+			path = kwq/kdecore/kstddirs.h;
+			refType = 4;
+		};
+		F587860002DE382001EA4122 = {
+			isa = PBXFileReference;
+			name = kstringhandler.h;
+			path = kwq/kdecore/kstringhandler.h;
+			refType = 4;
+		};
+		F587860102DE382001EA4122 = {
+			isa = PBXFileReference;
+			name = ktempfile.h;
+			path = kwq/kdecore/ktempfile.h;
+			refType = 4;
+		};
+		F587860202DE382001EA4122 = {
+			isa = PBXFileReference;
+			name = kurl.h;
+			path = kwq/kdecore/kurl.h;
+			refType = 4;
+		};
+		F587860302DE382001EA4122 = {
+			isa = PBXFileReference;
+			name = kurldrag.h;
+			path = kwq/kdecore/kurldrag.h;
+			refType = 4;
+		};
+		F587860402DE382001EA4122 = {
+			isa = PBXFileReference;
+			name = kwin.h;
+			path = kwq/kdecore/kwin.h;
+			refType = 4;
+		};
+		F587860502DE382001EA4122 = {
+			isa = PBXFileReference;
+			name = kwinmodule.h;
+			path = kwq/kdecore/kwinmodule.h;
+			refType = 4;
+		};
+		F587860602DE382001EA4122 = {
+			fileRef = F58785F002DE382001EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587860702DE382001EA4122 = {
+			fileRef = F58785F102DE382001EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587860802DE382001EA4122 = {
+			fileRef = F58785F202DE382001EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587860902DE382001EA4122 = {
+			fileRef = F58785F302DE382001EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587860A02DE382001EA4122 = {
+			fileRef = F58785F402DE382001EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587860B02DE382001EA4122 = {
+			fileRef = F58785F502DE382001EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587860C02DE382001EA4122 = {
+			fileRef = F58785F602DE382001EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587860D02DE382001EA4122 = {
+			fileRef = F58785F702DE382001EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587860E02DE382001EA4122 = {
+			fileRef = F58785F802DE382001EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587860F02DE382001EA4122 = {
+			fileRef = F58785F902DE382001EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587861002DE382001EA4122 = {
+			fileRef = F58785FA02DE382001EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587861102DE382001EA4122 = {
+			fileRef = F58785FB02DE382001EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587861202DE382001EA4122 = {
+			fileRef = F58785FC02DE382001EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587861302DE382001EA4122 = {
+			fileRef = F58785FD02DE382001EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587861402DE382001EA4122 = {
+			fileRef = F58785FE02DE382001EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587861502DE382001EA4122 = {
+			fileRef = F58785FF02DE382001EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587861602DE382001EA4122 = {
+			fileRef = F587860002DE382001EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587861702DE382001EA4122 = {
+			fileRef = F587860102DE382001EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587861802DE382001EA4122 = {
+			fileRef = F587860202DE382001EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587861902DE382001EA4122 = {
+			fileRef = F587860302DE382001EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587861A02DE382001EA4122 = {
+			fileRef = F587860402DE382001EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587861B02DE382001EA4122 = {
+			fileRef = F587860502DE382001EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587861C02DE382201EA4122 = {
+			children = (
+				F58785F002DE382001EA4122,
+				F58784C402DE375801EA4122,
+				F58785F102DE382001EA4122,
+				F58784EB02DE375901EA4122,
+				F58785F202DE382001EA4122,
+				F58785F302DE382001EA4122,
+				F58784ED02DE375901EA4122,
+				F58785F402DE382001EA4122,
+				F58785F502DE382001EA4122,
+				F58784F402DE375901EA4122,
+				F58785F602DE382001EA4122,
+				F58784F502DE375901EA4122,
+				F58785F702DE382001EA4122,
+				F58784FD02DE375901EA4122,
+				F58785F802DE382001EA4122,
+				F58785F902DE382001EA4122,
+				F58785FA02DE382001EA4122,
+				F587850402DE375901EA4122,
+				F58785FB02DE382001EA4122,
+				F58785FC02DE382001EA4122,
+				F587850B02DE375901EA4122,
+				F58785FE02DE382001EA4122,
+				F58785FD02DE382001EA4122,
+				F58785FF02DE382001EA4122,
+				F587850C02DE375901EA4122,
+				F587860002DE382001EA4122,
+				F587850D02DE375901EA4122,
+				F587860102DE382001EA4122,
+				F587860202DE382001EA4122,
+				F587850E02DE375901EA4122,
+				F587860302DE382001EA4122,
+				F587860402DE382001EA4122,
+				F587850F02DE375901EA4122,
+				F587860502DE382001EA4122,
+				F587851002DE375901EA4122,
+			);
+			isa = PBXGroup;
+			name = kdecore;
+			refType = 4;
+		};
+		F587861D02DE398401EA4122 = {
+			isa = PBXFileReference;
+			name = kaction.h;
+			path = kwq/kdeui/kaction.h;
+			refType = 4;
+		};
+		F587861E02DE398401EA4122 = {
+			isa = PBXFileReference;
+			name = kcombobox.h;
+			path = kwq/kdeui/kcombobox.h;
+			refType = 4;
+		};
+		F587861F02DE398401EA4122 = {
+			isa = PBXFileReference;
+			name = kcompletionbox.h;
+			path = kwq/kdeui/kcompletionbox.h;
+			refType = 4;
+		};
+		F587862002DE398401EA4122 = {
+			isa = PBXFileReference;
+			name = kcursor.h;
+			path = kwq/kdeui/kcursor.h;
+			refType = 4;
+		};
+		F587862102DE398401EA4122 = {
+			isa = PBXFileReference;
+			name = klineedit.h;
+			path = kwq/kdeui/klineedit.h;
+			refType = 4;
+		};
+		F587862202DE398401EA4122 = {
+			isa = PBXFileReference;
+			name = klistbox.h;
+			path = kwq/kdeui/klistbox.h;
+			refType = 4;
+		};
+		F587862302DE398401EA4122 = {
+			isa = PBXFileReference;
+			name = kmessagebox.h;
+			path = kwq/kdeui/kmessagebox.h;
+			refType = 4;
+		};
+		F587862402DE398401EA4122 = {
+			isa = PBXFileReference;
+			name = kstdaction.h;
+			path = kwq/kdeui/kstdaction.h;
+			refType = 4;
+		};
+		F587862502DE398401EA4122 = {
+			isa = PBXFileReference;
+			name = kxmlguifactory.h;
+			path = kwq/kdeui/kxmlguifactory.h;
+			refType = 4;
+		};
+		F587862602DE398401EA4122 = {
+			fileRef = F587861D02DE398401EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587862702DE398401EA4122 = {
+			fileRef = F587861E02DE398401EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587862802DE398401EA4122 = {
+			fileRef = F587861F02DE398401EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587862902DE398401EA4122 = {
+			fileRef = F587862002DE398401EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587862A02DE398401EA4122 = {
+			fileRef = F587862102DE398401EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587862B02DE398401EA4122 = {
+			fileRef = F587862202DE398401EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587862C02DE398401EA4122 = {
+			fileRef = F587862302DE398401EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587862D02DE398401EA4122 = {
+			fileRef = F587862402DE398401EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587862E02DE398401EA4122 = {
+			fileRef = F587862502DE398401EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587862F02DE398601EA4122 = {
+			children = (
+				F587861D02DE398401EA4122,
+				F587861E02DE398401EA4122,
+				F58784EC02DE375901EA4122,
+				F587861F02DE398401EA4122,
+				F587862002DE398401EA4122,
+				F58784F002DE375901EA4122,
+				F587862102DE398401EA4122,
+				F587850202DE375901EA4122,
+				F587862202DE398401EA4122,
+				F587862302DE398401EA4122,
+				F587850502DE375901EA4122,
+				F587862402DE398401EA4122,
+				F587862502DE398401EA4122,
+			);
+			isa = PBXGroup;
+			name = kdeui;
+			path = "";
+			refType = 4;
+		};
+		F587863002DE39E601EA4122 = {
+			isa = PBXFileReference;
+			name = kfiledialog.h;
+			path = kwq/kfile/kfiledialog.h;
+			refType = 4;
+		};
+		F587863102DE39E601EA4122 = {
+			fileRef = F587863002DE39E601EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587863202DE39E701EA4122 = {
+			children = (
+				F587863002DE39E601EA4122,
+				F58784F202DE375901EA4122,
+			);
+			isa = PBXGroup;
+			name = kfile;
+			path = "";
+			refType = 4;
+		};
+		F587863302DE3A1401EA4122 = {
+			isa = PBXFileReference;
+			name = khtml_ext.h;
+			path = kwq/khtml/khtml_ext.h;
+			refType = 4;
+		};
+		F587863402DE3A1401EA4122 = {
+			isa = PBXFileReference;
+			name = khtml_factory.h;
+			path = kwq/khtml/khtml_factory.h;
+			refType = 4;
+		};
+		F587863502DE3A1401EA4122 = {
+			isa = PBXFileReference;
+			name = khtml_find.h;
+			path = kwq/khtml/khtml_find.h;
+			refType = 4;
+		};
+		F587863602DE3A1401EA4122 = {
+			isa = PBXFileReference;
+			name = khtml_iface.h;
+			path = kwq/khtml/khtml_iface.h;
+			refType = 4;
+		};
+		F587863702DE3A1401EA4122 = {
+			isa = PBXFileReference;
+			name = khtml_pagecache.h;
+			path = kwq/khtml/khtml_pagecache.h;
+			refType = 4;
+		};
+		F587863802DE3A1401EA4122 = {
+			isa = PBXFileReference;
+			name = khtml_printsettings.h;
+			path = kwq/khtml/khtml_printsettings.h;
+			refType = 4;
+		};
+		F587863902DE3A1401EA4122 = {
+			isa = PBXFileReference;
+			name = khtml_run.h;
+			path = kwq/khtml/khtml_run.h;
+			refType = 4;
+		};
+		F587863A02DE3A1401EA4122 = {
+			isa = PBXFileReference;
+			name = khtml_settings.h;
+			path = kwq/khtml/khtml_settings.h;
+			refType = 4;
+		};
+		F587863B02DE3A1401EA4122 = {
+			fileRef = F587863302DE3A1401EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587863C02DE3A1401EA4122 = {
+			fileRef = F587863402DE3A1401EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587863D02DE3A1401EA4122 = {
+			fileRef = F587863502DE3A1401EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587863E02DE3A1401EA4122 = {
+			fileRef = F587863602DE3A1401EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587863F02DE3A1401EA4122 = {
+			fileRef = F587863702DE3A1401EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587864002DE3A1401EA4122 = {
+			fileRef = F587863802DE3A1401EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587864102DE3A1401EA4122 = {
+			fileRef = F587863902DE3A1401EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587864202DE3A1401EA4122 = {
+			fileRef = F587863A02DE3A1401EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587864302DE3A1601EA4122 = {
+			children = (
+				F587864802DE3A7801EA4122,
+				F587863302DE3A1401EA4122,
+				F587863402DE3A1401EA4122,
+				F58784F702DE375901EA4122,
+				F587863502DE3A1401EA4122,
+				F587863602DE3A1401EA4122,
+				F587863702DE3A1401EA4122,
+				F587863802DE3A1401EA4122,
+				F587863902DE3A1401EA4122,
+				F587863A02DE3A1401EA4122,
+				F58784FB02DE375901EA4122,
+			);
+			isa = PBXGroup;
+			name = khtml;
+			path = "";
+			refType = 4;
+		};
+		F587864402DE3A7701EA4122 = {
+			isa = PBXFileReference;
+			name = kjavaappletcontext.h;
+			path = kwq/khtml/java/kjavaappletcontext.h;
+			refType = 4;
+		};
+		F587864502DE3A7701EA4122 = {
+			isa = PBXFileReference;
+			name = kjavaappletwidget.h;
+			path = kwq/khtml/java/kjavaappletwidget.h;
+			refType = 4;
+		};
+		F587864602DE3A7701EA4122 = {
+			fileRef = F587864402DE3A7701EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587864702DE3A7701EA4122 = {
+			fileRef = F587864502DE3A7701EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587864802DE3A7801EA4122 = {
+			children = (
+				F587864402DE3A7701EA4122,
+				F587864502DE3A7701EA4122,
+				F58784FF02DE375901EA4122,
+			);
+			isa = PBXGroup;
+			name = java;
+			path = "";
+			refType = 4;
+		};
+		F587864902DE3A9A01EA4122 = {
+			isa = PBXFileReference;
+			name = global.h;
+			path = kwq/kio/global.h;
+			refType = 4;
+		};
+		F587864A02DE3A9A01EA4122 = {
+			isa = PBXFileReference;
+			name = job.h;
+			path = kwq/kio/job.h;
+			refType = 4;
+		};
+		F587864B02DE3A9A01EA4122 = {
+			isa = PBXFileReference;
+			name = jobclasses.h;
+			path = kwq/kio/jobclasses.h;
+			refType = 4;
+		};
+		F587864C02DE3A9A01EA4122 = {
+			isa = PBXFileReference;
+			name = kfileitem.h;
+			path = kwq/kio/kfileitem.h;
+			refType = 4;
+		};
+		F587864D02DE3A9A01EA4122 = {
+			isa = PBXFileReference;
+			name = kimageio.h;
+			path = kwq/kio/kimageio.h;
+			refType = 4;
+		};
+		F587864E02DE3A9A01EA4122 = {
+			isa = PBXFileReference;
+			name = kmimetype.h;
+			path = kwq/kio/kmimetype.h;
+			refType = 4;
+		};
+		F587864F02DE3A9A01EA4122 = {
+			isa = PBXFileReference;
+			name = kprinter.h;
+			path = kwq/kio/kprinter.h;
+			refType = 4;
+		};
+		F587865002DE3A9A01EA4122 = {
+			isa = PBXFileReference;
+			name = kprotocolmanager.h;
+			path = kwq/kio/kprotocolmanager.h;
+			refType = 4;
+		};
+		F587865102DE3A9A01EA4122 = {
+			isa = PBXFileReference;
+			name = ktrader.h;
+			path = kwq/kio/ktrader.h;
+			refType = 4;
+		};
+		F587865202DE3A9A01EA4122 = {
+			isa = PBXFileReference;
+			name = netaccess.h;
+			path = kwq/kio/netaccess.h;
+			refType = 4;
+		};
+		F587865302DE3A9A01EA4122 = {
+			isa = PBXFileReference;
+			name = scheduler.h;
+			path = kwq/kio/scheduler.h;
+			refType = 4;
+		};
+		F587865402DE3A9A01EA4122 = {
+			fileRef = F587864902DE3A9A01EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587865502DE3A9A01EA4122 = {
+			fileRef = F587864A02DE3A9A01EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587865602DE3A9A01EA4122 = {
+			fileRef = F587864B02DE3A9A01EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587865702DE3A9A01EA4122 = {
+			fileRef = F587864C02DE3A9A01EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587865802DE3A9A01EA4122 = {
+			fileRef = F587864D02DE3A9A01EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587865902DE3A9A01EA4122 = {
+			fileRef = F587864E02DE3A9A01EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587865A02DE3A9A01EA4122 = {
+			fileRef = F587864F02DE3A9A01EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587865B02DE3A9A01EA4122 = {
+			fileRef = F587865002DE3A9A01EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587865C02DE3A9A01EA4122 = {
+			fileRef = F587865102DE3A9A01EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587865D02DE3A9A01EA4122 = {
+			fileRef = F587865202DE3A9A01EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587865E02DE3A9A01EA4122 = {
+			fileRef = F587865302DE3A9A01EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587865F02DE3A9C01EA4122 = {
+			children = (
+				F587866602DE3B1201EA4122,
+				F58784E502DE375901EA4122,
+				F587864902DE3A9A01EA4122,
+				F587864A02DE3A9A01EA4122,
+				F587850002DE375901EA4122,
+				F587864B02DE3A9A01EA4122,
+				F587850102DE375901EA4122,
+				F587864C02DE3A9A01EA4122,
+				F58784F302DE375901EA4122,
+				F587864D02DE3A9A01EA4122,
+				F587864E02DE3A9A01EA4122,
+				F587850602DE375901EA4122,
+				F587864F02DE3A9A01EA4122,
+				F587850902DE375901EA4122,
+				F587865002DE3A9A01EA4122,
+				F587850A02DE375901EA4122,
+				F587865102DE3A9A01EA4122,
+				F587865202DE3A9A01EA4122,
+				F587850702DE375901EA4122,
+				F587865302DE3A9A01EA4122,
+			);
+			isa = PBXGroup;
+			name = kio;
+			path = "";
+			refType = 4;
+		};
+		F587866002DE3B1101EA4122 = {
+			isa = PBXFileReference;
+			name = ksslcertchain.h;
+			path = kwq/kio/kssl/ksslcertchain.h;
+			refType = 4;
+		};
+		F587866102DE3B1101EA4122 = {
+			isa = PBXFileReference;
+			name = ksslinfodlg.h;
+			path = kwq/kio/kssl/ksslinfodlg.h;
+			refType = 4;
+		};
+		F587866202DE3B1101EA4122 = {
+			isa = PBXFileReference;
+			name = ksslkeygen.h;
+			path = kwq/kio/kssl/ksslkeygen.h;
+			refType = 4;
+		};
+		F587866302DE3B1101EA4122 = {
+			fileRef = F587866002DE3B1101EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587866402DE3B1101EA4122 = {
+			fileRef = F587866102DE3B1101EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587866502DE3B1101EA4122 = {
+			fileRef = F587866202DE3B1101EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587866602DE3B1201EA4122 = {
+			children = (
+				F587866002DE3B1101EA4122,
+				F587866102DE3B1101EA4122,
+				F587866202DE3B1101EA4122,
+			);
+			isa = PBXGroup;
+			name = kssl;
+			refType = 4;
+		};
+		F587866702DE3B3201EA4122 = {
+			isa = PBXFileReference;
+			name = browserextension.h;
+			path = kwq/kparts/browserextension.h;
+			refType = 4;
+		};
+		F587866802DE3B3201EA4122 = {
+			isa = PBXFileReference;
+			name = browserinterface.h;
+			path = kwq/kparts/browserinterface.h;
+			refType = 4;
+		};
+		F587866902DE3B3201EA4122 = {
+			isa = PBXFileReference;
+			name = event.h;
+			path = kwq/kparts/event.h;
+			refType = 4;
+		};
+		F587866A02DE3B3201EA4122 = {
+			isa = PBXFileReference;
+			name = factory.h;
+			path = kwq/kparts/factory.h;
+			refType = 4;
+		};
+		F587866B02DE3B3201EA4122 = {
+			isa = PBXFileReference;
+			name = historyprovider.h;
+			path = kwq/kparts/historyprovider.h;
+			refType = 4;
+		};
+		F587866C02DE3B3201EA4122 = {
+			isa = PBXFileReference;
+			name = part.h;
+			path = kwq/kparts/part.h;
+			refType = 4;
+		};
+		F587866D02DE3B3201EA4122 = {
+			isa = PBXFileReference;
+			name = partmanager.h;
+			path = kwq/kparts/partmanager.h;
+			refType = 4;
+		};
+		F587866E02DE3B3201EA4122 = {
+			fileRef = F587866702DE3B3201EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587866F02DE3B3201EA4122 = {
+			fileRef = F587866802DE3B3201EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587867002DE3B3201EA4122 = {
+			fileRef = F587866902DE3B3201EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587867102DE3B3201EA4122 = {
+			fileRef = F587866A02DE3B3201EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587867202DE3B3201EA4122 = {
+			fileRef = F587866B02DE3B3201EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587867302DE3B3201EA4122 = {
+			fileRef = F587866C02DE3B3201EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587867402DE3B3201EA4122 = {
+			fileRef = F587866D02DE3B3201EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587867502DE3B3301EA4122 = {
+			children = (
+				F587866702DE3B3201EA4122,
+				F58784F902DE375901EA4122,
+				F587866802DE3B3201EA4122,
+				F58784C702DE375801EA4122,
+				F587866902DE3B3201EA4122,
+				F587850802DE375901EA4122,
+				F587866A02DE3B3201EA4122,
+				F587866B02DE3B3201EA4122,
+				F58784F602DE375901EA4122,
+				F587866C02DE3B3201EA4122,
+				F587866D02DE3B3201EA4122,
+			);
+			isa = PBXGroup;
+			name = kparts;
+			path = "";
+			refType = 4;
+		};
+		F587867602DE3B8601EA4122 = {
+			fileEncoding = 30;
+			isa = PBXFileReference;
+			lineEnding = 0;
+			name = qapplication.h;
+			path = kwq/qt/qapplication.h;
+			refType = 4;
+		};
+		F587867702DE3B8601EA4122 = {
+			isa = PBXFileReference;
+			name = qarray.h;
+			path = kwq/qt/qarray.h;
+			refType = 4;
+		};
+		F587867802DE3B8601EA4122 = {
+			isa = PBXFileReference;
+			name = qasyncimageio.h;
+			path = kwq/qt/qasyncimageio.h;
+			refType = 4;
+		};
+		F587867902DE3B8601EA4122 = {
+			isa = PBXFileReference;
+			name = qasyncio.h;
+			path = kwq/qt/qasyncio.h;
+			refType = 4;
+		};
+		F587867A02DE3B8601EA4122 = {
+			isa = PBXFileReference;
+			name = qbitmap.h;
+			path = kwq/qt/qbitmap.h;
+			refType = 4;
+		};
+		F587867B02DE3B8601EA4122 = {
+			isa = PBXFileReference;
+			name = qbrush.h;
+			path = kwq/qt/qbrush.h;
+			refType = 4;
+		};
+		F587867C02DE3B8601EA4122 = {
+			isa = PBXFileReference;
+			name = qbuffer.h;
+			path = kwq/qt/qbuffer.h;
+			refType = 4;
+		};
+		F587867D02DE3B8601EA4122 = {
+			isa = PBXFileReference;
+			name = qbutton.h;
+			path = kwq/qt/qbutton.h;
+			refType = 4;
+		};
+		F587867E02DE3B8601EA4122 = {
+			isa = PBXFileReference;
+			name = qcheckbox.h;
+			path = kwq/qt/qcheckbox.h;
+			refType = 4;
+		};
+		F587867F02DE3B8601EA4122 = {
+			isa = PBXFileReference;
+			name = qclipboard.h;
+			path = kwq/qt/qclipboard.h;
+			refType = 4;
+		};
+		F587868002DE3B8601EA4122 = {
+			isa = PBXFileReference;
+			name = qcollection.h;
+			path = kwq/qt/qcollection.h;
+			refType = 4;
+		};
+		F587868102DE3B8601EA4122 = {
+			isa = PBXFileReference;
+			name = qcolor.h;
+			path = kwq/qt/qcolor.h;
+			refType = 4;
+		};
+		F587868202DE3B8601EA4122 = {
+			isa = PBXFileReference;
+			name = qcombobox.h;
+			path = kwq/qt/qcombobox.h;
+			refType = 4;
+		};
+		F587868302DE3B8601EA4122 = {
+			isa = PBXFileReference;
+			name = qcstring.h;
+			path = kwq/qt/qcstring.h;
+			refType = 4;
+		};
+		F587868402DE3B8601EA4122 = {
+			isa = PBXFileReference;
+			name = qcursor.h;
+			path = kwq/qt/qcursor.h;
+			refType = 4;
+		};
+		F587868502DE3B8601EA4122 = {
+			isa = PBXFileReference;
+			name = qdatetime.h;
+			path = kwq/qt/qdatetime.h;
+			refType = 4;
+		};
+		F587868602DE3B8601EA4122 = {
+			isa = PBXFileReference;
+			name = qdict.h;
+			path = kwq/qt/qdict.h;
+			refType = 4;
+		};
+		F587868702DE3B8601EA4122 = {
+			isa = PBXFileReference;
+			name = qdrawutil.h;
+			path = kwq/qt/qdrawutil.h;
+			refType = 4;
+		};
+		F587868802DE3B8601EA4122 = {
+			isa = PBXFileReference;
+			name = qevent.h;
+			path = kwq/qt/qevent.h;
+			refType = 4;
+		};
+		F587868902DE3B8601EA4122 = {
+			isa = PBXFileReference;
+			name = qfile.h;
+			path = kwq/qt/qfile.h;
+			refType = 4;
+		};
+		F587868A02DE3B8601EA4122 = {
+			isa = PBXFileReference;
+			name = qfont.h;
+			path = kwq/qt/qfont.h;
+			refType = 4;
+		};
+		F587868B02DE3B8601EA4122 = {
+			isa = PBXFileReference;
+			name = qfontdatabase.h;
+			path = kwq/qt/qfontdatabase.h;
+			refType = 4;
+		};
+		F587868C02DE3B8601EA4122 = {
+			isa = PBXFileReference;
+			name = qfontinfo.h;
+			path = kwq/qt/qfontinfo.h;
+			refType = 4;
+		};
+		F587868D02DE3B8601EA4122 = {
+			isa = PBXFileReference;
+			name = qfontmetrics.h;
+			path = kwq/qt/qfontmetrics.h;
+			refType = 4;
+		};
+		F587868E02DE3B8601EA4122 = {
+			isa = PBXFileReference;
+			name = qframe.h;
+			path = kwq/qt/qframe.h;
+			refType = 4;
+		};
+		F587868F02DE3B8601EA4122 = {
+			isa = PBXFileReference;
+			name = qglobal.h;
+			path = kwq/qt/qglobal.h;
+			refType = 4;
+		};
+		F587869002DE3B8601EA4122 = {
+			isa = PBXFileReference;
+			name = qguardedptr.h;
+			path = kwq/qt/qguardedptr.h;
+			refType = 4;
+		};
+		F587869102DE3B8601EA4122 = {
+			isa = PBXFileReference;
+			name = qhbox.h;
+			path = kwq/qt/qhbox.h;
+			refType = 4;
+		};
+		F587869202DE3B8601EA4122 = {
+			isa = PBXFileReference;
+			name = qimage.h;
+			path = kwq/qt/qimage.h;
+			refType = 4;
+		};
+		F587869302DE3B8601EA4122 = {
+			isa = PBXFileReference;
+			name = qinputdialog.h;
+			path = kwq/qt/qinputdialog.h;
+			refType = 4;
+		};
+		F587869402DE3B8601EA4122 = {
+			isa = PBXFileReference;
+			name = qintcache.h;
+			path = kwq/qt/qintcache.h;
+			refType = 4;
+		};
+		F587869502DE3B8601EA4122 = {
+			isa = PBXFileReference;
+			name = qintdict.h;
+			path = kwq/qt/qintdict.h;
+			refType = 4;
+		};
+		F587869602DE3B8601EA4122 = {
+			isa = PBXFileReference;
+			name = qiodevice.h;
+			path = kwq/qt/qiodevice.h;
+			refType = 4;
+		};
+		F587869702DE3B8601EA4122 = {
+			isa = PBXFileReference;
+			name = qlabel.h;
+			path = kwq/qt/qlabel.h;
+			refType = 4;
+		};
+		F587869802DE3B8601EA4122 = {
+			isa = PBXFileReference;
+			name = qlineedit.h;
+			path = kwq/qt/qlineedit.h;
+			refType = 4;
+		};
+		F587869902DE3B8601EA4122 = {
+			isa = PBXFileReference;
+			name = qlist.h;
+			path = kwq/qt/qlist.h;
+			refType = 4;
+		};
+		F587869A02DE3B8601EA4122 = {
+			isa = PBXFileReference;
+			name = qmap.h;
+			path = kwq/qt/qmap.h;
+			refType = 4;
+		};
+		F587869B02DE3B8601EA4122 = {
+			isa = PBXFileReference;
+			name = qmemarray.h;
+			path = kwq/qt/qmemarray.h;
+			refType = 4;
+		};
+		F587869C02DE3B8601EA4122 = {
+			isa = PBXFileReference;
+			name = qmetaobject.h;
+			path = kwq/qt/qmetaobject.h;
+			refType = 4;
+		};
+		F587869D02DE3B8601EA4122 = {
+			isa = PBXFileReference;
+			name = qmovie.h;
+			path = kwq/qt/qmovie.h;
+			refType = 4;
+		};
+		F587869E02DE3B8601EA4122 = {
+			isa = PBXFileReference;
+			name = qnamespace.h;
+			path = kwq/qt/qnamespace.h;
+			refType = 4;
+		};
+		F587869F02DE3B8601EA4122 = {
+			isa = PBXFileReference;
+			name = qobject.h;
+			path = kwq/qt/qobject.h;
+			refType = 4;
+		};
+		F58786A002DE3B8601EA4122 = {
+			isa = PBXFileReference;
+			name = qobjectlist.h;
+			path = kwq/qt/qobjectlist.h;
+			refType = 4;
+		};
+		F58786A102DE3B8601EA4122 = {
+			isa = PBXFileReference;
+			name = qpaintdevice.h;
+			path = kwq/qt/qpaintdevice.h;
+			refType = 4;
+		};
+		F58786A202DE3B8601EA4122 = {
+			isa = PBXFileReference;
+			name = qpaintdevicemetrics.h;
+			path = kwq/qt/qpaintdevicemetrics.h;
+			refType = 4;
+		};
+		F58786A302DE3B8601EA4122 = {
+			isa = PBXFileReference;
+			name = qpainter.h;
+			path = kwq/qt/qpainter.h;
+			refType = 4;
+		};
+		F58786A402DE3B8601EA4122 = {
+			isa = PBXFileReference;
+			name = qpalette.h;
+			path = kwq/qt/qpalette.h;
+			refType = 4;
+		};
+		F58786A502DE3B8601EA4122 = {
+			isa = PBXFileReference;
+			name = qpen.h;
+			path = kwq/qt/qpen.h;
+			refType = 4;
+		};
+		F58786A602DE3B8601EA4122 = {
+			isa = PBXFileReference;
+			name = qpixmap.h;
+			path = kwq/qt/qpixmap.h;
+			refType = 4;
+		};
+		F58786A702DE3B8601EA4122 = {
+			isa = PBXFileReference;
+			name = qpoint.h;
+			path = kwq/qt/qpoint.h;
+			refType = 4;
+		};
+		F58786A802DE3B8601EA4122 = {
+			isa = PBXFileReference;
+			name = qpointarray.h;
+			path = kwq/qt/qpointarray.h;
+			refType = 4;
+		};
+		F58786A902DE3B8601EA4122 = {
+			isa = PBXFileReference;
+			name = qpopupmenu.h;
+			path = kwq/qt/qpopupmenu.h;
+			refType = 4;
+		};
+		F58786AA02DE3B8601EA4122 = {
+			isa = PBXFileReference;
+			name = qprinter.h;
+			path = kwq/qt/qprinter.h;
+			refType = 4;
+		};
+		F58786AB02DE3B8601EA4122 = {
+			isa = PBXFileReference;
+			name = qptrdict.h;
+			path = kwq/qt/qptrdict.h;
+			refType = 4;
+		};
+		F58786AC02DE3B8601EA4122 = {
+			isa = PBXFileReference;
+			name = qptrlist.h;
+			path = kwq/qt/qptrlist.h;
+			refType = 4;
+		};
+		F58786AD02DE3B8601EA4122 = {
+			isa = PBXFileReference;
+			name = qptrqueue.h;
+			path = kwq/qt/qptrqueue.h;
+			refType = 4;
+		};
+		F58786AE02DE3B8601EA4122 = {
+			isa = PBXFileReference;
+			name = qptrstack.h;
+			path = kwq/qt/qptrstack.h;
+			refType = 4;
+		};
+		F58786AF02DE3B8601EA4122 = {
+			isa = PBXFileReference;
+			name = qptrvector.h;
+			path = kwq/qt/qptrvector.h;
+			refType = 4;
+		};
+		F58786B002DE3B8601EA4122 = {
+			isa = PBXFileReference;
+			name = qpushbutton.h;
+			path = kwq/qt/qpushbutton.h;
+			refType = 4;
+		};
+		F58786B102DE3B8601EA4122 = {
+			isa = PBXFileReference;
+			name = qradiobutton.h;
+			path = kwq/qt/qradiobutton.h;
+			refType = 4;
+		};
+		F58786B202DE3B8601EA4122 = {
+			isa = PBXFileReference;
+			name = qrect.h;
+			path = kwq/qt/qrect.h;
+			refType = 4;
+		};
+		F58786B302DE3B8601EA4122 = {
+			isa = PBXFileReference;
+			name = qregexp.h;
+			path = kwq/qt/qregexp.h;
+			refType = 4;
+		};
+		F58786B402DE3B8601EA4122 = {
+			isa = PBXFileReference;
+			name = qregion.h;
+			path = kwq/qt/qregion.h;
+			refType = 4;
+		};
+		F58786B502DE3B8601EA4122 = {
+			isa = PBXFileReference;
+			name = qscrollview.h;
+			path = kwq/qt/qscrollview.h;
+			refType = 4;
+		};
+		F58786B602DE3B8601EA4122 = {
+			isa = PBXFileReference;
+			name = qsize.h;
+			path = kwq/qt/qsize.h;
+			refType = 4;
+		};
+		F58786B702DE3B8601EA4122 = {
+			isa = PBXFileReference;
+			name = qsortedlist.h;
+			path = kwq/qt/qsortedlist.h;
+			refType = 4;
+		};
+		F58786B802DE3B8601EA4122 = {
+			isa = PBXFileReference;
+			name = qstack.h;
+			path = kwq/qt/qstack.h;
+			refType = 4;
+		};
+		F58786B902DE3B8601EA4122 = {
+			isa = PBXFileReference;
+			name = qstring.h;
+			path = kwq/qt/qstring.h;
+			refType = 4;
+		};
+		F58786BA02DE3B8601EA4122 = {
+			isa = PBXFileReference;
+			name = qstringlist.h;
+			path = kwq/qt/qstringlist.h;
+			refType = 4;
+		};
+		F58786BB02DE3B8601EA4122 = {
+			isa = PBXFileReference;
+			name = qstyle.h;
+			path = kwq/qt/qstyle.h;
+			refType = 4;
+		};
+		F58786BC02DE3B8601EA4122 = {
+			isa = PBXFileReference;
+			name = qstylesheet.h;
+			path = kwq/qt/qstylesheet.h;
+			refType = 4;
+		};
+		F58786BD02DE3B8601EA4122 = {
+			isa = PBXFileReference;
+			name = qtextcodec.h;
+			path = kwq/qt/qtextcodec.h;
+			refType = 4;
+		};
+		F58786BE02DE3B8601EA4122 = {
+			isa = PBXFileReference;
+			name = qtextedit.h;
+			path = kwq/qt/qtextedit.h;
+			refType = 4;
+		};
+		F58786BF02DE3B8601EA4122 = {
+			isa = PBXFileReference;
+			name = qtextstream.h;
+			path = kwq/qt/qtextstream.h;
+			refType = 4;
+		};
+		F58786C002DE3B8601EA4122 = {
+			isa = PBXFileReference;
+			name = qtimer.h;
+			path = kwq/qt/qtimer.h;
+			refType = 4;
+		};
+		F58786C102DE3B8601EA4122 = {
+			isa = PBXFileReference;
+			name = qtooltip.h;
+			path = kwq/qt/qtooltip.h;
+			refType = 4;
+		};
+		F58786C202DE3B8601EA4122 = {
+			isa = PBXFileReference;
+			name = qvaluelist.h;
+			path = kwq/qt/qvaluelist.h;
+			refType = 4;
+		};
+		F58786C302DE3B8601EA4122 = {
+			isa = PBXFileReference;
+			name = qvariant.h;
+			path = kwq/qt/qvariant.h;
+			refType = 4;
+		};
+		F58786C402DE3B8601EA4122 = {
+			isa = PBXFileReference;
+			name = qvector.h;
+			path = kwq/qt/qvector.h;
+			refType = 4;
+		};
+		F58786C502DE3B8601EA4122 = {
+			isa = PBXFileReference;
+			name = qwidget.h;
+			path = kwq/qt/qwidget.h;
+			refType = 4;
+		};
+		F58786C602DE3B8601EA4122 = {
+			isa = PBXFileReference;
+			name = qxml.h;
+			path = kwq/qt/qxml.h;
+			refType = 4;
+		};
+		F58786C702DE3B8601EA4122 = {
+			fileRef = F587867602DE3B8601EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58786C802DE3B8601EA4122 = {
+			fileRef = F587867702DE3B8601EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58786C902DE3B8601EA4122 = {
+			fileRef = F587867802DE3B8601EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58786CA02DE3B8601EA4122 = {
+			fileRef = F587867902DE3B8601EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58786CB02DE3B8601EA4122 = {
+			fileRef = F587867A02DE3B8601EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58786CC02DE3B8601EA4122 = {
+			fileRef = F587867B02DE3B8601EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58786CD02DE3B8601EA4122 = {
+			fileRef = F587867C02DE3B8601EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58786CE02DE3B8601EA4122 = {
+			fileRef = F587867D02DE3B8601EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58786CF02DE3B8601EA4122 = {
+			fileRef = F587867E02DE3B8601EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58786D002DE3B8601EA4122 = {
+			fileRef = F587867F02DE3B8601EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58786D102DE3B8601EA4122 = {
+			fileRef = F587868002DE3B8601EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58786D202DE3B8601EA4122 = {
+			fileRef = F587868102DE3B8601EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58786D302DE3B8601EA4122 = {
+			fileRef = F587868202DE3B8601EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58786D402DE3B8601EA4122 = {
+			fileRef = F587868302DE3B8601EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58786D502DE3B8601EA4122 = {
+			fileRef = F587868402DE3B8601EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58786D602DE3B8601EA4122 = {
+			fileRef = F587868502DE3B8601EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58786D702DE3B8601EA4122 = {
+			fileRef = F587868602DE3B8601EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58786D802DE3B8601EA4122 = {
+			fileRef = F587868702DE3B8601EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58786D902DE3B8601EA4122 = {
+			fileRef = F587868802DE3B8601EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58786DA02DE3B8601EA4122 = {
+			fileRef = F587868902DE3B8601EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58786DB02DE3B8601EA4122 = {
+			fileRef = F587868A02DE3B8601EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58786DC02DE3B8601EA4122 = {
+			fileRef = F587868B02DE3B8601EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58786DD02DE3B8601EA4122 = {
+			fileRef = F587868C02DE3B8601EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58786DE02DE3B8601EA4122 = {
+			fileRef = F587868D02DE3B8601EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58786DF02DE3B8601EA4122 = {
+			fileRef = F587868E02DE3B8601EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58786E002DE3B8601EA4122 = {
+			fileRef = F587868F02DE3B8601EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58786E102DE3B8601EA4122 = {
+			fileRef = F587869002DE3B8601EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58786E202DE3B8601EA4122 = {
+			fileRef = F587869102DE3B8601EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58786E302DE3B8601EA4122 = {
+			fileRef = F587869202DE3B8601EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58786E402DE3B8601EA4122 = {
+			fileRef = F587869302DE3B8601EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58786E502DE3B8601EA4122 = {
+			fileRef = F587869402DE3B8601EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58786E602DE3B8601EA4122 = {
+			fileRef = F587869502DE3B8601EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58786E702DE3B8601EA4122 = {
+			fileRef = F587869602DE3B8601EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58786E802DE3B8601EA4122 = {
+			fileRef = F587869702DE3B8601EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58786E902DE3B8601EA4122 = {
+			fileRef = F587869802DE3B8601EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58786EA02DE3B8601EA4122 = {
+			fileRef = F587869902DE3B8601EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58786EB02DE3B8601EA4122 = {
+			fileRef = F587869A02DE3B8601EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58786EC02DE3B8601EA4122 = {
+			fileRef = F587869B02DE3B8601EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58786ED02DE3B8601EA4122 = {
+			fileRef = F587869C02DE3B8601EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58786EE02DE3B8601EA4122 = {
+			fileRef = F587869D02DE3B8601EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58786EF02DE3B8601EA4122 = {
+			fileRef = F587869E02DE3B8601EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58786F002DE3B8601EA4122 = {
+			fileRef = F587869F02DE3B8601EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58786F102DE3B8601EA4122 = {
+			fileRef = F58786A002DE3B8601EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58786F202DE3B8601EA4122 = {
+			fileRef = F58786A102DE3B8601EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58786F302DE3B8601EA4122 = {
+			fileRef = F58786A202DE3B8601EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58786F402DE3B8601EA4122 = {
+			fileRef = F58786A302DE3B8601EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58786F502DE3B8601EA4122 = {
+			fileRef = F58786A402DE3B8601EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58786F602DE3B8601EA4122 = {
+			fileRef = F58786A502DE3B8601EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58786F702DE3B8601EA4122 = {
+			fileRef = F58786A602DE3B8601EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58786F802DE3B8601EA4122 = {
+			fileRef = F58786A702DE3B8601EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58786F902DE3B8601EA4122 = {
+			fileRef = F58786A802DE3B8601EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58786FA02DE3B8601EA4122 = {
+			fileRef = F58786A902DE3B8601EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58786FB02DE3B8601EA4122 = {
+			fileRef = F58786AA02DE3B8601EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58786FC02DE3B8601EA4122 = {
+			fileRef = F58786AB02DE3B8601EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58786FD02DE3B8601EA4122 = {
+			fileRef = F58786AC02DE3B8601EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58786FE02DE3B8601EA4122 = {
+			fileRef = F58786AD02DE3B8601EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F58786FF02DE3B8601EA4122 = {
+			fileRef = F58786AE02DE3B8601EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587870002DE3B8601EA4122 = {
+			fileRef = F58786AF02DE3B8601EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587870102DE3B8601EA4122 = {
+			fileRef = F58786B002DE3B8601EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587870202DE3B8601EA4122 = {
+			fileRef = F58786B102DE3B8601EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587870302DE3B8601EA4122 = {
+			fileRef = F58786B202DE3B8601EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587870402DE3B8601EA4122 = {
+			fileRef = F58786B302DE3B8601EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587870502DE3B8601EA4122 = {
+			fileRef = F58786B402DE3B8601EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587870602DE3B8601EA4122 = {
+			fileRef = F58786B502DE3B8601EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587870702DE3B8601EA4122 = {
+			fileRef = F58786B602DE3B8601EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587870802DE3B8601EA4122 = {
+			fileRef = F58786B702DE3B8601EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587870902DE3B8601EA4122 = {
+			fileRef = F58786B802DE3B8601EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587870A02DE3B8601EA4122 = {
+			fileRef = F58786B902DE3B8601EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587870B02DE3B8601EA4122 = {
+			fileRef = F58786BA02DE3B8601EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587870C02DE3B8601EA4122 = {
+			fileRef = F58786BB02DE3B8601EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587870D02DE3B8601EA4122 = {
+			fileRef = F58786BC02DE3B8601EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587870E02DE3B8601EA4122 = {
+			fileRef = F58786BD02DE3B8601EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587870F02DE3B8601EA4122 = {
+			fileRef = F58786BE02DE3B8601EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587871002DE3B8601EA4122 = {
+			fileRef = F58786BF02DE3B8601EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587871102DE3B8601EA4122 = {
+			fileRef = F58786C002DE3B8601EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587871202DE3B8601EA4122 = {
+			fileRef = F58786C102DE3B8601EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587871302DE3B8601EA4122 = {
+			fileRef = F58786C202DE3B8601EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587871402DE3B8601EA4122 = {
+			fileRef = F58786C302DE3B8601EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587871502DE3B8601EA4122 = {
+			fileRef = F58786C402DE3B8601EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587871602DE3B8601EA4122 = {
+			fileRef = F58786C502DE3B8601EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587871702DE3B8601EA4122 = {
+			fileRef = F58786C602DE3B8601EA4122;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F587871802DE3B8801EA4122 = {
+			children = (
+				F587867602DE3B8601EA4122,
+				F587867702DE3B8601EA4122,
+				F58784C502DE375801EA4122,
+				F58784C602DE375801EA4122,
+				F587867802DE3B8601EA4122,
+				F587867902DE3B8601EA4122,
+				F587867A02DE3B8601EA4122,
+				F587867B02DE3B8601EA4122,
+				F587867C02DE3B8601EA4122,
+				F58784C802DE375901EA4122,
+				F587867D02DE3B8601EA4122,
+				F58784C902DE375901EA4122,
+				F587867E02DE3B8601EA4122,
+				F58784CE02DE375901EA4122,
+				F587867F02DE3B8601EA4122,
+				F587868002DE3B8601EA4122,
+				F58784CF02DE375901EA4122,
+				F587868102DE3B8601EA4122,
+				F58784D002DE375901EA4122,
+				F587868202DE3B8601EA4122,
+				F58784D202DE375901EA4122,
+				F587868302DE3B8601EA4122,
+				F58784D502DE375901EA4122,
+				F587868402DE3B8601EA4122,
+				F58784D602DE375901EA4122,
+				F587868502DE3B8601EA4122,
+				F58784D702DE375901EA4122,
+				F587868602DE3B8601EA4122,
+				F58784DB02DE375901EA4122,
+				F58784DC02DE375901EA4122,
+				F587868702DE3B8601EA4122,
+				F58784DD02DE375901EA4122,
+				F587868802DE3B8601EA4122,
+				F58784DE02DE375901EA4122,
+				F587868902DE3B8601EA4122,
+				F58784DF02DE375901EA4122,
+				F587868A02DE3B8601EA4122,
+				F58784E002DE375901EA4122,
+				F587868B02DE3B8601EA4122,
+				F587868C02DE3B8601EA4122,
+				F58784E102DE375901EA4122,
+				F587868D02DE3B8601EA4122,
+				F58784E202DE375901EA4122,
+				F587868E02DE3B8601EA4122,
+				F58784E302DE375901EA4122,
+				F58784E402DE375901EA4122,
+				F587868F02DE3B8601EA4122,
+				F587869002DE3B8601EA4122,
+				F58784E602DE375901EA4122,
+				F587869102DE3B8601EA4122,
+				F58784E702DE375901EA4122,
+				F587869202DE3B8601EA4122,
+				F587869302DE3B8601EA4122,
+				F58784E802DE375901EA4122,
+				F587869402DE3B8601EA4122,
+				F587869502DE3B8601EA4122,
+				F587869602DE3B8601EA4122,
+				F587869702DE3B8601EA4122,
+				F587851102DE375901EA4122,
+				F587869802DE3B8601EA4122,
+				F587851202DE375901EA4122,
+				F587851302DE375901EA4122,
+				F587851402DE375901EA4122,
+				F587869902DE3B8601EA4122,
+				F587851502DE375901EA4122,
+				F587851602DE375901EA4122,
+				F587869A02DE3B8601EA4122,
+				F587851802DE375901EA4122,
+				F587851902DE375901EA4122,
+				F587869B02DE3B8601EA4122,
+				F587869C02DE3B8601EA4122,
+				F587869D02DE3B8601EA4122,
+				F587851A02DE375901EA4122,
+				F587869E02DE3B8601EA4122,
+				F587869F02DE3B8601EA4122,
+				F587851D02DE375901EA4122,
+				F58786A002DE3B8601EA4122,
+				F58786A102DE3B8601EA4122,
+				F58786A202DE3B8601EA4122,
+				F587851E02DE375901EA4122,
+				F58786A302DE3B8601EA4122,
+				F587854502DE375901EA4122,
+				F587851F02DE375901EA4122,
+				F58786A402DE3B8601EA4122,
+				F58784D102DE375901EA4122,
+				F587852002DE375901EA4122,
+				F58786A502DE3B8601EA4122,
+				F587852102DE375901EA4122,
+				F58786A602DE3B8601EA4122,
+				F587852202DE375901EA4122,
+				F58786A702DE3B8601EA4122,
+				F587852302DE375901EA4122,
+				F58786A802DE3B8601EA4122,
+				F587852402DE375901EA4122,
+				F58786A902DE3B8601EA4122,
+				F58786AA02DE3B8601EA4122,
+				F58786AB02DE3B8601EA4122,
+				F587852502DE375901EA4122,
+				F587852602DE375901EA4122,
+				F58786AC02DE3B8601EA4122,
+				F58786AD02DE3B8601EA4122,
+				F58786AE02DE3B8601EA4122,
+				F58786AF02DE3B8601EA4122,
+				F58786B002DE3B8601EA4122,
+				F587852702DE375901EA4122,
+				F58786B102DE3B8601EA4122,
+				F587852802DE375901EA4122,
+				F58786B202DE3B8601EA4122,
+				F587852902DE375901EA4122,
+				F58786B302DE3B8601EA4122,
+				F587852B02DE375901EA4122,
+				F58786B402DE3B8601EA4122,
+				F587852C02DE375901EA4122,
+				F587852D02DE375901EA4122,
+				F58786B502DE3B8601EA4122,
+				F587852E02DE375901EA4122,
+				F58786B602DE3B8601EA4122,
+				F587853002DE375901EA4122,
+				F587853A02DE375901EA4122,
+				F58786B702DE3B8601EA4122,
+				F58786B802DE3B8601EA4122,
+				F58786B902DE3B8601EA4122,
+				F58784CA02DE375901EA4122,
+				F587853102DE375901EA4122,
+				F58786BA02DE3B8601EA4122,
+				F587853202DE375901EA4122,
+				F58786BB02DE3B8601EA4122,
+				F587853302DE375901EA4122,
+				F58786BC02DE3B8601EA4122,
+				F587853402DE375901EA4122,
+				F58786BD02DE3B8601EA4122,
+				F587853702DE375901EA4122,
+				F58786BE02DE3B8601EA4122,
+				F587853802DE375901EA4122,
+				F58786BF02DE3B8601EA4122,
+				F587853902DE375901EA4122,
+				F58786C002DE3B8601EA4122,
+				F58786C102DE3B8601EA4122,
+				F58786C202DE3B8601EA4122,
+				F587853B02DE375901EA4122,
+				F587853C02DE375901EA4122,
+				F58786C302DE3B8601EA4122,
+				F587853D02DE375901EA4122,
+				F58786C402DE3B8601EA4122,
+				F587853E02DE375901EA4122,
+				F587853F02DE375901EA4122,
+				F58786C502DE3B8601EA4122,
+				F587854202DE375901EA4122,
+				F58786C602DE3B8601EA4122,
+				F587854602DE375901EA4122,
+			);
+			isa = PBXGroup;
+			name = qt;
+			path = "";
+			refType = 4;
+		};
+		F58C8A07025BD3BC018635CA = {
+			buildRules = (
+			);
+			buildSettings = {
+				COPY_PHASE_STRIP = NO;
+				DEBUGGING_SYMBOLS = YES;
+				DEBUG_CFLAGS = "";
+				EXPORTED_SYMBOLS_FILE = "WebCore-combined.exp";
+				FRAMEWORK_SEARCH_PATHS = "\U0001 at executable_path/../Frameworks";
+				INSTALL_PATH = "@executable_path/../Frameworks";
+				OPTIMIZATION_CFLAGS = "-O";
+				SKIP_INSTALL = YES;
+			};
+			isa = PBXBuildStyle;
+			name = Mixed;
+		};
+		F5A1B04902DE8ABA018635CA = {
+			isa = PBXFileReference;
+			name = linkCursor.tiff;
+			path = Resources/linkCursor.tiff;
+			refType = 4;
+		};
+		F5A1B04A02DE8ABA018635CA = {
+			fileRef = F5A1B04902DE8ABA018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F5A1B05302DE8B46018635CA = {
+			isa = PBXFileReference;
+			name = html4.css;
+			path = khtml/css/html4.css;
+			refType = 4;
+		};
+		F5A1B05402DE8B46018635CA = {
+			fileRef = F5A1B05302DE8B46018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F5C2869302846DCD018635CA = {
+			isa = PBXFrameworkReference;
+			name = ApplicationServices.framework;
+			path = /System/Library/Frameworks/ApplicationServices.framework;
+			refType = 0;
+		};
+		F5C2869402846DCD018635CA = {
+			isa = PBXFrameworkReference;
+			name = Carbon.framework;
+			path = /System/Library/Frameworks/Carbon.framework;
+			refType = 0;
+		};
+		F5C2869502846DCD018635CA = {
+			isa = PBXFrameworkReference;
+			name = Cocoa.framework;
+			path = /System/Library/Frameworks/Cocoa.framework;
+			refType = 0;
+		};
+		F5C287BB02846DCD018635CA = {
+			fileRef = F5C2869302846DCD018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F5C287BC02846DCD018635CA = {
+			fileRef = F5C2869402846DCD018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F5C287BD02846DCD018635CA = {
+			fileRef = F5C2869502846DCD018635CA;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+//F50
+//F51
+//F52
+//F53
+//F54
+//F80
+//F81
+//F82
+//F83
+//F84
+		F8216299029F4FB501000131 = {
+			isa = PBXFrameworkReference;
+			path = JavaScriptCore.framework;
+			refType = 3;
+		};
+		F821629B029F4FB501000131 = {
+			isa = PBXFrameworkReference;
+			path = WebFoundation.framework;
+			refType = 3;
+		};
+		F82162D7029F4FB501000131 = {
+			fileRef = F8216299029F4FB501000131;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+		F82162D9029F4FB501000131 = {
+			fileRef = F821629B029F4FB501000131;
+			isa = PBXBuildFile;
+			settings = {
+			};
+		};
+	};
+	rootObject = 0867D690FE84028FC02AAC07;
+}
diff --git a/WebCore/dummy.mm b/WebCore/dummy.mm
deleted file mode 100644
index e69de29..0000000
diff --git a/WebCore/khtml/Makefile.am b/WebCore/khtml/Makefile.am
index 4a156b7..ea8c61c 100644
--- a/WebCore/khtml/Makefile.am
+++ b/WebCore/khtml/Makefile.am
@@ -1,36 +1 @@
-NULL =
-
-SUBDIRS = \
-	misc \
-	css \
-	dom \
-	ecma \
-	xml \
-	html \
-	rendering \
-	$(NULL)
-
-noinst_LIBRARIES = libkhtml.o
-LDFLAGS = -Wl,-r -nostdlib
-libkhtml_o_AR = $(OBJCXXLD) $(AM_OBJCXXFLAGS) $(OBJCXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o
-
-libkhtml_o_SOURCES = \
-	khtml_events.cpp \
-	khtml_part.cpp \
-	khtmlview.cpp \
-	$(NULL)
-
-libkhtml_o_LIBADD = \
-	./misc/libkhtmlmisc.o \
-	./css/libkhtmlcss.o \
-	./dom/libkhtmldom.o \
-	./ecma/libkhtmlecma.o \
-	./xml/libkhtmlxml.o \
-	./html/libkhtmlhtml.o \
-	./rendering/libkhtmlrendering.o \
-	$(NULL)
-
-INCLUDES = \
-	$(KWQ_INCLUDES) \
-	$(KDELIBS_INCLUDES) \
-	$(NULL)
+SUBDIRS = misc css ecma html
diff --git a/WebCore/khtml/css/Makefile.am b/WebCore/khtml/css/Makefile.am
index 5a4eeed..3c70612 100644
--- a/WebCore/khtml/css/Makefile.am
+++ b/WebCore/khtml/css/Makefile.am
@@ -1,26 +1,5 @@
 NULL =
 
-noinst_LIBRARIES = libkhtmlcss.o
-LDFLAGS = -Wl,-r -nostdlib
-libkhtmlcss_o_AR = $(OBJCXXLD) $(AM_OBJCXXFLAGS) $(OBJCXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o
-
-libkhtmlcss_o_SOURCES = \
-	css_ruleimpl.cpp \
-	css_ruleimpl.h \
-	css_stylesheetimpl.cpp \
-	css_stylesheetimpl.h \
-	css_valueimpl.cpp \
-	css_valueimpl.h \
-	csshelper.cpp \
-	csshelper.h \
-	cssparser.cpp \
-	cssparser.h \
-	cssproperties.h \
-	cssstyleselector.cpp \
-	cssstyleselector.h \
-	cssvalues.h \
-	$(NULL)
-
 noinst_HEADERS = \
 	cssproperties.c \
 	cssvalues.c \
@@ -38,21 +17,13 @@ PROPFILES = \
 	cssproperties.gperf \
 	$(NULL)
 
-INCLUDES = \
-	$(KWQ_INCLUDES) \
-	$(KDELIBS_INCLUDES) \
-	$(NULL)
-
 $(VALUEFILES): value-stamp
-
 value-stamp: makevalues cssvalues.in
 	sh $< && touch $@
 
 $(PROPFILES): prop-stamp
-
 prop-stamp: makeprop cssproperties.in
 	sh $< && touch $@
 
 BUILT_SOURCES = $(VALUEFILES) $(PROPFILES) value-stamp prop-stamp
-
 CLEANFILES = $(BUILT_SOURCES)
diff --git a/WebCore/khtml/dom/.cvsignore b/WebCore/khtml/dom/.cvsignore
deleted file mode 100644
index e440faf..0000000
--- a/WebCore/khtml/dom/.cvsignore
+++ /dev/null
@@ -1,3 +0,0 @@
-Makefile.in
-Makefile
-.deps
diff --git a/WebCore/khtml/dom/Makefile.am b/WebCore/khtml/dom/Makefile.am
deleted file mode 100644
index 5894ace..0000000
--- a/WebCore/khtml/dom/Makefile.am
+++ /dev/null
@@ -1,68 +0,0 @@
-NULL =
-
-noinst_LIBRARIES = libkhtmldom.o
-LDFLAGS = -Wl,-r -nostdlib
-libkhtmldom_o_AR = $(OBJCXXLD) $(AM_OBJCXXFLAGS) $(OBJCXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o
-
-libkhtmldom_o_SOURCES = \
-	css_rule.cpp \
-	css_rule.h \
-	css_stylesheet.cpp \
-	css_stylesheet.h \
-	css_value.cpp \
-	css_value.h \
-	dom2_events.cpp \
-	dom2_events.h \
-	dom2_range.cpp \
-	dom2_range.h \
-	dom2_traversal.cpp \
-	dom2_traversal.h \
-	dom2_views.cpp \
-	dom2_views.h \
-	dom_core.h \
-	dom_doc.cpp \
-	dom_doc.h \
-	dom_element.cpp \
-	dom_element.h \
-	dom_exception.h \
-	dom_html.h \
-	dom_misc.cpp \
-	dom_misc.h \
-	dom_node.cpp \
-	dom_node.h \
-	dom_string.cpp \
-	dom_string.h \
-	dom_text.cpp \
-	dom_text.h \
-	dom_xml.cpp \
-	dom_xml.h \
-	html_base.cpp \
-	html_base.h \
-	html_block.cpp \
-	html_block.h \
-	html_document.cpp \
-	html_document.h \
-	html_element.cpp \
-	html_element.h \
-	html_form.cpp \
-	html_form.h \
-	html_head.cpp \
-	html_head.h \
-	html_image.cpp \
-	html_image.h \
-	html_inline.cpp \
-	html_inline.h \
-	html_list.cpp \
-	html_list.h \
-	html_misc.cpp \
-	html_misc.h \
-	html_object.cpp \
-	html_object.h \
-	html_table.cpp \
-	html_table.h \
-	$(NULL)
-
-INCLUDES = \
-	$(KWQ_INCLUDES) \
-	$(KDELIBS_INCLUDES) \
-	$(NULL)
diff --git a/WebCore/khtml/ecma/Makefile.am b/WebCore/khtml/ecma/Makefile.am
index eeba373..41ae11f 100644
--- a/WebCore/khtml/ecma/Makefile.am
+++ b/WebCore/khtml/ecma/Makefile.am
@@ -1,39 +1,5 @@
 NULL =
 
-noinst_LIBRARIES = libkhtmlecma.o
-LDFLAGS = -Wl,-r -nostdlib
-libkhtmlecma_o_AR = $(OBJCXXLD) $(AM_OBJCXXFLAGS) $(OBJCXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o
-
-libkhtmlecma_o_SOURCES = \
-	kjs_binding.cpp \
-	kjs_binding.h \
-	kjs_css.cpp \
-	kjs_css.h \
-	kjs_dom.cpp \
-	kjs_dom.h \
-	kjs_events.cpp \
-	kjs_events.h \
-	kjs_html.cpp \
-	kjs_html.h \
-	kjs_navigator.cpp \
-	kjs_navigator.h \
-	kjs_proxy.cpp \
-	kjs_proxy.h \
-	kjs_range.cpp \
-	kjs_range.h \
-	kjs_traversal.cpp \
-	kjs_traversal.h \
-	kjs_views.cpp \
-	kjs_views.h \
-	kjs_window.cpp \
-	kjs_window.h \
-	$(NULL)
-
-INCLUDES = \
-	$(KWQ_INCLUDES) \
-	$(KDELIBS_INCLUDES) \
-	$(NULL)
-
 LUT_FILES = \
 	kjs_css.lut.h \
 	kjs_dom.lut.h \
diff --git a/WebCore/khtml/html/Makefile.am b/WebCore/khtml/html/Makefile.am
index 7322c17..3417261 100644
--- a/WebCore/khtml/html/Makefile.am
+++ b/WebCore/khtml/html/Makefile.am
@@ -1,54 +1,6 @@
-NULL =
-
-noinst_LIBRARIES = libkhtmlhtml.o
-LDFLAGS = -Wl,-r -nostdlib
-libkhtmlhtml_o_AR = $(OBJCXXLD) $(AM_OBJCXXFLAGS) $(OBJCXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o
-
-libkhtmlhtml_o_SOURCES = \
-	dtd.cpp \
-	dtd.h \
-	html_baseimpl.cpp \
-	html_baseimpl.h \
-	html_blockimpl.cpp \
-	html_blockimpl.h \
-	html_documentimpl.cpp \
-	html_documentimpl.h \
-	html_elementimpl.cpp \
-	html_elementimpl.h \
-	html_formimpl.cpp \
-	html_formimpl.h \
-	html_headimpl.cpp \
-	html_headimpl.h \
-	html_imageimpl.cpp \
-	html_imageimpl.h \
-	html_inlineimpl.cpp \
-	html_inlineimpl.h \
-	html_listimpl.cpp \
-	html_listimpl.h \
-	html_miscimpl.cpp \
-	html_miscimpl.h \
-	html_objectimpl.cpp \
-	html_objectimpl.h \
-	html_tableimpl.cpp \
-	html_tableimpl.h \
-	htmlparser.cpp \
-	htmlparser.h \
-	htmltokenizer.cpp \
-	htmltokenizer.h \
-	$(NULL)
-
-INCLUDES = \
-	-I$(top_srcdir)/WebCore \
-	$(KWQ_INCLUDES) \
-	$(KDELIBS_INCLUDES) \
-	-I. \
-	$(NULL)
-
-noinst_HEADERS = kentities.c
-
 kentities.c: kentities.gperf
 	$(GPERF) -a -L "ANSI-C" -C -G -c -o -t -k '*' -NfindEntity -D -s 2 $< > $@
 
+noinst_HEADERS = kentities.c
 BUILT_SOURCES = $(noinst_HEADERS)
-
 CLEANFILES = $(BUILT_SOURCES)
diff --git a/WebCore/khtml/misc/Makefile.am b/WebCore/khtml/misc/Makefile.am
index 01542af..5e38b5d 100644
--- a/WebCore/khtml/misc/Makefile.am
+++ b/WebCore/khtml/misc/Makefile.am
@@ -1,36 +1,10 @@
 NULL =
 
-noinst_LIBRARIES = libkhtmlmisc.o
-LDFLAGS = -Wl,-r -nostdlib
-libkhtmlmisc_o_AR = $(OBJCXXLD) $(AM_OBJCXXFLAGS) $(OBJCXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o
-
-libkhtmlmisc_o_SOURCES = \
-	decoder.cpp \
-	decoder.h \
-	helper.cpp \
-	helper.h \
-	htmlattrs.h \
-	htmlhashes.cpp \
-	htmlhashes.h \
-	htmltags.h \
-	khtmldata.h \
-	khtmllayout.h \
-	loader.cpp \
-	loader.h \
-	loader_client.h \
-	stringit.h \
-	$(NULL)
-
 noinst_HEADERS = \
 	htmlattrs.c \
 	htmltags.c \
 	$(NULL)
 
-INCLUDES = \
-	$(KWQ_INCLUDES) \
-	$(KDELIBS_INCLUDES) \
-	$(NULL)
-
 TAGFILES = \
 	htmltags.c \
 	htmltags.h \
@@ -44,15 +18,12 @@ ATTRSFILES = \
 	$(NULL)
 
 $(TAGFILES): tag-stamp
-
 tag-stamp: maketags htmltags.in
 	perl $< && touch $@
 
 $(ATTRSFILES): attr-stamp
-
 attr-stamp: makeattrs htmlattrs.in
 	perl $< && touch $@
 
 BUILT_SOURCES = $(TAGFILES) $(ATTRSFILES) tag-stamp attr-stamp
-
 CLEANFILES = $(BUILT_SOURCES)
diff --git a/WebCore/khtml/rendering/.cvsignore b/WebCore/khtml/rendering/.cvsignore
deleted file mode 100644
index 051d1bd..0000000
--- a/WebCore/khtml/rendering/.cvsignore
+++ /dev/null
@@ -1,3 +0,0 @@
-Makefile
-Makefile.in
-.deps
diff --git a/WebCore/khtml/rendering/Makefile.am b/WebCore/khtml/rendering/Makefile.am
deleted file mode 100644
index c891dbe..0000000
--- a/WebCore/khtml/rendering/Makefile.am
+++ /dev/null
@@ -1,53 +0,0 @@
-NULL =
-
-noinst_LIBRARIES = libkhtmlrendering.o
-LDFLAGS = -Wl,-r -nostdlib
-libkhtmlrendering_o_AR = $(OBJCXXLD) $(AM_OBJCXXFLAGS) $(OBJCXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o
-
-libkhtmlrendering_o_SOURCES = \
-	bidi.cpp \
-	bidi.h \
-	break_lines.cpp \
-	break_lines.h \
-	font.cpp \
-	font.h \
-	render_applet.cpp \
-	render_applet.h \
-	render_body.cpp \
-	render_body.h \
-	render_box.cpp \
-	render_box.h \
-	render_br.cpp \
-	render_br.h \
-	render_container.cpp \
-	render_container.h \
-	render_flow.cpp \
-	render_flow.h \
-	render_form.cpp \
-	render_form.h \
-	render_frames.cpp \
-	render_frames.h \
-	render_html.cpp \
-	render_html.h \
-	render_image.cpp \
-	render_image.h \
-	render_list.cpp \
-	render_list.h \
-	render_object.cpp \
-	render_object.h \
-	render_replaced.cpp \
-	render_replaced.h \
-	render_root.cpp \
-	render_root.h \
-	render_style.cpp \
-	render_style.h \
-	render_table.cpp \
-	render_table.h \
-	render_text.cpp \
-	render_text.h \
-	$(NULL)
-
-INCLUDES = \
-	$(KWQ_INCLUDES) \
-	$(KDELIBS_INCLUDES) \
-	$(NULL)
diff --git a/WebCore/khtml/xml/.cvsignore b/WebCore/khtml/xml/.cvsignore
deleted file mode 100644
index 051d1bd..0000000
--- a/WebCore/khtml/xml/.cvsignore
+++ /dev/null
@@ -1,3 +0,0 @@
-Makefile
-Makefile.in
-.deps
diff --git a/WebCore/khtml/xml/Makefile.am b/WebCore/khtml/xml/Makefile.am
deleted file mode 100644
index 098af71..0000000
--- a/WebCore/khtml/xml/Makefile.am
+++ /dev/null
@@ -1,35 +0,0 @@
-NULL=
-
-noinst_LIBRARIES = libkhtmlxml.o
-LDFLAGS = -Wl,-r -nostdlib
-libkhtmlxml_o_AR = $(OBJCXXLD) $(AM_OBJCXXFLAGS) $(OBJCXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o
-
-libkhtmlxml_o_SOURCES = \
-        dom2_eventsimpl.cpp \
-        dom2_eventsimpl.h \
-        dom2_rangeimpl.cpp \
-        dom2_rangeimpl.h \
-        dom2_traversalimpl.cpp \
-        dom2_traversalimpl.h \
-        dom2_viewsimpl.cpp \
-        dom2_viewsimpl.h \
-        dom_docimpl.cpp \
-        dom_docimpl.h \
-        dom_elementimpl.cpp \
-        dom_elementimpl.h \
-        dom_nodeimpl.cpp \
-        dom_nodeimpl.h \
-        dom_stringimpl.cpp \
-        dom_stringimpl.h \
-        dom_textimpl.cpp \
-        dom_textimpl.h \
-        dom_xmlimpl.cpp \
-        dom_xmlimpl.h \
-        xml_tokenizer.cpp \
-        xml_tokenizer.h \
-	$(NULL)
-
-INCLUDES = \
-    $(KWQ_INCLUDES) \
-    $(KDELIBS_INCLUDES) \
-    $(NULL)
diff --git a/WebCore/kwq/.cvsignore b/WebCore/kwq/.cvsignore
index c78f681..0a40284 100644
--- a/WebCore/kwq/.cvsignore
+++ b/WebCore/kwq/.cvsignore
@@ -4,6 +4,3 @@ KWQCharsetData.c
 mac-encodings.txt
 make-mac-encodings
 .deps
-.libs
-*.lo
-*.la
diff --git a/WebCore/kwq/KWQKDebug.h b/WebCore/kwq/KWQKDebug.h
index 7fb5bf9..272b50e 100644
--- a/WebCore/kwq/KWQKDebug.h
+++ b/WebCore/kwq/KWQKDebug.h
@@ -35,25 +35,25 @@ typedef kdbgstream & (*KDBGFUNC)(kdbgstream &);
 
 class kdbgstream {
 public:
-    kdbgstream(unsigned int area, unsigned int level, bool print=true);
+    kdbgstream(unsigned int area = 0, unsigned int level = 0, bool print = true) { }
     
-    kdbgstream &operator<<(int);
-    kdbgstream &operator<<(const char *);
-    kdbgstream &operator<<(const void *);
-    kdbgstream &operator<<(const QString &);
-    kdbgstream &operator<<(const QCString &);
-    kdbgstream &operator<<(KDBGFUNC);
+    kdbgstream &operator<<(int) { return *this; }
+    kdbgstream &operator<<(const char *) { return *this; }
+    kdbgstream &operator<<(const void *) { return *this; }
+    kdbgstream &operator<<(const QString &) { return *this; }
+    kdbgstream &operator<<(const QCString &) { return *this; }
+    kdbgstream &operator<<(KDBGFUNC) { return *this; }
 };
 
-inline kdbgstream &endl(kdbgstream &s) { s << "\n"; return s; }
+inline kdbgstream &endl(kdbgstream &s) { return s; }
 
-kdbgstream kdDebug(int area = 0);
-kdbgstream kdWarning(int area = 0);
-kdbgstream kdWarning(bool cond, int area = 0);
-kdbgstream kdError(int area = 0);
-kdbgstream kdError(bool cond, int area = 0);
-kdbgstream kdFatal(int area = 0);
-kdbgstream kdFatal(bool cond, int area = 0);
-QString kdBacktrace();
+inline kdbgstream kdDebug(int area = 0) { return kdbgstream(); }
+inline kdbgstream kdWarning(int area = 0) { return kdbgstream(); }
+inline kdbgstream kdWarning(bool cond, int area = 0) { return kdbgstream(); }
+inline kdbgstream kdError(int area = 0) { return kdbgstream(); }
+inline kdbgstream kdError(bool cond, int area = 0) { return kdbgstream(); }
+inline kdbgstream kdFatal(int area = 0) { return kdbgstream(); }
+inline kdbgstream kdFatal(bool cond, int area = 0) { return kdbgstream(); }
+inline QString kdBacktrace() { return QString(); }
 
 #endif
diff --git a/WebCore/kwq/KWQKDebug.mm b/WebCore/kwq/KWQKDebug.mm
deleted file mode 100644
index 0285af2..0000000
--- a/WebCore/kwq/KWQKDebug.mm
+++ /dev/null
@@ -1,117 +0,0 @@
-/*
- * Copyright (C) 2001 Apple Computer, Inc.  All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
- */
-
-#import <kdebug.h>
-
-    
-kdbgstream::kdbgstream(unsigned int area, unsigned int level, bool print)
-{
-}
-   
-
-kdbgstream &kdbgstream::operator<<(int)
-{
-    return *this;
-}
-
-
-kdbgstream &kdbgstream::operator<<(const char *)
-{
-    return *this;
-}
-
-
-kdbgstream &kdbgstream::operator<<(const void *)
-{
-    return *this;
-}
-
-
-kdbgstream &kdbgstream::operator<<(const QString &)
-{
-    return *this;
-}
-
-
-kdbgstream &kdbgstream::operator<<(const QCString &)
-{
-    return *this;
-}
-
-
-kdbgstream &kdbgstream::operator<<(KDBGFUNC)
-{
-    return *this;
-}
-
-
-
-
-kdbgstream kdDebug(int area)
-{
-    return kdbgstream(0,0);
-}
-
-
-kdbgstream kdWarning(int area)
-{
-    return kdbgstream(0,0);
-}
-
-
-kdbgstream kdWarning(bool cond, int area)
-{
-    return kdbgstream(0,0);
-}
-
-
-kdbgstream kdError(int area)
-{
-    return kdbgstream(0,0);
-}
-
-
-kdbgstream kdError(bool cond, int area)
-{
-    return kdbgstream(0,0);
-}
-
-
-kdbgstream kdFatal(int area)
-{
-    return kdbgstream(0,0);
-}
-
-
-kdbgstream kdFatal(bool cond, int area)
-{
-    return kdbgstream(0,0);
-}
-
-
-QString kdBacktrace()
-{
-    return QString();
-}
diff --git a/WebCore/kwq/KWQKImageIO.mm b/WebCore/kwq/KWQKImageIO.mm
deleted file mode 100644
index 80afb0c..0000000
--- a/WebCore/kwq/KWQKImageIO.mm
+++ /dev/null
@@ -1,36 +0,0 @@
-/*
- * Copyright (C) 2001, 2002 Apple Computer, Inc.  All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
- */
-
-#import <kimageio.h>
-#import <kwqdebug.h>
-
-QStringList KImageIO::mimeTypes(Mode)
-{
-    // FIXME: need real implementation
-    QStringList mimeList;
-    mimeList.append ( "image/gif" );
-    mimeList.append ( "image/jpeg" );
-    return mimeList;
-}
diff --git a/WebCore/kwq/KWQKLocale.mm b/WebCore/kwq/KWQKLocale.mm
index aa9bb9c..1368ed2 100644
--- a/WebCore/kwq/KWQKLocale.mm
+++ b/WebCore/kwq/KWQKLocale.mm
@@ -28,8 +28,8 @@
 
 QString i18n(const char* text)
 {
-    NSBundle *wkBundle = [NSBundle bundleWithIdentifier:@"com.apple.webkit"];
-    NSString *locString = [wkBundle localizedStringForKey:[NSString stringWithCString:text] value:nil table:nil];
+    NSBundle *bundle = [NSBundle bundleWithIdentifier:@"com.apple.WebCore"];
+    NSString *locString = [bundle localizedStringForKey:[NSString stringWithCString:text] value:nil table:nil];
     return NSSTRING_TO_QSTRING(locString);
 }
 
diff --git a/WebCore/kwq/KWQKStandardDirs.mm b/WebCore/kwq/KWQKStandardDirs.mm
index f5ffbec..83ca584 100644
--- a/WebCore/kwq/KWQKStandardDirs.mm
+++ b/WebCore/kwq/KWQKStandardDirs.mm
@@ -27,20 +27,11 @@
 
 QString locate(const char *type, const QString& filename, const KInstance* instance)
 {
-    NSString *file = [filename.getNSString() lastPathComponent];
-    
-    if ([file isEqualToString:@"html4.css"]) {
-        // FIXME: This logic needs to be in WebKit, not here.
-        NSBundle *wkBundle = [NSBundle bundleWithIdentifier:@"com.apple.webkit"];
-        return NSSTRING_TO_QSTRING([wkBundle pathForResource:@"html4" ofType:@"css"]);
-    } else {
-        // FIXME: This does no good.
-        return "/symroots/appdata/" + filename;
-    }
+    NSBundle *bundle = [NSBundle bundleWithIdentifier:@"com.apple.WebCore"];
+    return QString::fromNSString([bundle pathForResource:@"html4" ofType:@"css"]);
 }
 
 QString locateLocal(const char *type, const QString &filename, const KInstance *instance)
 {
-    // FIXME: This does no good.
-    return "/symroots/appdata/"+filename;
+    return QString();
 }
diff --git a/WebCore/kwq/KWQKstddirs.mm b/WebCore/kwq/KWQKstddirs.mm
index f5ffbec..83ca584 100644
--- a/WebCore/kwq/KWQKstddirs.mm
+++ b/WebCore/kwq/KWQKstddirs.mm
@@ -27,20 +27,11 @@
 
 QString locate(const char *type, const QString& filename, const KInstance* instance)
 {
-    NSString *file = [filename.getNSString() lastPathComponent];
-    
-    if ([file isEqualToString:@"html4.css"]) {
-        // FIXME: This logic needs to be in WebKit, not here.
-        NSBundle *wkBundle = [NSBundle bundleWithIdentifier:@"com.apple.webkit"];
-        return NSSTRING_TO_QSTRING([wkBundle pathForResource:@"html4" ofType:@"css"]);
-    } else {
-        // FIXME: This does no good.
-        return "/symroots/appdata/" + filename;
-    }
+    NSBundle *bundle = [NSBundle bundleWithIdentifier:@"com.apple.WebCore"];
+    return QString::fromNSString([bundle pathForResource:@"html4" ofType:@"css"]);
 }
 
 QString locateLocal(const char *type, const QString &filename, const KInstance *instance)
 {
-    // FIXME: This does no good.
-    return "/symroots/appdata/"+filename;
+    return QString();
 }
diff --git a/WebCore/kwq/KWQPixmap.h b/WebCore/kwq/KWQPixmap.h
index a4a8729..a08d6df 100644
--- a/WebCore/kwq/KWQPixmap.h
+++ b/WebCore/kwq/KWQPixmap.h
@@ -64,7 +64,7 @@ public:
     void resize(int, int);
 
     QPixmap xForm(const QWMatrix &) const;
-    QImage convertToImage() const;
+    QImage convertToImage() const { return QImage(); }
     
     bool mask() const;
 
diff --git a/WebCore/kwq/KWQPixmap.mm b/WebCore/kwq/KWQPixmap.mm
index d466045..05409db 100644
--- a/WebCore/kwq/KWQPixmap.mm
+++ b/WebCore/kwq/KWQPixmap.mm
@@ -25,7 +25,6 @@
 
 #import <qpixmap.h>
 #import <kwqdebug.h>
-#import <qbitmap.h>
 
 #import <WebCoreImageRenderer.h>
 #import <WebCoreImageRendererFactory.h>
@@ -38,24 +37,23 @@ QPixmap::QPixmap()
 
 QPixmap::QPixmap(const QSize &sz)
 {
-    imageRenderer = [[[WebCoreImageRendererFactory sharedFactory] imageRendererWithSize: NSMakeSize((float)sz.width(), (float)sz.height())] retain];
+    imageRenderer = [[[WebCoreImageRendererFactory sharedFactory] imageRendererWithSize:NSMakeSize(sz.width(), sz.height())] retain];
     needCopyOnWrite = false;
 }
 
 QPixmap::QPixmap(const QByteArray &bytes)
 {
-    imageRenderer = [[[WebCoreImageRendererFactory sharedFactory] imageRendererWithBytes: bytes.data() length: bytes.size()] retain];
+    imageRenderer = [[[WebCoreImageRendererFactory sharedFactory] imageRendererWithBytes:bytes.data() length:bytes.size()] retain];
     needCopyOnWrite = false;
 }
 
 QPixmap::QPixmap(int w, int h)
 {
-    imageRenderer = [[[WebCoreImageRendererFactory sharedFactory] imageRendererWithSize: NSMakeSize(w, h)] retain];
+    imageRenderer = [[[WebCoreImageRendererFactory sharedFactory] imageRendererWithSize:NSMakeSize(w, h)] retain];
     needCopyOnWrite = false;
 }
 
-QPixmap::QPixmap(const QPixmap &copyFrom)
-    : QPaintDevice(copyFrom)
+QPixmap::QPixmap(const QPixmap &copyFrom) : QPaintDevice(copyFrom)
 {
     imageRenderer = [copyFrom.imageRenderer retain];
     copyFrom.needCopyOnWrite = true;
@@ -73,7 +71,7 @@ bool QPixmap::receivedData(const QByteArray &bytes, bool isComplete)
     if (imageRenderer == nil) {
         imageRenderer = [[[WebCoreImageRendererFactory sharedFactory] imageRenderer] retain];
     }
-    return [imageRenderer incrementalLoadWithBytes: bytes.data() length: bytes.size() complete: isComplete];
+    return [imageRenderer incrementalLoadWithBytes:bytes.data() length:bytes.size() complete:isComplete];
 }
 
 bool QPixmap::mask() const
@@ -121,26 +119,20 @@ void QPixmap::resize(int w, int h)
         imageRenderer = newImageRenderer;
         needCopyOnWrite = false;
     }
-    [imageRenderer resize: NSMakeSize((float)w, (float)h)];
+    [imageRenderer resize:NSMakeSize(w, h)];
 }
 
 QPixmap QPixmap::xForm(const QWMatrix &xmatrix) const
 {
     // This function is only called when an image needs to be scaled.  
     // We can depend on render_image.cpp to call resize AFTER
-    // creating a copy of the image to be scaled.   So, this
-    // implementation simply returns a copy of the image.  Note,
+    // creating a copy of the image to be scaled. So, this
+    // implementation simply returns a copy of the image. Note,
     // this implementation depends on the implementation of
     // RenderImage::printObject.   
     return *this;
 }
 
-QImage QPixmap::convertToImage() const
-{
-    _logNotYetImplemented();
-    return QImage();
-}
-
 QPixmap &QPixmap::operator=(const QPixmap &assignFrom)
 {
     [assignFrom.imageRenderer retain];
@@ -151,9 +143,7 @@ QPixmap &QPixmap::operator=(const QPixmap &assignFrom)
     return *this;
 }
 
-
 void QPixmap::stopAnimations()
 {
     [imageRenderer stopAnimation];
 }
- 
\ No newline at end of file
diff --git a/WebCore/kwq/KWQScrollBar.h b/WebCore/kwq/KWQScrollBar.h
index 6be6ddd..534f9c0 100644
--- a/WebCore/kwq/KWQScrollBar.h
+++ b/WebCore/kwq/KWQScrollBar.h
@@ -23,8 +23,8 @@
  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
  */
 
-#ifndef KWQSCROLLVIEW_H_
-#define KWQSCROLLVIEW_H_
+#ifndef KWQSCROLLBAR_H_
+#define KWQSCROLLBAR_H_
 
 #include <qwidget.h>
 #include <qpalette.h>
diff --git a/WebCore/kwq/Makefile.am b/WebCore/kwq/Makefile.am
index 01b6d52..9a44228 100644
--- a/WebCore/kwq/Makefile.am
+++ b/WebCore/kwq/Makefile.am
@@ -1,129 +1,5 @@
 NULL =
 
-noinst_LIBRARIES = libkwq.o
-libkwq_o_ldflags = -Wl,-r -nostdlib
-libkwq_o_AR = $(OBJCXXLD) $(AM_OBJCXXFLAGS) $(OBJCXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) $(libkwq_o_ldflags) -o
-
-libkwq_o_SOURCES = \
-	KWQApplication.mm \
-	KWQArrayImpl.mm \
-	KWQBuffer.mm \
-	KWQButton.mm \
-	KWQCString.mm \
-	KWQChar.mm \
-	KWQCharsets.mm \
-	KWQCheckBox.mm \
-	KWQCollection.mm \
-	KWQColor.mm \
-	KWQColorGroup.mm \
-	KWQComboBox.mm \
-	KWQCompletion.mm \
-	KWQCursor.mm \
-	KWQDateTime.mm \
-	KWQDictImpl.mm \
-	KWQDrawUtil.mm \
-	KWQEvent.mm \
-	KWQFile.mm \
-	KWQFont.mm \
-	KWQFontInfo.mm \
-	KWQFontMetrics.mm \
-	KWQFrame.mm \
-	KWQGlobal.mm \
-	KWQGuardedPtr.mm \
-	KWQInvisibleButton.mm \
-	KWQPoint.mm \
-	KWQPtrDictImpl.mm \
-	KWQRect.mm \
-	KWQSize.mm \
-	KWQHBox.mm \
-	KWQInputDialog.mm \
-	KWQKCharsets.mm \
-	KWQKComboBox.mm \
-	KWQKConfigBase.mm \
-        KWQKCookieJar.mm \
-	KWQKCursor.mm \
-	KWQKDebug.mm \
-	KWQKFileDialog.mm \
-	KWQKFileItem.mm \
-	KWQKGlobal.mm \
-	KWQKGlobalSettings.mm \
-	KWQKHTMLFactory.mm \
-	KWQKHTMLPart.mm \
-	KWQKHTMLPartBrowserExtension.mm \
-	KWQKHTMLSettings.mm \
-	KWQKHTMLView.mm \
-	KWQKHistoryProvider.mm \
-	KWQKIconLoader.mm \
-	KWQKJavaAppletWidget.mm \
-	KWQKJob.mm \
-	KWQKLineEdit.mm \
-	KWQKLocale.mm \
-	KWQKMessageBox.mm \
-	KWQKMimeType.mm \
-	KWQKPartsEvent.mm \
-	KWQKPrinter.mm \
-	KWQKProtocolManager.mm \
-	KWQKSimpleConfig.mm \
-	KWQKStringHandler.mm \
-	KWQKURL.mm \
-	KWQKWin.mm \
-	KWQKWinModule.mm \
-	KWQKjobclasses.mm \
-	KWQKloader.mm \
-	KWQKnetaccess.mm \
-	KWQKstddirs.mm \
-	KWQLabel.mm \
-	KWQLineEdit.mm \
-	KWQListBox.mm \
-	KWQListImpl.mm \
-	KWQMapImpl.mm \
-	KWQMovie.mm \
-	KWQNSTextField.mm \
-	KWQObject.mm \
-	KWQPaintDeviceMetrics.mm \
-	KWQPainter.mm \
-	KWQPalette.mm \
-	KWQPen.mm \
-	KWQPixmap.mm \
-	KWQPointArray.mm \
-	KWQPushButton.mm \
-	KWQRadioButton.mm \
-	KWQRegExp.mm \
-	KWQRegion.mm \
-	KWQScrollView.mm \
-	KWQString.mm \
-	KWQStringList.mm \
-	KWQStyleSheet.mm \
-	KWQTextArea.mm \
-	KWQTextEdit.mm \
-	KWQTimer.mm \
-	KWQValueListImpl.mm \
-	KWQVariant.mm \
-	KWQVectorImpl.mm \
-	KWQView.mm \
-	KWQWMatrix.mm \
-	KWQWidget.mm \
-	KWQWindowWidget.mm \
-	KWQbrowserinterface.mm \
-	KWQsignals.mm \
-	KWQtextcodec.mm \
-	KWQtextstream.mm \
-	KWQxml.mm \
-	kwqdebug.mm \
-	WebCoreBridge.mm \
-        WebCoreCookieAdapter.m \
-	WebCoreImageRendererFactory.m \
-	WebCoreTextRendererFactory.m \
-	WebCoreViewFactory.m \
-	$(NULL)
-
-INCLUDES = \
-	$(KWQ_INCLUDES) \
-	$(KDELIBS_INCLUDES) \
-	$(WEBCORE_INCLUDES) \
-	-F$(SYMROOTS) \
-	$(NULL)
-
 noinst_PROGRAMS = make-mac-encodings
 make_mac_encodings_SOURCES = make-mac-encodings.c
 make_mac_encodings_LDFLAGS = -framework CoreFoundation
diff --git a/WebCore/kwq/kdecore/.cvsignore b/WebCore/kwq/kdecore/.cvsignore
deleted file mode 100644
index e69de29..0000000
diff --git a/WebCore/kwq/kdecore/kcmdlineargs.h b/WebCore/kwq/kdecore/kcmdlineargs.h
index 1fc1f1d..e69de29 100644
--- a/WebCore/kwq/kdecore/kcmdlineargs.h
+++ b/WebCore/kwq/kdecore/kcmdlineargs.h
@@ -1,33 +0,0 @@
-/*
- * Copyright (C) 2001 Apple Computer, Inc.  All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
- */
-
-#ifndef KCMDLINEARGS_H_
-#define KCMDLINEARGS_H_
-
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
-#endif
diff --git a/WebCore/kwq/kdecore/kdebug.h b/WebCore/kwq/kdecore/kdebug.h
index 7fb5bf9..272b50e 100644
--- a/WebCore/kwq/kdecore/kdebug.h
+++ b/WebCore/kwq/kdecore/kdebug.h
@@ -35,25 +35,25 @@ typedef kdbgstream & (*KDBGFUNC)(kdbgstream &);
 
 class kdbgstream {
 public:
-    kdbgstream(unsigned int area, unsigned int level, bool print=true);
+    kdbgstream(unsigned int area = 0, unsigned int level = 0, bool print = true) { }
     
-    kdbgstream &operator<<(int);
-    kdbgstream &operator<<(const char *);
-    kdbgstream &operator<<(const void *);
-    kdbgstream &operator<<(const QString &);
-    kdbgstream &operator<<(const QCString &);
-    kdbgstream &operator<<(KDBGFUNC);
+    kdbgstream &operator<<(int) { return *this; }
+    kdbgstream &operator<<(const char *) { return *this; }
+    kdbgstream &operator<<(const void *) { return *this; }
+    kdbgstream &operator<<(const QString &) { return *this; }
+    kdbgstream &operator<<(const QCString &) { return *this; }
+    kdbgstream &operator<<(KDBGFUNC) { return *this; }
 };
 
-inline kdbgstream &endl(kdbgstream &s) { s << "\n"; return s; }
+inline kdbgstream &endl(kdbgstream &s) { return s; }
 
-kdbgstream kdDebug(int area = 0);
-kdbgstream kdWarning(int area = 0);
-kdbgstream kdWarning(bool cond, int area = 0);
-kdbgstream kdError(int area = 0);
-kdbgstream kdError(bool cond, int area = 0);
-kdbgstream kdFatal(int area = 0);
-kdbgstream kdFatal(bool cond, int area = 0);
-QString kdBacktrace();
+inline kdbgstream kdDebug(int area = 0) { return kdbgstream(); }
+inline kdbgstream kdWarning(int area = 0) { return kdbgstream(); }
+inline kdbgstream kdWarning(bool cond, int area = 0) { return kdbgstream(); }
+inline kdbgstream kdError(int area = 0) { return kdbgstream(); }
+inline kdbgstream kdError(bool cond, int area = 0) { return kdbgstream(); }
+inline kdbgstream kdFatal(int area = 0) { return kdbgstream(); }
+inline kdbgstream kdFatal(bool cond, int area = 0) { return kdbgstream(); }
+inline QString kdBacktrace() { return QString(); }
 
 #endif
diff --git a/WebCore/kwq/kjs/collector.h b/WebCore/kwq/kjs/collector.h
new file mode 100644
index 0000000..faa8e1d
--- /dev/null
+++ b/WebCore/kwq/kjs/collector.h
@@ -0,0 +1 @@
+#include <JavaScriptCore/collector.h>
diff --git a/WebCore/kwq/kjs/internal.h b/WebCore/kwq/kjs/internal.h
new file mode 100644
index 0000000..85a04e2
--- /dev/null
+++ b/WebCore/kwq/kjs/internal.h
@@ -0,0 +1 @@
+#include <JavaScriptCore/internal.h>
diff --git a/WebCore/kwq/kjs/interpreter.h b/WebCore/kwq/kjs/interpreter.h
new file mode 100644
index 0000000..39a2788
--- /dev/null
+++ b/WebCore/kwq/kjs/interpreter.h
@@ -0,0 +1 @@
+#include <JavaScriptCore/interpreter.h>
diff --git a/WebCore/kwq/kjs/lookup.h b/WebCore/kwq/kjs/lookup.h
new file mode 100644
index 0000000..6e65272
--- /dev/null
+++ b/WebCore/kwq/kjs/lookup.h
@@ -0,0 +1 @@
+#include <JavaScriptCore/lookup.h>
diff --git a/WebCore/kwq/kjs/object.h b/WebCore/kwq/kjs/object.h
new file mode 100644
index 0000000..ab82bcd
--- /dev/null
+++ b/WebCore/kwq/kjs/object.h
@@ -0,0 +1 @@
+#include <JavaScriptCore/object.h>
diff --git a/WebCore/kwq/qt/.cvsignore b/WebCore/kwq/qt/.cvsignore
deleted file mode 100644
index dc4caac..0000000
--- a/WebCore/kwq/qt/.cvsignore
+++ /dev/null
@@ -1,6 +0,0 @@
-Makefile.in
-Makefile
-.deps
-.libs
-*.lo
-*.la
diff --git a/WebCore/kwq/qt/qpixmap.h b/WebCore/kwq/qt/qpixmap.h
index a4a8729..a08d6df 100644
--- a/WebCore/kwq/qt/qpixmap.h
+++ b/WebCore/kwq/qt/qpixmap.h
@@ -64,7 +64,7 @@ public:
     void resize(int, int);
 
     QPixmap xForm(const QWMatrix &) const;
-    QImage convertToImage() const;
+    QImage convertToImage() const { return QImage(); }
     
     bool mask() const;
 
diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index 1bf3af0..b16c7e2 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,3 +1,15 @@
+2002-07-12  Darin Adler  <darin at apple.com>
+
+        * WebKit.pbproj/project.pbxproj: Don't include the html4.css file
+	from WebCore any more. WebCore handles this on its own now. Also,
+	don't include the document templates; we don't use them any more.
+
+        * Resources/image_document_template.html: Removed.
+        * Resources/plugin_document_template.html: Removed.
+        * Resources/text_document_template.html: Removed.
+
+        * Makefile.am: Small tweak to the force-clean-timestamp logic.
+
 2002-07-11  Chris Blumenberg  <cblu at apple.com>
 
 Fix for:
diff --git a/WebKit/ChangeLog-2002-12-03 b/WebKit/ChangeLog-2002-12-03
index 1bf3af0..b16c7e2 100644
--- a/WebKit/ChangeLog-2002-12-03
+++ b/WebKit/ChangeLog-2002-12-03
@@ -1,3 +1,15 @@
+2002-07-12  Darin Adler  <darin at apple.com>
+
+        * WebKit.pbproj/project.pbxproj: Don't include the html4.css file
+	from WebCore any more. WebCore handles this on its own now. Also,
+	don't include the document templates; we don't use them any more.
+
+        * Resources/image_document_template.html: Removed.
+        * Resources/plugin_document_template.html: Removed.
+        * Resources/text_document_template.html: Removed.
+
+        * Makefile.am: Small tweak to the force-clean-timestamp logic.
+
 2002-07-11  Chris Blumenberg  <cblu at apple.com>
 
 Fix for:
diff --git a/WebKit/Makefile.am b/WebKit/Makefile.am
index 1be812e..c144429 100644
--- a/WebKit/Makefile.am
+++ b/WebKit/Makefile.am
@@ -4,7 +4,7 @@ clean-am:
 	pbxbuild clean
 
 previous-clean-timestamp: force-clean-timestamp
-	pbxbuild clean && touch $@
+	make clean && touch $@
 
 FRAMEWORK_NAME = WebKit
 include $(top_srcdir)/embed.am
diff --git a/WebKit/Resources/image_document_template.html b/WebKit/Resources/image_document_template.html
deleted file mode 100644
index 5b3c29b..0000000
--- a/WebKit/Resources/image_document_template.html
+++ /dev/null
@@ -1,9 +0,0 @@
-<html>
-<head>
-<style type="text/css">
- at media print { body { display: block; margin: 2cm; } }
- at media screen { body { display: block; margin: 0px; } }
-</style>
-</head>
-<body><img src="%@"></body>
-</html>
diff --git a/WebKit/Resources/plugin_document_template.html b/WebKit/Resources/plugin_document_template.html
deleted file mode 100644
index 26c4389..0000000
--- a/WebKit/Resources/plugin_document_template.html
+++ /dev/null
@@ -1,9 +0,0 @@
-<html>
-<head>
-<style type="text/css">
- at media print { body { display: block; margin: 2cm; } }
- at media screen { body { display: block; margin: 0px; } }
-</style>
-</head>
-<body><center><embed src="%@" type="%@" width=100%% height=100%% wkfullmode></center></body>
-</html>
diff --git a/WebKit/Resources/text_document_template.html b/WebKit/Resources/text_document_template.html
deleted file mode 100644
index 360473f..0000000
--- a/WebKit/Resources/text_document_template.html
+++ /dev/null
@@ -1,3 +0,0 @@
-<html>
-<body>
-<pre>
\ No newline at end of file
diff --git a/WebKit/WebKit.pbproj/project.pbxproj b/WebKit/WebKit.pbproj/project.pbxproj
index d554c80..79143b5 100644
--- a/WebKit/WebKit.pbproj/project.pbxproj
+++ b/WebKit/WebKit.pbproj/project.pbxproj
@@ -123,7 +123,6 @@
 				0867D69EFE84028FC02AAC07,
 				0867D69FFE84028FC02AAC07,
 				0867D6A0FE84028FC02AAC07,
-				0867D6A2FE84028FC02AAC07,
 				255AF6590250FC030ECA149E,
 			);
 			buildSettings = {
@@ -134,6 +133,7 @@
 				DYLIB_CURRENT_VERSION = 1;
 				FRAMEWORK_SEARCH_PATHS = "\"$(SYSTEM_LIBRARY_DIR)/Frameworks/ApplicationServices.framework/Frameworks\" \"$(SYSTEM_LIBRARY_DIR)/Frameworks/Carbon.framework/Frameworks\"";
 				FRAMEWORK_VERSION = A;
+				GCC_TREAT_WARNINGS_AS_ERRORS = YES;
 				HEADER_SEARCH_PATHS = ".. ../JavaScriptCore ../WebCore/khtml ../WebCore/kwq ../WebCore/kwq/kdecore ../WebCore/kwq/khtml ../WebCore/kwq/kparts ../WebCore/kwq/qt";
 				INSTALL_PATH = "";
 				LIBRARY_SEARCH_PATHS = "";
@@ -267,13 +267,9 @@
 			buildActionMask = 2147483647;
 			files = (
 				089C1668FE841158C02AAC07,
-				35F3577501986B740ACA1520,
 				35F357800198AAB80ACA1520,
 				F5B67131023EDF8901C1A525,
-				25B2A7C5025D0A880ECA149E,
 				F5883BDF025E5C6A01000102,
-				F5E638640265FC0D01000102,
-				F5E638650265FC0D01000102,
 				F599A818028C6D0D0124FDD6,
 				F8CA15C0029A39FC01000122,
 			);
@@ -351,31 +347,19 @@
 				F5C287BB02846DCD018635CA,
 				F5C287BC02846DCD018635CA,
 				F5C287BD02846DCD018635CA,
-				F82162D7029F4FB501000131,
 				F82162D8029F4FB501000131,
 				F82162D9029F4FB501000131,
 			);
 			isa = PBXFrameworksBuildPhase;
 			runOnlyForDeploymentPostprocessing = 0;
 		};
-		0867D6A2FE84028FC02AAC07 = {
-			buildActionMask = 2147483647;
-			files = (
-			);
-			isa = PBXRezBuildPhase;
-			runOnlyForDeploymentPostprocessing = 0;
-		};
 		089C1665FE841158C02AAC07 = {
 			children = (
 				35F3577E0198AAB80ACA1520,
 				089C1666FE841158C02AAC07,
-				35F3577401986B740ACA1520,
 				F599A817028C6D0D0124FDD6,
 				F5B67130023EDF8901C1A525,
 				F5883BDE025E5C6A01000102,
-				25B2A7C4025D0A880ECA149E,
-				F5E638620265FC0D01000102,
-				F5E638630265FC0D01000102,
 			);
 			isa = PBXGroup;
 			name = Resources;
@@ -512,18 +496,6 @@
 			path = History.subproj;
 			refType = 4;
 		};
-		25B2A7C4025D0A880ECA149E = {
-			isa = PBXFileReference;
-			name = image_document_template.html;
-			path = Resources/image_document_template.html;
-			refType = 4;
-		};
-		25B2A7C5025D0A880ECA149E = {
-			fileRef = 25B2A7C4025D0A880ECA149E;
-			isa = PBXBuildFile;
-			settings = {
-			};
-		};
 		25C29825016E29620ECA149E = {
 			isa = PBXFileReference;
 			name = WebKitReallyPrivate.h;
@@ -729,18 +701,6 @@
 			settings = {
 			};
 		};
-		35F3577401986B740ACA1520 = {
-			isa = PBXFileReference;
-			name = html4.css;
-			path = ../WebCore/khtml/css/html4.css;
-			refType = 2;
-		};
-		35F3577501986B740ACA1520 = {
-			fileRef = 35F3577401986B740ACA1520;
-			isa = PBXBuildFile;
-			settings = {
-			};
-		};
 		35F3577E0198AAB80ACA1520 = {
 			children = (
 				35F3577F0198AAB80ACA1520,
@@ -2053,30 +2013,6 @@
 			settings = {
 			};
 		};
-		F5E638620265FC0D01000102 = {
-			isa = PBXFileReference;
-			name = plugin_document_template.html;
-			path = Resources/plugin_document_template.html;
-			refType = 4;
-		};
-		F5E638630265FC0D01000102 = {
-			isa = PBXFileReference;
-			name = text_document_template.html;
-			path = Resources/text_document_template.html;
-			refType = 4;
-		};
-		F5E638640265FC0D01000102 = {
-			fileRef = F5E638620265FC0D01000102;
-			isa = PBXBuildFile;
-			settings = {
-			};
-		};
-		F5E638650265FC0D01000102 = {
-			fileRef = F5E638630265FC0D01000102;
-			isa = PBXBuildFile;
-			settings = {
-			};
-		};
 		F5EBC45202134BB601CA1520 = {
 			children = (
 				F5EBC45502134BC301CA1520,
@@ -2329,12 +2265,6 @@
 			path = WebFoundation.framework;
 			refType = 3;
 		};
-		F82162D7029F4FB501000131 = {
-			fileRef = F8216299029F4FB501000131;
-			isa = PBXBuildFile;
-			settings = {
-			};
-		};
 		F82162D8029F4FB501000131 = {
 			fileRef = F821629A029F4FB501000131;
 			isa = PBXBuildFile;

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list