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)