diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2017-08-13 19:53:55 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2017-08-19 02:52:24 +0200 |
commit | 10a914f3d891ca641fea99b19fb2de4f9a956cb4 (patch) | |
tree | 2d8107b55bb6c8780532ff21d69a698e431f7551 /desktop/source/app/updater.cxx | |
parent | ddf0d439d36686008b6de16d59c9a9068622f26c (diff) |
updater: use forward slashes
Change-Id: I56b46e55007a4c30eb3e1438f8238bd3271fb993
Diffstat (limited to 'desktop/source/app/updater.cxx')
-rw-r--r-- | desktop/source/app/updater.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop/source/app/updater.cxx b/desktop/source/app/updater.cxx index 445b13db2ec5..f5955bc8b5e5 100644 --- a/desktop/source/app/updater.cxx +++ b/desktop/source/app/updater.cxx @@ -90,7 +90,7 @@ OUString normalizePath(const OUString& rPath) aPath = aTempPath.copy(0, i) + aPath.copy(nIndex + 3); } - return aPath; + return aPath.replaceAll("\\", "/"); } void CopyFileToDir(const OUString& rTempDirURL, const OUString rFileName, const OUString& rOldDir) |