mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-12-16 04:50:51 +01:00
* Patch from Inoussa to stream 2pass option (bug ID 35300)
git-svn-id: trunk@41804 -
This commit is contained in:
parent
1951aff5a4
commit
c763fbf84b
@ -8607,6 +8607,7 @@ begin
|
||||
// local properties
|
||||
AWriter.WriteString('Title', Title);
|
||||
AWriter.WriteString('Author', Author);
|
||||
AWriter.WriteBoolean('TwoPass',TwoPass);
|
||||
AWriter.WriteDateTime('DateCreated', DateCreated);
|
||||
// now the design-time images
|
||||
AWriter.PushElement('Images');
|
||||
@ -8675,6 +8676,7 @@ begin
|
||||
inherited ReadElement(AReader);
|
||||
FTitle := AReader.ReadString('Title', Title);
|
||||
FAuthor := AReader.ReadString('Author', Author);
|
||||
FTwoPass := AReader.ReadBoolean('TwoPass',TwoPass);
|
||||
FDateCreated := AReader.ReadDateTime('DateCreated', Now);
|
||||
|
||||
E := AReader.FindChild('Images');
|
||||
|
||||
Loading…
Reference in New Issue
Block a user