Changeset 113
- Timestamp:
- Nov 1, 2016, 12:58:12 PM (8 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Forms/UFormAbout.lfm
r91 r113 74 74 EmailContact = 'robie@centrum.cz' 75 75 AppName = 'Acronym Decoder' 76 ReleaseDate = 42 59776 ReleaseDate = 42675 77 77 RegistryKey = '\Software\' 78 78 RegistryRoot = rrKeyCurrentUser 79 License = 'GNU/GPL '79 License = 'GNU/GPL v3' 80 80 left = 200 81 81 top = 253 -
trunk/UAcronym.pas
r111 r113 1440 1440 Categories.LoadFromNode(NewNode); 1441 1441 1442 // Load acronyms after categories because of references 1442 NewNode := FindNode('ImportFormats'); 1443 if Assigned(NewNode) then 1444 ImportFormats.LoadFromNode(NewNode); 1445 1446 NewNode := FindNode('ImportSources'); 1447 if Assigned(NewNode) then 1448 ImportSources.LoadFromNode(NewNode); 1449 1450 // Load acronyms after categories and import formats and sources because of references 1443 1451 NewNode := FindNode('Acronyms'); 1444 1452 if Assigned(NewNode) then 1445 1453 Acronyms.LoadFromNode(NewNode); 1446 1447 NewNode := FindNode('ImportFormats');1448 if Assigned(NewNode) then1449 ImportFormats.LoadFromNode(NewNode);1450 1451 NewNode := FindNode('ImportSources');1452 if Assigned(NewNode) then1453 ImportSources.LoadFromNode(NewNode);1454 1454 end; 1455 1455 finally … … 1478 1478 Categories.SaveToNode(NewNode); 1479 1479 1480 // Save acronyms after categories because of references 1480 NewNode := OwnerDocument.CreateElement('ImportFormats'); 1481 AppendChild(NewNode); 1482 ImportFormats.SaveToNode(NewNode); 1483 1484 NewNode := OwnerDocument.CreateElement('ImportSources'); 1485 AppendChild(NewNode); 1486 ImportSources.SaveToNode(NewNode); 1487 1488 // Save acronyms after categories, import formats and sources because of references 1481 1489 NewNode := OwnerDocument.CreateElement('Acronyms'); 1482 1490 AppendChild(NewNode); 1483 1491 Acronyms.SaveToNode(NewNode); 1484 1485 NewNode := OwnerDocument.CreateElement('ImportFormats');1486 AppendChild(NewNode);1487 ImportFormats.SaveToNode(NewNode);1488 1489 NewNode := OwnerDocument.CreateElement('ImportSources');1490 AppendChild(NewNode);1491 ImportSources.SaveToNode(NewNode);1492 1492 end; 1493 1493 ForceDirectories(ExtractFileDir(FileName));
Note:
See TracChangeset
for help on using the changeset viewer.