diff --git a/JavaScriptCore/ChangeLog b/JavaScriptCore/ChangeLog index ba4da4e78ac4b53e0e4c86a83e96d8ee4cc7da9e..d6b8b25dbf79c46176e6447b747d0f909798db5e 100644 --- a/JavaScriptCore/ChangeLog +++ b/JavaScriptCore/ChangeLog @@ -1,3 +1,9 @@ +2002-12-17 Darin Adler + + Reviewed by Trey. + + * JavaScriptCore.pbproj/project.pbxproj: Removed signature. + === Alexander-39 === === Alexander-38 === diff --git a/JavaScriptCore/ChangeLog-2003-10-25 b/JavaScriptCore/ChangeLog-2003-10-25 index ba4da4e78ac4b53e0e4c86a83e96d8ee4cc7da9e..d6b8b25dbf79c46176e6447b747d0f909798db5e 100644 --- a/JavaScriptCore/ChangeLog-2003-10-25 +++ b/JavaScriptCore/ChangeLog-2003-10-25 @@ -1,3 +1,9 @@ +2002-12-17 Darin Adler + + Reviewed by Trey. + + * JavaScriptCore.pbproj/project.pbxproj: Removed signature. + === Alexander-39 === === Alexander-38 === diff --git a/JavaScriptCore/JavaScriptCore.pbproj/project.pbxproj b/JavaScriptCore/JavaScriptCore.pbproj/project.pbxproj index c39f5ba03fa2e7c07244be04853b4f81300dcc89..8caaa69179792d99d295b31507b6f7ea5be94038 100644 --- a/JavaScriptCore/JavaScriptCore.pbproj/project.pbxproj +++ b/JavaScriptCore/JavaScriptCore.pbproj/project.pbxproj @@ -166,8 +166,6 @@ FMWK CFBundleShortVersionString 0.8 - CFBundleSignature - ???? CFBundleVersion 39 CFHumanReadableCopyright diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25 index 99427cfa3ba2ce98c56224d26906a5dd717e4fc9..090c1561eb3f86454c367d69403f9df0b05db9b7 100644 --- a/WebCore/ChangeLog-2003-10-25 +++ b/WebCore/ChangeLog-2003-10-25 @@ -1,3 +1,11 @@ +2002-12-17 Darin Adler + + Reviewed by Trey. + + * WebCore.pbproj/project.pbxproj: Remove signature. + * kwq/KWQColor.mm: Turn off inlining so we can build even on the + compiler that warns about static data in inline functions. + 2002-12-17 Maciej Stachowiak Reviewed by John. diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23 index 99427cfa3ba2ce98c56224d26906a5dd717e4fc9..090c1561eb3f86454c367d69403f9df0b05db9b7 100644 --- a/WebCore/ChangeLog-2005-08-23 +++ b/WebCore/ChangeLog-2005-08-23 @@ -1,3 +1,11 @@ +2002-12-17 Darin Adler + + Reviewed by Trey. + + * WebCore.pbproj/project.pbxproj: Remove signature. + * kwq/KWQColor.mm: Turn off inlining so we can build even on the + compiler that warns about static data in inline functions. + 2002-12-17 Maciej Stachowiak Reviewed by John. diff --git a/WebCore/WebCore.pbproj/project.pbxproj b/WebCore/WebCore.pbproj/project.pbxproj index 22aaaf170b2dd503b4ba0dcdcf8033fb95dbd5fe..54d9b1f3c46236d3a9510b26066d1f029af29f3a 100644 --- a/WebCore/WebCore.pbproj/project.pbxproj +++ b/WebCore/WebCore.pbproj/project.pbxproj @@ -168,8 +168,6 @@ 6.0 CFBundlePackageType FMWK - CFBundleSignature - webc CFBundleVersion 39 NSPrincipalClass diff --git a/WebCore/kwq/KWQColor.mm b/WebCore/kwq/KWQColor.mm index 8aa7db95cfe6853f2d3484746dba4883666d375c..fe93ecbf4e4f15acf5add74b92f83127b2825743 100644 --- a/WebCore/kwq/KWQColor.mm +++ b/WebCore/kwq/KWQColor.mm @@ -29,7 +29,11 @@ #import "KWQString.h" #import "KWQAssertions.h" +// Turn off inlining to avoid warning with newer gcc. +#undef __inline +#define __inline #import "KWQColorData.c" +#undef __inline const QColor Qt::black (0x00, 0x00, 0x00); const QColor Qt::white (0xFF, 0xFF, 0xFF); diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog index 506d09603ce0694a8897ca72488742af50d55762..ac84732e1d7f0660ac3d349f5b2bfd53797cbd29 100644 --- a/WebKit/ChangeLog +++ b/WebKit/ChangeLog @@ -1,3 +1,11 @@ +2002-12-17 Darin Adler + + Reviewed by Trey. + + * WebKit.pbproj/project.pbxproj: Remove signature. + * WebView.subproj/WebController.m: Turn off inlining so we can build even on the + compiler that warns about static data in inline functions. + 2002-12-17 John Sullivan - fixed 2895826 -- ICON: Need a "no plug-in" icon diff --git a/WebKit/WebKit.pbproj/project.pbxproj b/WebKit/WebKit.pbproj/project.pbxproj index bfdaa8e3a75bd8c8ce84fb13f186d8e9fade1c52..2791a2a2a23cfb7014deafbbd58d3f26f5b36ea7 100644 --- a/WebKit/WebKit.pbproj/project.pbxproj +++ b/WebKit/WebKit.pbproj/project.pbxproj @@ -175,8 +175,6 @@ 6.0 CFBundlePackageType FMWK - CFBundleSignature - webk CFBundleVersion 39 NSPrincipalClass diff --git a/WebKit/WebView.subproj/WebController.m b/WebKit/WebView.subproj/WebController.m index 28e0b10076774b98cca0b7fc67c2c7c3b6ee44fb..174b5aed717e05ab87754c90dc2c8b164c187533 100644 --- a/WebKit/WebView.subproj/WebController.m +++ b/WebKit/WebView.subproj/WebController.m @@ -32,7 +32,11 @@ const struct UserAgentSpoofTableEntry *_web_findSpoofTableEntry(const char *, unsigned); +// Turn off inlining to avoid warning with newer gcc. +#undef __inline +#define __inline #include "WebUserAgentSpoofTable.c" +#undef __inline NSString *WebElementFrameKey = @"WebElementFrame"; NSString *WebElementImageKey = @"WebElementImage"; diff --git a/WebKit/WebView.subproj/WebView.m b/WebKit/WebView.subproj/WebView.m index 28e0b10076774b98cca0b7fc67c2c7c3b6ee44fb..174b5aed717e05ab87754c90dc2c8b164c187533 100644 --- a/WebKit/WebView.subproj/WebView.m +++ b/WebKit/WebView.subproj/WebView.m @@ -32,7 +32,11 @@ const struct UserAgentSpoofTableEntry *_web_findSpoofTableEntry(const char *, unsigned); +// Turn off inlining to avoid warning with newer gcc. +#undef __inline +#define __inline #include "WebUserAgentSpoofTable.c" +#undef __inline NSString *WebElementFrameKey = @"WebElementFrame"; NSString *WebElementImageKey = @"WebElementImage";