diff options
author | Mark Wielaard <mark@klomp.org> | 2013-07-21 12:28:52 +0200 |
---|---|---|
committer | Fridrich Strba <fridrich@documentfoundation.org> | 2013-07-22 03:19:13 +0000 |
commit | f9cde6e64ae23327a1c314195da638d81a5411ed (patch) | |
tree | 58e2eb411e3d46a3ad0ef079a69f71f91596bcfe /sal | |
parent | b11dc22caa903014c295bea62a6d86e5e12518d8 (diff) |
Fix file_path_helper FPH_LOCAL_DIR_ENTRY.
Commit e5e4c54da changed "." to a constant, but the wrong one.
Should have been FPH_CHAR_DOT, not FPH_CHAR_PATH_SEPARATOR.
Change-Id: I041f6507947f1631f0af133bff0fa3270313391a
Reviewed-on: https://gerrit.libreoffice.org/5001
Reviewed-by: Fridrich Strba <fridrich@documentfoundation.org>
Tested-by: Fridrich Strba <fridrich@documentfoundation.org>
Diffstat (limited to 'sal')
-rw-r--r-- | sal/osl/unx/file_path_helper.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sal/osl/unx/file_path_helper.cxx b/sal/osl/unx/file_path_helper.cxx index f233f9179d73..67d8d2d8fc89 100644 --- a/sal/osl/unx/file_path_helper.cxx +++ b/sal/osl/unx/file_path_helper.cxx @@ -40,7 +40,7 @@ inline const rtl::OUString FPH_PATH_SEPARATOR() { return rtl::OUString(FPH_CHAR_PATH_SEPARATOR); } inline const rtl::OUString FPH_LOCAL_DIR_ENTRY() - { return rtl::OUString(FPH_CHAR_PATH_SEPARATOR); } + { return rtl::OUString(FPH_CHAR_DOT); } inline const rtl::OUString FPH_PARENT_DIR_ENTRY() { return rtl::OUString(".."); } |