diff options
author | Andras Timar <andras.timar@collabora.com> | 2014-06-25 10:12:00 -0700 |
---|---|---|
committer | Andras Timar <andras.timar@collabora.com> | 2014-06-25 10:12:00 -0700 |
commit | fadd478b66a68d3738b195c680774e4aaad413a7 (patch) | |
tree | b624c353b04b93a3d959cc8882c52a9e4c96db11 | |
parent | b1ca297fa9b79c2350c212a7a1ec697a22d0dce7 (diff) |
build fix
suse-4.0-25
Change-Id: I52399b2f47deefb6212f2f376c8ec3cf98ea2340
-rw-r--r-- | sw/source/ui/dbui/dbmgr.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/ui/dbui/dbmgr.cxx b/sw/source/ui/dbui/dbmgr.cxx index 24d289004373..a3c4ca8508b2 100644 --- a/sw/source/ui/dbui/dbmgr.cxx +++ b/sw/source/ui/dbui/dbmgr.cxx @@ -1652,7 +1652,7 @@ String SwNewDBMgr::GetDBField(uno::Reference<XPropertySet> xColumnProps, try { sRet = xColumn->getString(); - sRet = sRet.replace( '\xb', '\n' ); // MSWord uses \xb as a newline + sRet.SearchAndReplaceAll( '\xb', '\n' ); // MSWord uses \xb as a newline } catch(const SQLException&) { |