mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-19 19:22:51 +02:00
file filter for the conversion tool from Darius
git-svn-id: trunk@9641 -
This commit is contained in:
parent
de49382304
commit
c75d21e68f
@ -3048,6 +3048,7 @@ resourcestring
|
||||
+'message';
|
||||
lisRelativePaths = 'Relative paths';
|
||||
lisLazBuildSaveSettings = 'Save settings';
|
||||
rsFormDataFileDfm = 'Form data file (*.dfm)|*.dfm';
|
||||
liswlWatchList = 'Watch list';
|
||||
liswlExpression = 'Expression';
|
||||
|
||||
|
@ -8302,6 +8302,8 @@ begin
|
||||
InputHistories.ApplyFileDialogSettings(OpenDialog);
|
||||
OpenDialog.Title:=lisSelectDFMFiles;
|
||||
OpenDialog.Options:=OpenDialog.Options+[ofAllowMultiSelect];
|
||||
OpenDialog.Filter := rsFormDataFileDfm
|
||||
+ '|' + dlgAllFiles + '|'+GetAllFilesMask;
|
||||
if OpenDialog.Execute and (OpenDialog.Files.Count>0) then begin
|
||||
For I := 0 to OpenDialog.Files.Count-1 do begin
|
||||
AFilename:=ExpandFilename(OpenDialog.Files.Strings[i]);
|
||||
|
Loading…
Reference in New Issue
Block a user