マスタエディタ:ファイルのデフォルト保存先がC:とデスクトップの2種類あったのでデスクトップに統一。

git-svn-id: file:///Users/lillianskinner/Downloads/platinum/twl/TwlIPL/trunk@2592 b08762b0-b915-fc4b-9d8c-17b2551a87ff
This commit is contained in:
nishikawa_takeshi 2008-10-07 05:39:42 +00:00
parent 74c62098c3
commit 6c5f2b9f66
4 changed files with 14 additions and 15 deletions

View File

@ -3830,9 +3830,8 @@ private: System::Windows::Forms::CheckBox^ cboxIsPhotoEx;
{
System::Windows::Forms::OpenFileDialog ^dlg = gcnew (OpenFileDialog);
dlg->InitialDirectory = "c:\\";
dlg->Filter = (this->stripItemJapanese->Checked == true)?"srlŒ`Ž® (*.srl)|*.srl|All files (*.*)|*.*"
:"srl format (*.srl)|*.srl|All files (*.*)|*.*";
dlg->InitialDirectory = System::Environment::GetFolderPath( System::Environment::SpecialFolder::Desktop );//"c:\\";
dlg->Filter = "srl format (*.srl)|*.srl|All files (*.*)|*.*";
dlg->FilterIndex = 1;
dlg->RestoreDirectory = true;
@ -4039,8 +4038,8 @@ private: System::Windows::Forms::CheckBox^ cboxIsPhotoEx;
{
System::Windows::Forms::SaveFileDialog ^dlg = gcnew (SaveFileDialog);
dlg->InitialDirectory = "c:\\";
dlg->Filter = "xmlŒ`Ž® (*.xml)|*.xml";
dlg->InitialDirectory = System::Environment::GetFolderPath( System::Environment::SpecialFolder::Desktop );//"c:\\";
dlg->Filter = "xml format (*.xml)|*.xml";
dlg->FilterIndex = 1;
dlg->RestoreDirectory = true;
@ -4068,8 +4067,8 @@ private: System::Windows::Forms::CheckBox^ cboxIsPhotoEx;
{
System::Windows::Forms::SaveFileDialog ^dlg = gcnew (SaveFileDialog);
dlg->InitialDirectory = "c:\\";
dlg->Filter = "xmlŒ`Ž® (*.xml)|*.xml";
dlg->InitialDirectory = System::Environment::GetFolderPath( System::Environment::SpecialFolder::Desktop );//"c:\\";
dlg->Filter = "xml format (*.xml)|*.xml";
dlg->FilterIndex = 1;
dlg->RestoreDirectory = true;
@ -4166,8 +4165,8 @@ private: System::Windows::Forms::CheckBox^ cboxIsPhotoEx;
{
System::Windows::Forms::SaveFileDialog ^dlg = gcnew (SaveFileDialog);
dlg->InitialDirectory = "c:\\";
dlg->Filter = "xmlŒ`Ž® (*.xml)|*.xml";
dlg->InitialDirectory = System::Environment::GetFolderPath( System::Environment::SpecialFolder::Desktop );//"c:\\";
dlg->Filter = "xml format (*.xml)|*.xml";
dlg->FilterIndex = 1;
dlg->RestoreDirectory = true;
@ -4193,8 +4192,8 @@ private: System::Windows::Forms::CheckBox^ cboxIsPhotoEx;
{
System::Windows::Forms::OpenFileDialog ^dlg = gcnew (OpenFileDialog);
dlg->InitialDirectory = "c:\\";
dlg->Filter = "xmlŒ`Ž® (*.xml)|*.xml";
dlg->InitialDirectory = System::Environment::GetFolderPath( System::Environment::SpecialFolder::Desktop );//"c:\\";
dlg->Filter = "xml format (*.xml)|*.xml";
dlg->FilterIndex = 1;
dlg->RestoreDirectory = true;
@ -4226,8 +4225,8 @@ private: System::Windows::Forms::CheckBox^ cboxIsPhotoEx;
{
System::Windows::Forms::SaveFileDialog ^dlg = gcnew (SaveFileDialog);
dlg->InitialDirectory = "c:\\";
dlg->Filter = "xmlŒ`Ž® (*.xml)|*.xml";
dlg->InitialDirectory = System::Environment::GetFolderPath( System::Environment::SpecialFolder::Desktop );//"c:\\";
dlg->Filter = "xml format (*.xml)|*.xml";
dlg->FilterIndex = 1;
dlg->RestoreDirectory = true;
@ -4262,8 +4261,8 @@ private: System::Windows::Forms::CheckBox^ cboxIsPhotoEx;
{
System::Windows::Forms::SaveFileDialog ^dlg = gcnew (SaveFileDialog);
dlg->InitialDirectory = "c:\\";
dlg->Filter = "htmlŒ`Ž® (*.html)|*.html";
dlg->InitialDirectory = System::Environment::GetFolderPath( System::Environment::SpecialFolder::Desktop );//"c:\\";
dlg->Filter = "html format (*.html)|*.html";
dlg->FilterIndex = 1;
dlg->RestoreDirectory = true;