[Libreoffice-commits] core.git: sal/osl

Mark Wielaard mark at klomp.org
Sun Jul 21 20:19:36 PDT 2013


 sal/osl/unx/file_path_helper.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit f9cde6e64ae23327a1c314195da638d81a5411ed
Author: Mark Wielaard <mark at klomp.org>
Date:   Sun Jul 21 12:28:52 2013 +0200

    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 at documentfoundation.org>
    Tested-by: Fridrich Strba <fridrich at documentfoundation.org>

diff --git a/sal/osl/unx/file_path_helper.cxx b/sal/osl/unx/file_path_helper.cxx
index f233f91..67d8d2d 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(".."); }
 


More information about the Libreoffice-commits mailing list