summaryrefslogtreecommitdiff
path: root/basic/source/app
diff options
context:
space:
mode:
authorFrancois Tigeot <ftigeot@wolfpond.org>2011-05-07 12:12:51 +0200
committerFrancois Tigeot <ftigeot@wolfpond.org>2011-05-07 12:12:51 +0200
commitb042dd8a36732f98b8fa935fa9f4439e08b12ca5 (patch)
tree7f25a333acbfda14cbe3ac7ae79344bd8ce787cb /basic/source/app
parenteacd5aa2b529537cd42fb9a2e6b3255b9f15b683 (diff)
Do not convert file names to MS-DOS style.
Diffstat (limited to 'basic/source/app')
-rw-r--r--basic/source/app/dialogs.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/basic/source/app/dialogs.cxx b/basic/source/app/dialogs.cxx
index e0c2b37bd06d..f088cd79a0cf 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;