]> git.lyx.org Git - features.git/commitdiff
rework of MathDelimInset almost finished... did that break anything?
authorAndré Pönitz <poenitz@gmx.net>
Thu, 9 Aug 2001 16:02:43 +0000 (16:02 +0000)
committerAndré Pönitz <poenitz@gmx.net>
Thu, 9 Aug 2001 16:02:43 +0000 (16:02 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2471 a592a061-630c-0410-9148-cb99ea01b6c8

src/mathed/ChangeLog
src/mathed/math_deliminset.C
src/mathed/math_deliminset.h

index 9d777481e7b8d0be01660ff6402da9116a875692..00b5093cd0220dee57bdc4f2ab4032c3c8503986 100644 (file)
@@ -8,6 +8,8 @@
 
        * math_inset.[Ch]: removal of the name_ member
 
+       * math_deliminset.[Ch]: rework
+
 2001-08-06  André Pönitz  <poenitz@gmx.net>
 
        * formulamacro.C: fix nasty bug due to missing copy constructor
index 6e1134f19a52be48cae9d4d12f219edb5309963c..f5cbc7b2f495c03a3b46f33d70b70e00d6dbb681 100644 (file)
@@ -14,20 +14,6 @@ MathDelimInset::MathDelimInset(latexkeys const * l, latexkeys const * r)
 {}
 
 
-MathDelimInset::MathDelimInset(int l, int r)
-       : MathNestInset(1)
-{
-       string ls;
-       ls += l;
-       left_ = in_word_set(ls);
-
-       string rs;
-       rs += r;
-       right_ = in_word_set(rs);
-}
-
-
-
 MathInset * MathDelimInset::clone() const
 {   
        return new MathDelimInset(*this);
index e9a7a01b08ba6226ae95d4a012ad6eb1e0f4e5b2..81b9432d43c48dbd7b3b55efbc55b712798868b5 100644 (file)
@@ -19,11 +19,6 @@ class MathDelimInset : public MathNestInset {
 public:
        ///
        MathDelimInset(latexkeys const *, latexkeys const *);
-
-#warning Remove this ass soon the Math panel patch is applied
-       ///
-       MathDelimInset(int, int);
-
        ///
        MathInset * clone() const;
        ///