Skip to content

Commit a0a126a

Browse files
committed
patch
1 parent f232d14 commit a0a126a

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -136,14 +136,14 @@ Handle this event to automatically store the updated layout in the active datase
136136
```pas
137137
procedure TMainForm.dxReport1LayoutChanged(ASender: TdxReport);
138138
begin
139-
// Start editing the active dataset record
139+
// Start editing the active dataset record:
140140
DataModule1.mdLayouts.Edit;
141141
142-
// Save the report name and layout to the database
142+
// Save the report name and layout to the database:
143143
DataModule1.mdLayoutsName.AsString := dxReport1.ReportName;
144144
DataModule1.mdLayoutsLayout.Assign(dxReport1.Layout);
145145
146-
// Finish editing and post the modified record to the database
146+
// Finish editing and post the modified record to the database:
147147
DataModule1.mdLayouts.Post;
148148
end;
149149
```

0 commit comments

Comments
 (0)