From 3e3149187174c0b91c0084fdceef4f148bbce173 Mon Sep 17 00:00:00 2001 From: Richard Heck Date: Tue, 30 Mar 2010 02:40:32 +0000 Subject: [PATCH] HTML for InsetMathBrace. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@33949 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/mathed/InsetMathBrace.cpp | 6 ++++++ src/mathed/InsetMathBrace.h | 2 ++ 2 files changed, 8 insertions(+) diff --git a/src/mathed/InsetMathBrace.cpp b/src/mathed/InsetMathBrace.cpp index c1034c9aee..14279c1d51 100644 --- a/src/mathed/InsetMathBrace.cpp +++ b/src/mathed/InsetMathBrace.cpp @@ -100,6 +100,12 @@ void InsetMathBrace::mathmlize(MathStream & os) const } +void InsetMathBrace::htmlize(HtmlStream & os) const +{ + os << cell(0); +} + + void InsetMathBrace::mathematica(MathematicaStream & os) const { os << cell(0); diff --git a/src/mathed/InsetMathBrace.h b/src/mathed/InsetMathBrace.h index e8e3ea9557..b28cd05e7d 100644 --- a/src/mathed/InsetMathBrace.h +++ b/src/mathed/InsetMathBrace.h @@ -48,6 +48,8 @@ public: /// void mathmlize(MathStream &) const; /// + void htmlize(HtmlStream &) const; + /// void infoize(odocstream & os) const; /// InsetCode lyxCode() const { return MATH_BRACE_CODE; }