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
This commit is contained in:
André Pönitz 2001-08-09 16:02:43 +00:00
parent 0453939fbe
commit c06f5351cf
3 changed files with 2 additions and 19 deletions

View 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

View 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);

View 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;
///