diff options
author | Caolán McNamara <caolanm@redhat.com> | 2010-10-30 21:46:00 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2010-10-30 21:46:00 +0100 |
commit | 98f3528a457bf8bd0e1fd5f83bfd7235be13b3d0 (patch) | |
tree | 1acd05bdce1ed7a642cd2fe35b27a0874144328c | |
parent | 52e672dbfa8e34b3929783267df56282d514e058 (diff) |
fix my own cockupLIBREOFFICE_3_3_FREEZEfeature/rodatastrings
-rw-r--r-- | dbaccess/source/core/api/KeySet.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dbaccess/source/core/api/KeySet.cxx b/dbaccess/source/core/api/KeySet.cxx index 685ca7a57..17ec5dfac 100644 --- a/dbaccess/source/core/api/KeySet.cxx +++ b/dbaccess/source/core/api/KeySet.cxx @@ -396,7 +396,7 @@ Sequence< sal_Int32 > SAL_CALL OKeySet::deleteRows( const Sequence< Any >& rows Reference<XPropertySet> xSet(_xTable,UNO_QUERY); fillTableName(xSet); - ::rtl::OUStringBuffer aSql(RTL_CONSTASCII_USTRINGPARAM("DELETE FROM ")); + ::rtl::OUStringBuffer aSql = ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("DELETE FROM ")); aSql.append(m_aComposedTableName); aSql.append(::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(" WHERE "))); |