]> git.lyx.org Git - features.git/blobdiff - src/insets/InsetText.cpp
Restore XHTML for InsetBox.
[features.git] / src / insets / InsetText.cpp
index 1d57c843a919a33e29216c14f41681f61848aa78..ccdc9f04ac826bea23d804fa986b37528e484aec 100644 (file)
@@ -889,4 +889,9 @@ docstring InsetText::getCaptionHTML(OutputParams const & runparams) const
 }
 
 
+InsetText::XHTMLOptions operator|(InsetText::XHTMLOptions a1, InsetText::XHTMLOptions a2)
+{
+       return static_cast<InsetText::XHTMLOptions>((int)a1 | (int)a2);
+}
+
 } // namespace lyx