Changeset 42688

Show
Ignore:
Timestamp:
04/20/09 15:32:24 (11 months ago)
Author:
beidson@apple.com
Message:

2009-04-20 Brady Eidson < beidson@apple.com>

Rubberstamped by Mark Rowe

Clean builds are broken on case-sensitive filesystems. Let's fix, shall we?

  • platform/graphics/SimpleFontData.cpp: Remove "String.h" include. Ojan probably intended to include "PlatformString.h" which was unnecessary because it is pulled in through other headers. This wasn't a build failure on case-insensitive file systems because those systems would find the system <string.h>, averting the warning.
Location:
trunk/WebCore
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r42687 r42688  
     12009-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 
    1122009-04-20  Geoffrey Garen  <ggaren@apple.com> 
    213 
  • trunk/WebCore/platform/graphics/SimpleFontData.cpp

    r42678 r42688  
    3333#include "Font.h" 
    3434#include "FontCache.h" 
     35 
    3536#if ENABLE(SVG_FONTS) 
    3637#include "SVGFontData.h" 
     
    3839#include "SVGFontFaceElement.h" 
    3940#include "SVGGlyphElement.h" 
    40 #include "String.h" 
    41  
    4241#endif 
    4342