Update current version of litehtml. Fix a crash when document contains no fonts
[claws.git] / src / plugins / litehtml_viewer / litehtml / el_div.h
index 54eed843f6c4f21254643ff898fc7f854c8bcfec..ece762f51ac31b2970547c0b77434e0f04101778 100644 (file)
@@ -1,14 +1,18 @@
-#pragma once\r
-#include "html_tag.h"\r
-\r
-namespace litehtml\r
-{\r
-       class el_div : public html_tag\r
-       {\r
-       public:\r
-               el_div(const std::shared_ptr<litehtml::document>& doc);\r
-               virtual ~el_div();\r
-\r
-               virtual void parse_attributes() override;\r
-       };\r
-}
\ No newline at end of file
+#ifndef LH_EL_DIV_H
+#define LH_EL_DIV_H
+
+#include "html_tag.h"
+
+namespace litehtml
+{
+       class el_div : public html_tag
+       {
+       public:
+               el_div(const std::shared_ptr<litehtml::document>& doc);
+               virtual ~el_div();
+
+               virtual void parse_attributes() override;
+       };
+}
+
+#endif  // LH_EL_DIV_H