Browse Source

* as in #15337 reported, in newer Delphi versions EOleRegistrationError inherits from EOleSysError

git-svn-id: trunk@14440 -
florian 15 năm trước cách đây
mục cha
commit
6d79cfc6f2
1 tập tin đã thay đổi với 3 bổ sung3 xóa
  1. 3 3
      packages/winunits-base/src/comobj.pp

+ 3 - 3
packages/winunits-base/src/comobj.pp

@@ -47,11 +47,11 @@ unit comobj;
         property Source: string read FSource write FSource;
       end;
 
-      EOleRegistrationError = class(EOleError);
+      EOleRegistrationError = class(EOleSysError);
 
       TOleStream = Class(TProxyStream)
-                  procedure Check(err:integer);override;
-		end;
+        procedure Check(err:integer);override;
+      end;
 
       TComServerObject = class(TObject)
       protected