]> git.lyx.org Git - features.git/commitdiff
* src/mathed/math_biginset.[Ch]
authorGeorg Baum <Georg.Baum@post.rwth-aachen.de>
Thu, 27 Apr 2006 07:55:25 +0000 (07:55 +0000)
committerGeorg Baum <Georg.Baum@post.rwth-aachen.de>
Thu, 27 Apr 2006 07:55:25 +0000 (07:55 +0000)
(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

src/mathed/math_biginset.C
src/mathed/math_biginset.h

index 2580fadbb5e04e17b55811fc838cb730b9cd4b95..9b1aaf5cb6e6db0038cce60c094c8efe41cf787d 100644 (file)
@@ -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
index abdf10407f84de973cc65d8fe3b501e29a639ba9..5d85fa2fa1040828639822c3c208a07384ab1d86 100644 (file)
@@ -32,6 +32,8 @@ public:
        ///
        void normalize(NormalStream & os) const;
        ///
+       void infoize2(std::ostream & os) const;
+       ///
        static bool isBigInsetDelim(std::string const &);
 
 private: