mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-20 07:39:25 +02:00
* Fixed warning and removed semicolon-typo
git-svn-id: trunk@13248 -
This commit is contained in:
parent
f0e6946688
commit
04ca09c600
@ -38,10 +38,10 @@ Type
|
||||
Procedure DoHandleRequest(ARequest : TRequest; AResponse : TResponse; Var Handled : Boolean); override;
|
||||
Procedure DoGetContent(ARequest : TRequest; Content : TStream; Var Handled : Boolean); virtual;
|
||||
Procedure GetContent(ARequest : TRequest; Content : TStream; Var Handled : Boolean);
|
||||
Procedure Assign(Source : TPersistent); override;
|
||||
Public
|
||||
Constructor create(ACollection : TCollection); override;
|
||||
Destructor destroy; override;
|
||||
Procedure Assign(Source : TPersistent); override;
|
||||
published
|
||||
Property Content : String Read GetStringContent Write SetContent;
|
||||
Property Contents : TStrings Read GetContents Write SetContents;
|
||||
@ -332,7 +332,7 @@ end;
|
||||
|
||||
procedure TCustomFPWebModule.SetActions(const AValue: TFPWebActions);
|
||||
begin
|
||||
if (FActions<>AValue) then;
|
||||
if (FActions<>AValue) then
|
||||
FActions.Assign(AValue);
|
||||
end;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user