]> git.lyx.org Git - lyx.git/blob - src/mathed/math_parinset.C
remove unneeded member
[lyx.git] / src / mathed / math_parinset.C
1
2 #include "math_parinset.h"
3 #include "math_mathmlstream.h"
4 #include "debug.h"
5
6
7 MathParInset::MathParInset()
8 {
9         lyxerr << "constructing MathParInset\n";
10 }
11
12
13 void MathParInset::metrics(MathMetricsInfo & mi) const
14 {
15         MathFontSetChanger dummy1(mi.base, "textnormal");
16         MathGridInset::metrics(mi);
17 }
18
19
20 void MathParInset::draw(MathPainterInfo & pi, int x, int y) const
21 {
22         MathFontSetChanger dummy1(pi.base, "textnormal");
23         MathGridInset::draw(pi, x, y);
24 }
25
26
27 void MathParInset::write(WriteStream & os) const
28 {
29         for (idx_type i = 0; i < nargs(); ++i)
30                 os << cell(i) << "\n";
31 }
32
33
34 void MathParInset::infoize(std::ostream & os) const
35 {
36         os << "Type: Paragraph ";
37 }
38