Browse Source

* overload directives removed (merged)

peter 25 years ago
parent
commit
52d9682415
1 changed files with 16 additions and 13 deletions
  1. 16 13
      rtl/objpas/sysutils.pp

+ 16 - 13
rtl/objpas/sysutils.pp

@@ -205,24 +205,24 @@ Var
 
 
       begin
       begin
          inherited create;
          inherited create;
-	 fmessage:=ResString^;
+         fmessage:=ResString^;
       end;
       end;
 
 
 
 
-    constructor Exception.CreateResFmt(ResString: PString; const Args: array of const); overload;
+    constructor Exception.CreateResFmt(ResString: PString; const Args: array of const);
 
 
       begin
       begin
-	 inherited create;
-	 fmessage:=Format(ResString^,args);
+         inherited create;
+         fmessage:=Format(ResString^,args);
       end;
       end;
 
 
 
 
     constructor Exception.CreateHelp(const Msg: string; AHelpContext: Integer);
     constructor Exception.CreateHelp(const Msg: string; AHelpContext: Integer);
 
 
       begin
       begin
-	 inherited create;
-	 fmessage:=Msg;
-	 fhelpcontext:=AHelpContext;
+         inherited create;
+         fmessage:=Msg;
+         fhelpcontext:=AHelpContext;
       end;
       end;
 
 
 
 
@@ -236,7 +236,7 @@ Var
     end;
     end;
 
 
 
 
-    constructor Exception.CreateResHelp(ResString: PString; AHelpContext: Integer); overload;
+    constructor Exception.CreateResHelp(ResString: PString; AHelpContext: Integer);
 
 
     begin
     begin
        inherited create;
        inherited create;
@@ -246,7 +246,7 @@ Var
 
 
 
 
     constructor Exception.CreateResFmtHelp(ResString: PString; const Args: array of const;
     constructor Exception.CreateResFmtHelp(ResString: PString; const Args: array of const;
-      AHelpContext: Integer); overload;
+      AHelpContext: Integer);
 
 
     begin
     begin
        inherited create;
        inherited create;
@@ -389,7 +389,7 @@ function ExceptionErrorMessage(ExceptObject: TObject; ExceptAddr: Pointer;
 Var
 Var
   S : AnsiString;
   S : AnsiString;
   Len : Integer;
   Len : Integer;
-  
+
 begin
 begin
   S:=Format(SExceptionErrorMessage,[ExceptObject.ClassName,ExceptAddr]);
   S:=Format(SExceptionErrorMessage,[ExceptObject.ClassName,ExceptAddr]);
   If ExceptObject is Exception then
   If ExceptObject is Exception then
@@ -440,7 +440,7 @@ begin
   {$ifdef win32}
   {$ifdef win32}
   MessageBeep(0);
   MessageBeep(0);
   {$else}
   {$else}
-  
+
   {$endif}
   {$endif}
 end;
 end;
 
 
@@ -455,7 +455,10 @@ Finalization
 end.
 end.
 {
 {
   $Log$
   $Log$
-  Revision 1.4  2000-07-27 16:20:52  sg
+  Revision 1.5  2000-08-06 14:19:06  peter
+    * overload directives removed (merged)
+
+  Revision 1.4  2000/07/27 16:20:52  sg
   * Applied patch by Markus Kaemmerer with minor modifications: More methods
   * Applied patch by Markus Kaemmerer with minor modifications: More methods
     of the Exception class are now implemented (in a manner so that they can
     of the Exception class are now implemented (in a manner so that they can
     be used as in Delphi, although the declarations are somewhat different)
     be used as in Delphi, although the declarations are somewhat different)
@@ -465,5 +468,5 @@ end.
 
 
   Revision 1.2  2000/07/13 11:33:51  michael
   Revision 1.2  2000/07/13 11:33:51  michael
   + removed logs
   + removed logs
- 
+
 }
 }