[Libreoffice-commits] .: basic/source

François Tigeot ftigeot at kemper.freedesktop.org
Sat May 7 03:14:35 PDT 2011


 basic/source/app/dialogs.cxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit a2a5c6121814448226291bba8dc991f0a6b359c8
Author: Francois Tigeot <ftigeot at wolfpond.org>
Date:   Sat May 7 12:12:51 2011 +0200

    Do not convert file names to MS-DOS style.

diff --git a/basic/source/app/dialogs.cxx b/basic/source/app/dialogs.cxx
index 8ccf09f..8551e22 100644
--- a/basic/source/app/dialogs.cxx
+++ b/basic/source/app/dialogs.cxx
@@ -209,7 +209,7 @@ void OptConfEdit::Reload( Config &aConf )
     ConfEdit::Reload( aConf );
 
     DirEntry aCalculatedHIDDir( rBase.GetValue() );
-    aCalculatedHIDDir += DirEntry( "global/hid", FSYS_STYLE_FAT );
+    aCalculatedHIDDir += DirEntry( "global/hid", DEFSTYLE );
 
     DirEntry aCurrentHIDDir( aEdit.GetText() );
 
@@ -231,7 +231,7 @@ IMPL_LINK( OptConfEdit, BaseModifyHdl, Edit*, EMPTYARG )
     if ( aCheck.IsChecked() )
     {
         DirEntry aCalculatedHIDDir( rBase.GetValue() );
-        aCalculatedHIDDir += DirEntry( "global/hid", FSYS_STYLE_FAT );
+        aCalculatedHIDDir += DirEntry( "global/hid", DEFSTYLE );
         aEdit.SetText( aCalculatedHIDDir.GetFull() );
     }
     return 0;


More information about the Libreoffice-commits mailing list