Changeset 53284 in webkit


Ignore:
Timestamp:
Jan 14, 2010 11:57:14 AM (14 years ago)
Author:
eric@webkit.org
Message:

2010-01-14 Kwang Yul Seo <skyul@company100.net>

Reviewed by Alexey Proskuryakov.

Add ENABLE(XSLT) guard to TransformSourceLibxslt.cpp
https://bugs.webkit.org/show_bug.cgi?id=33665

TransformSource is available only when ENABLE(XSLT) guard is true.

  • dom/TransformSourceLibxslt.cpp:
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r53277 r53284  
     12010-01-14  Kwang Yul Seo  <skyul@company100.net>
     2
     3        Reviewed by Alexey Proskuryakov.
     4
     5        Add ENABLE(XSLT) guard to TransformSourceLibxslt.cpp
     6        https://bugs.webkit.org/show_bug.cgi?id=33665
     7
     8        TransformSource is available only when ENABLE(XSLT) guard is true.
     9
     10        * dom/TransformSourceLibxslt.cpp:
     11
    1122010-01-14  Adam Roben  <aroben@apple.com>
    213
  • trunk/WebCore/dom/TransformSourceLibxslt.cpp

    r48826 r53284  
    2525
    2626#include "config.h"
     27
     28#if ENABLE(XSLT)
    2729#include "TransformSource.h"
    2830
     
    4244
    4345}
     46
     47#endif
Note: See TracChangeset for help on using the changeset viewer.