Changeset 149 for trunk/Forms/FormFindDuplicity.pas
- Timestamp:
- Jun 5, 2023, 8:45:38 PM (18 months ago)
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/Forms/FormFindDuplicity.pas
r148 r149 1 unit UFormFindDuplicity;1 unit FormFindDuplicity; 2 2 3 3 interface … … 56 56 end; 57 57 58 var59 FormFindDuplicity: TFormFindDuplicity;60 61 58 62 59 implementation … … 65 62 66 63 uses 67 UCore, UFormContacts, UVCardFile;64 Core, FormContacts, VCardFile; 68 65 69 66 { TFoundItems } … … 168 165 procedure TFormFindDuplicity.FormCreate(Sender: TObject); 169 166 begin 170 Core. Translator.TranslateComponentRecursive(Self);171 Core. ThemeManager1.UseTheme(Self);167 Core.Core.Translator.TranslateComponentRecursive(Self); 168 Core.Core.ThemeManager1.UseTheme(Self); 172 169 173 170 FoundItems := TFoundItems.Create; … … 238 235 var CloseAction: TCloseAction); 239 236 begin 240 Core. PersistentForm1.Save(Self);237 Core.Core.PersistentForm1.Save(Self); 241 238 end; 242 239 … … 248 245 procedure TFormFindDuplicity.FormShow(Sender: TObject); 249 246 begin 250 Core. PersistentForm1.Load(Self);247 Core.Core.PersistentForm1.Load(Self); 251 248 Find; 252 249 end;
Note:
See TracChangeset
for help on using the changeset viewer.