Changeset 173 for trunk/Forms
- Timestamp:
- Jan 30, 2018, 2:34:00 PM (7 years ago)
- Location:
- trunk/Forms
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Forms/UFormMain.lfm
r169 r173 502 502 object OpenDialog1: TOpenDialog 503 503 DefaultExt = '.adp' 504 Filter = 'Acronym Decoder project (.adp)|*.adp|Všechny soubory|*.*'505 504 left = 100 506 505 top = 260 … … 508 507 object SaveDialog1: TSaveDialog 509 508 DefaultExt = '.adp' 510 Filter = 'Acronym Decoder project (.adp)|*.adp| Všechny soubory|*.*'509 Filter = 'Acronym Decoder project (.adp)|*.adp|All files|*.*' 511 510 left = 100 512 511 top = 180 -
trunk/Forms/UFormMain.pas
r169 r173 163 163 SAcronymsCount = 'Acronyms count: %d'; 164 164 SMeaningsCount = 'Meanings count: %d'; 165 SFileFilter = 'Acronym Decoder project (.adp)|*.adp|All files|*.*'; 165 166 166 167 … … 285 286 if Assigned(Core.AcronymDb) then begin 286 287 OpenDialog1.InitialDir := ExtractFileDir(Core.AcronymDb.FileName); 288 OpenDialog1.Filter := SFileFilter; 287 289 OpenDialog1.FileName := ExtractFileName(Core.AcronymDb.FileName); 288 290 end; … … 296 298 SaveDialog1.DefaultExt := ProjectExt; 297 299 SaveDialog1.InitialDir := ExtractFileDir(Core.AcronymDb.FileName); 300 SaveDialog1.Filter := SFileFilter; 298 301 SaveDialog1.FileName := ExtractFileName(Core.AcronymDb.FileName); 299 302 if SaveDialog1.Execute then begin
Note:
See TracChangeset
for help on using the changeset viewer.