From: Georg Baum Date: Thu, 27 Apr 2006 07:55:25 +0000 (+0000) Subject: * src/mathed/math_biginset.[Ch] X-Git-Tag: 1.6.10~13285 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=850346d9967829ce207338114a9892e929c8e05f;p=features.git * src/mathed/math_biginset.[Ch] (infoize2): Implement to show name if the cursor is to the right git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@13757 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/mathed/math_biginset.C b/src/mathed/math_biginset.C index 2580fadbb5..9b1aaf5cb6 100644 --- a/src/mathed/math_biginset.C +++ b/src/mathed/math_biginset.C @@ -98,6 +98,12 @@ void MathBigInset::normalize(NormalStream & os) const } +void MathBigInset::infoize2(std::ostream & os) const +{ + os << name_; +} + + bool MathBigInset::isBigInsetDelim(string const & delim) { // mathed_draw_deco must handle these diff --git a/src/mathed/math_biginset.h b/src/mathed/math_biginset.h index abdf10407f..5d85fa2fa1 100644 --- a/src/mathed/math_biginset.h +++ b/src/mathed/math_biginset.h @@ -32,6 +32,8 @@ public: /// void normalize(NormalStream & os) const; /// + void infoize2(std::ostream & os) const; + /// static bool isBigInsetDelim(std::string const &); private: