| Index: Source/core/dom/TransformSourceLibxslt.cpp
|
| diff --git a/Source/core/dom/TransformSourceLibxslt.cpp b/Source/core/dom/TransformSourceLibxslt.cpp
|
| index 6d80a281ac9b09b7333a55680ff8c3f9b5d5bbba..b64525000e844d346364720d2470d1da893f05cf 100644
|
| --- a/Source/core/dom/TransformSourceLibxslt.cpp
|
| +++ b/Source/core/dom/TransformSourceLibxslt.cpp
|
| @@ -31,14 +31,14 @@
|
|
|
| namespace WebCore {
|
|
|
| -TransformSource::TransformSource(const PlatformTransformSource& source)
|
| +TransformSource::TransformSource(xmlDocPtr source)
|
| : m_source(source)
|
| {
|
| }
|
|
|
| TransformSource::~TransformSource()
|
| {
|
| - xmlFreeDoc((xmlDocPtr)m_source);
|
| + xmlFreeDoc(m_source);
|
| }
|
|
|
| } // namespace WebCore
|
|
|