Changeset 28003 in webkit


Ignore:
Timestamp:
Nov 24, 2007, 3:32:48 PM (18 years ago)
Author:
Adam Roben
Message:

Windows build fix

Turn off the change made in r27984 on Windows for now.

  • xml/XSLTProcessor.cpp: (WebCore::XSLTProcessor::transformToString):
  • xml/XSLTUnicodeSort.cpp:
Location:
trunk/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r28002 r28003  
     12007-11-24  Adam Roben  <aroben@apple.com>
     2
     3        Windows build fix
     4
     5        Turn off the change made in r27984 on Windows for now.
     6
     7        * xml/XSLTProcessor.cpp:
     8        (WebCore::XSLTProcessor::transformToString):
     9        * xml/XSLTUnicodeSort.cpp:
     10
    1112007-11-24  Timothy Hatcher  <timothy@apple.com>
    212
  • trunk/WebCore/xml/XSLTProcessor.cpp

    r27984 r28003  
    352352        xsltTransformContextPtr transformContext = xsltNewTransformContext(sheet, sourceDoc);
    353353        registerXSLTExtensions(transformContext);
    354 #if USE(ICU_UNICODE)
     354// FIXME: <rdar://5611712> Remove the PLATFORM(WIN) check once ICU on Windows has collation support.
     355#if USE(ICU_UNICODE) && !PLATFORM(WIN)
    355356        // <http://bugs.webkit.org/show_bug.cgi?id=16077>: XSLT processor <xsl:sort> algorithm only compares by code point
    356357        // Only implemented for ICU yet.
  • trunk/WebCore/xml/XSLTUnicodeSort.cpp

    r27987 r28003  
    3030#include "XSLTUnicodeSort.h"
    3131
    32 #if ENABLE(XSLT) && USE(ICU_UNICODE)
     32// FIXME: <rdar://5611712> Remove the PLATFORM(WIN) check once ICU on Windows has collation support.
     33#if ENABLE(XSLT) && USE(ICU_UNICODE) && !PLATFORM(WIN)
    3334
    3435#include <libxslt/templates.h>
Note: See TracChangeset for help on using the changeset viewer.