Changeset 42688
- Timestamp:
- 04/20/09 15:32:24 (11 months ago)
- Location:
- trunk/WebCore
- Files:
-
- 2 modified
-
ChangeLog (modified) (1 diff)
-
platform/graphics/SimpleFontData.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/WebCore/ChangeLog
r42687 r42688 1 2009-04-20 Brady Eidson <beidson@apple.com> 2 3 Rubberstamped by Mark Rowe 4 5 Clean builds are broken on case-sensitive filesystems. Let's fix, shall we? 6 7 * platform/graphics/SimpleFontData.cpp: Remove "String.h" include. Ojan probably intended to include 8 "PlatformString.h" which was unnecessary because it is pulled in through other headers. This wasn't a 9 build failure on case-insensitive file systems because those systems would find the system <string.h>, averting 10 the warning. 11 1 12 2009-04-20 Geoffrey Garen <ggaren@apple.com> 2 13 -
trunk/WebCore/platform/graphics/SimpleFontData.cpp
r42678 r42688 33 33 #include "Font.h" 34 34 #include "FontCache.h" 35 35 36 #if ENABLE(SVG_FONTS) 36 37 #include "SVGFontData.h" … … 38 39 #include "SVGFontFaceElement.h" 39 40 #include "SVGGlyphElement.h" 40 #include "String.h"41 42 41 #endif 43 42