diff options
Diffstat (limited to 'WebCore/bindings/js/JSSQLResultSetRowListCustom.cpp')
-rw-r--r-- | WebCore/bindings/js/JSSQLResultSetRowListCustom.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/WebCore/bindings/js/JSSQLResultSetRowListCustom.cpp b/WebCore/bindings/js/JSSQLResultSetRowListCustom.cpp index f40956e..0039a05 100644 --- a/WebCore/bindings/js/JSSQLResultSetRowListCustom.cpp +++ b/WebCore/bindings/js/JSSQLResultSetRowListCustom.cpp @@ -74,7 +74,7 @@ JSValue JSSQLResultSetRowList::item(ExecState* exec, const ArgList& args) ASSERT_NOT_REACHED(); } - object->putDirect(Identifier(exec, m_impl->columnNames()[i]), jsValue, DontDelete | ReadOnly); + object->putDirect(Identifier(exec, stringToUString(m_impl->columnNames()[i])), jsValue, DontDelete | ReadOnly); } return object; |