Default to user home directory for import/export.

This commit is contained in:
Jim Norman 2006-08-18 21:54:41 +00:00
parent 6ddc58eb9c
commit 52e89dd71a

View File

@ -11,7 +11,7 @@ namespace Novell.CASA.GUI
/// </summary> /// </summary>
public class FileChooser public class FileChooser
{ {
private string m_currentDirectory = "c:/"; private string m_currentDirectory;
private string m_hintFile = null; private string m_hintFile = null;
private string m_sFileSelected = null; private string m_sFileSelected = null;
private bool m_bFileChoosing = true; private bool m_bFileChoosing = true;
@ -47,7 +47,7 @@ namespace Novell.CASA.GUI
// //
// TODO: Add constructor logic here // TODO: Add constructor logic here
// //
m_currentDirectory = Common.GetUserHomeDir();
} }
public string GetFile(string sHintDir, string sHintFile) public string GetFile(string sHintDir, string sHintFile)