From c06f5351cf8b58c4a0f9233e9f2e3c1f813af455 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Andr=C3=A9=20P=C3=B6nitz?= Date: Thu, 9 Aug 2001 16:02:43 +0000 Subject: [PATCH] rework of MathDelimInset almost finished... did that break anything? git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2471 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/mathed/ChangeLog | 2 ++ src/mathed/math_deliminset.C | 14 -------------- src/mathed/math_deliminset.h | 5 ----- 3 files changed, 2 insertions(+), 19 deletions(-) diff --git a/src/mathed/ChangeLog b/src/mathed/ChangeLog index 9d777481e7..00b5093cd0 100644 --- a/src/mathed/ChangeLog +++ b/src/mathed/ChangeLog @@ -8,6 +8,8 @@ * math_inset.[Ch]: removal of the name_ member + * math_deliminset.[Ch]: rework + 2001-08-06 André Pönitz * formulamacro.C: fix nasty bug due to missing copy constructor diff --git a/src/mathed/math_deliminset.C b/src/mathed/math_deliminset.C index 6e1134f19a..f5cbc7b2f4 100644 --- a/src/mathed/math_deliminset.C +++ b/src/mathed/math_deliminset.C @@ -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); diff --git a/src/mathed/math_deliminset.h b/src/mathed/math_deliminset.h index e9a7a01b08..81b9432d43 100644 --- a/src/mathed/math_deliminset.h +++ b/src/mathed/math_deliminset.h @@ -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; /// -- 2.39.2