浏览代码

LibWeb: Add missing Page.h include to SVGDecodedImageData

The PageClient for SVGDecodedImageData needs to actually have the
definition of PageClient available in order to inherit from it. This
fixes importing this header from Objective-C or Swift.
Andrew Kaster 1 年之前
父节点
当前提交
e45b7b0a86
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. 1 0
      Userland/Libraries/LibWeb/SVG/SVGDecodedImageData.h

+ 1 - 0
Userland/Libraries/LibWeb/SVG/SVGDecodedImageData.h

@@ -8,6 +8,7 @@
 
 #include <LibWeb/DOM/Document.h>
 #include <LibWeb/HTML/DecodedImageData.h>
+#include <LibWeb/Page/Page.h>
 
 namespace Web::SVG {