mirror of
https://github.com/rvtr/TwlIPL.git
synced 2025-10-31 06:01:12 -04:00
マスタエディタ:ファイルのデフォルト保存先がC:とデスクトップの2種類あったのでデスクトップに統一。
git-svn-id: file:///Users/lillianskinner/Downloads/platinum/twl/TwlIPL/trunk@2592 b08762b0-b915-fc4b-9d8c-17b2551a87ff
This commit is contained in:
parent
74c62098c3
commit
6c5f2b9f66
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -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;
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user