Browse Source

+ Renamed ManualReset parameter to TEventObject constructor

michael 22 years ago
parent
commit
4e47a0770e
1 changed files with 6 additions and 3 deletions
  1. 6 3
      fcl/win32/syncobjs.pp

+ 6 - 3
fcl/win32/syncobjs.pp

@@ -66,10 +66,10 @@ begin
 end;
 
 constructor TEventObject.Create(EventAttributes : PSecurityAttributes;
-  ManualReset,InitialState : Boolean;const Name : string);
+  AManualReset,InitialState : Boolean;const Name : string);
 
 begin
-  FHandle := CreateEvent(EventAttributes, ManualReset, InitialState, PChar(Name));
+  FHandle := CreateEvent(EventAttributes, AManualReset, InitialState, PChar(Name));
 end;
 
 destructor TEventObject.destroy;
@@ -117,7 +117,10 @@ end.
 
 {
   $Log$
-  Revision 1.5  2003-06-14 19:16:50  michael
+  Revision 1.6  2003-06-17 07:35:58  michael
+  + Renamed ManualReset parameter to TEventObject constructor
+
+  Revision 1.5  2003/06/14 19:16:50  michael
   + Some improvements for the Linux version
 
   Revision 1.4  2003/06/11 11:59:52  michael