mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
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:
parent
0453939fbe
commit
c06f5351cf
@ -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
|
||||
|
@ -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);
|
||||
|
@ -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;
|
||||
///
|
||||
|
Loading…
Reference in New Issue
Block a user