Changeset 77164 in webkit


Ignore:
Timestamp:
Jan 31, 2011 2:59:13 PM (13 years ago)
Author:
beidson@apple.com
Message:

Fix the clean Windows build.

Reviewed by Adam Roben.

  • WebKitGraphics.cpp:

(WebDrawText):

Location:
trunk/Source/WebKit/win
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/win/ChangeLog

    r77055 r77164  
     12011-01-31  Brady Eidson  <beidson@apple.com>
     2
     3        Reviewed by Adam Roben.
     4
     5        Fix the clean Windows build.
     6
     7        * WebKitGraphics.cpp:
     8        (WebDrawText):
     9
    1102011-01-28  Jon Honeycutt  <jhoneycutt@apple.com>
    211
  • trunk/Source/WebKit/win/WebKitGraphics.cpp

    r76442 r77164  
    3333
    3434#pragma warning(push, 0)
    35 #include <WebCore/CharacterNames.h>
    3635#include <WebCore/Font.h>
    3736#include <WebCore/FontDescription.h>
     
    4140#include <WebCore/StringTruncator.h>
    4241#include <WebCore/WebCoreTextRenderer.h>
     42#include <wtf/unicode/CharacterNames.h>
    4343
    4444#include <CoreGraphics/CoreGraphics.h>
     
    106106        String drawString(info->text, info->length);
    107107        if (info->drawAsPassword)
    108             drawString = drawString.impl()->secure(WebCore::bullet);
     108            drawString = drawString.impl()->secure(WTF::Unicode::bullet);
    109109
    110110        context.save();
Note: See TracChangeset for help on using the changeset viewer.