From 52e89dd71a2f4d986af8cd09e7bc2b6dcebd5267 Mon Sep 17 00:00:00 2001 From: Jim Norman Date: Fri, 18 Aug 2006 21:54:41 +0000 Subject: [PATCH] Default to user home directory for import/export. --- CASA/gui/FileChooser.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CASA/gui/FileChooser.cs b/CASA/gui/FileChooser.cs index 5af29084..5169487f 100644 --- a/CASA/gui/FileChooser.cs +++ b/CASA/gui/FileChooser.cs @@ -11,7 +11,7 @@ namespace Novell.CASA.GUI /// public class FileChooser { - private string m_currentDirectory = "c:/"; + private string m_currentDirectory; private string m_hintFile = null; private string m_sFileSelected = null; private bool m_bFileChoosing = true; @@ -47,7 +47,7 @@ namespace Novell.CASA.GUI // // TODO: Add constructor logic here // - + m_currentDirectory = Common.GetUserHomeDir(); } public string GetFile(string sHintDir, string sHintFile)