summaryrefslogtreecommitdiff
path: root/package
diff options
context:
space:
mode:
authorMikhail Voytenko <mav@openoffice.org>2010-04-08 15:11:13 +0200
committerMikhail Voytenko <mav@openoffice.org>2010-04-08 15:11:13 +0200
commitad157a9cb3ecfb54147834a5f2592636ae6cac32 (patch)
tree0536efb53fda9d16fbfd80132f24a68c1ee33808 /package
parent426a2f22678f89706b4db474243ab27b4a4d6c06 (diff)
fwk138: #i104759# let the string be changed
Diffstat (limited to 'package')
-rw-r--r--package/source/zippackage/ZipPackage.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/package/source/zippackage/ZipPackage.cxx b/package/source/zippackage/ZipPackage.cxx
index 36b4f8885f48..9ec103758289 100644
--- a/package/source/zippackage/ZipPackage.cxx
+++ b/package/source/zippackage/ZipPackage.cxx
@@ -514,7 +514,7 @@ void ZipPackage::getZipFileContents()
{
// the PKZIP Application note version 6.2 does not allows to use '\' as separator
// unfortunately it is used by some implementations, so we have to support it in recovery mode
- rName.replace( '\\', '/' );
+ rName = rName.replace( '\\', '/' );
}
nStreamIndex = rName.lastIndexOf ( '/' );