Explorar el Código

LibWeb: Use the correct base class in for SVGImageElement

Tim Ledbetter hace 11 meses
padre
commit
df431a0c32
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      Userland/Libraries/LibWeb/SVG/SVGImageElement.h

+ 1 - 1
Userland/Libraries/LibWeb/SVG/SVGImageElement.h

@@ -17,7 +17,7 @@ class SVGImageElement
     : public SVGGraphicsElement
     , public SVGURIReferenceMixin<SupportsXLinkHref::Yes>
     , public Layout::ImageProvider {
-    WEB_PLATFORM_OBJECT(SVGImageElement, SVGElement);
+    WEB_PLATFORM_OBJECT(SVGImageElement, SVGGraphicsElement);
 
 public:
     virtual void attribute_changed(FlyString const& name, Optional<String> const& old_value, Optional<String> const& value) override;