mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-14 04:39:45 +02:00
anchordocking: miniide: init opensavedialog
git-svn-id: trunk@34073 -
This commit is contained in:
parent
5a44369375
commit
1b9c627cc4
@ -146,6 +146,7 @@ var
|
||||
begin
|
||||
Dlg:=TOpenDialog.Create(nil);
|
||||
try
|
||||
Dlg.InitialDir:=GetCurrentDirUTF8;
|
||||
Dlg.Title:='Open layout file ...';
|
||||
Dlg.Filter:='*.xml|*.xml';
|
||||
Dlg.Options:=Dlg.Options+[ofFileMustExist];
|
||||
@ -173,6 +174,7 @@ var
|
||||
begin
|
||||
Dlg:=TSaveDialog.Create(nil);
|
||||
try
|
||||
Dlg.InitialDir:=GetCurrentDirUTF8;
|
||||
Dlg.Title:='Save layout as ...';
|
||||
Dlg.Filter:='*.xml|*.xml';
|
||||
Dlg.Options:=Dlg.Options+[ofPathMustExist,ofHideReadOnly,ofOverwritePrompt];
|
||||
|
Loading…
Reference in New Issue
Block a user