Browse Source

* Fix hint about hding inerited constructor

michael 7 years ago
parent
commit
73c710e93c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      packages/rtl/web.pas

+ 1 - 1
packages/rtl/web.pas

@@ -2825,7 +2825,7 @@ Type
   TJSMutationObserver = class external name 'MutationObserver' (TJSObject)
   public
     { constructor }
-    constructor new(mutationCallback: TJSMutationCallback);
+    constructor new(mutationCallback: TJSMutationCallback); overload;
     { public methods }
     procedure observe(target: TJSNode); overload;
     procedure observe(target: TJSNode; options: TJSMutationObserverInit); overload;