diff options
Diffstat (limited to 'WebCore/bindings/js/ScriptCallFrame.cpp')
-rw-r--r-- | WebCore/bindings/js/ScriptCallFrame.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/WebCore/bindings/js/ScriptCallFrame.cpp b/WebCore/bindings/js/ScriptCallFrame.cpp index 09752d1..19ed1ea 100644 --- a/WebCore/bindings/js/ScriptCallFrame.cpp +++ b/WebCore/bindings/js/ScriptCallFrame.cpp @@ -40,7 +40,7 @@ namespace WebCore { ScriptCallFrame::ScriptCallFrame(const UString& functionName, const UString& urlString, int lineNumber, const ArgList& args, unsigned skipArgumentCount) : m_functionName(functionName) - , m_sourceURL(ParsedURLString, urlString) + , m_sourceURL(ParsedURLString, ustringToString(urlString)) , m_lineNumber(lineNumber) { size_t argumentCount = args.size(); |