summaryrefslogtreecommitdiff
path: root/desktop
diff options
context:
space:
mode:
authorStephan Bergmann <stephan.bergmann@allotropia.de>2023-12-15 10:22:51 +0100
committerStephan Bergmann <stephan.bergmann@allotropia.de>2023-12-15 12:32:19 +0100
commit94233c2e1e86c3617f327e8bfd3cd4a980adf200 (patch)
tree871b79329971afe17e2bf24545d386ed2b03de2c /desktop
parent12fbc9ffde9b331a5bbc4adf6b7971e51da360e9 (diff)
-Werror,-Wunused-result
...caused by typo in previous 58bfd8f982950566018f77ce8895963d914058f8 "Fix backward vs. forward slashes on Windows" Change-Id: Ibd1967688c6ab4c962818595d435c7f821ad3d64 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/160820 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <stephan.bergmann@allotropia.de>
Diffstat (limited to 'desktop')
-rw-r--r--desktop/source/app/updater.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop/source/app/updater.cxx b/desktop/source/app/updater.cxx
index 8796583df4d8..925b6b7116a4 100644
--- a/desktop/source/app/updater.cxx
+++ b/desktop/source/app/updater.cxx
@@ -91,7 +91,7 @@ OUString normalizePath(const OUString& rPath)
aPath = aPath.replace('\\', '/');
#endif
- aPath.replaceAll("//", "/");
+ aPath = aPath.replaceAll("//", "/");
// remove final /
if (aPath.endsWith("/"))