@@ -383,13 +383,14 @@ TActiveTextActionElem = class(TInterfacedObject,
383
383
fAttrs: IActiveTextAttrs;
384
384
public
385
385
// / <summary>Object constructor. Creates an action element.</summary>
386
- // / <param name="Kind ">TActiveTextElemKind [in] Required kind of element.
386
+ // / <param name="AKind ">TActiveTextElemKind [in] Required kind of element.
387
387
// / </param>
388
- // / <param name="Attrs">IActiveTextAttrs [in] Element's attributes.</param>
389
- // / <param name="State">TActiveTextElemState [in] State of element: opening
390
- // / or closing.</param>
391
- constructor Create(const Kind: TActiveTextActionElemKind;
392
- Attrs: IActiveTextAttrs; const State: TActiveTextElemState);
388
+ // / <param name="AAttrs">IActiveTextAttrs [in] Element's attributes.
389
+ // / </param>
390
+ // / <param name="AState">TActiveTextElemState [in] State of element:
391
+ // / opening or closing.</param>
392
+ constructor Create(const AKind: TActiveTextActionElemKind;
393
+ AAttrs: IActiveTextAttrs; const AState: TActiveTextElemState);
393
394
// / <summary>Assigns properties of another object to this object.</summary>
394
395
// / <param name="Src">IInterface [in] Object whose properties are to be
395
396
// / assigned. Src must support IActiveTextActionElem.</param>
@@ -674,13 +675,13 @@ function TActiveTextActionElem.Clone: IInterface;
674
675
Result := TActiveTextActionElem.Create(GetKind, Attrs, GetState);
675
676
end ;
676
677
677
- constructor TActiveTextActionElem.Create(const Kind : TActiveTextActionElemKind;
678
- Attrs : IActiveTextAttrs; const State : TActiveTextElemState);
678
+ constructor TActiveTextActionElem.Create(const AKind : TActiveTextActionElemKind;
679
+ AAttrs : IActiveTextAttrs; const AState : TActiveTextElemState);
679
680
begin
680
681
inherited Create;
681
- fAttrs := Attrs ;
682
- fState := State ;
683
- fKind := Kind ;
682
+ fAttrs := AAttrs ;
683
+ fState := AState ;
684
+ fKind := AKind ;
684
685
end ;
685
686
686
687
function TActiveTextActionElem.GetAttrs : IActiveTextAttrs;
0 commit comments