mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-11 11:08:41 +00:00
move plaintext output of math macros where it belongs
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@17327 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
5576b516c4
commit
2de83b4598
@ -37,12 +37,6 @@ public:
|
|||||||
|
|
||||||
///
|
///
|
||||||
void setPosCache(PainterInfo const & pi, int x, int y) const;
|
void setPosCache(PainterInfo const & pi, int x, int y) const;
|
||||||
///
|
|
||||||
int plaintext(Buffer const &, odocstream & os,
|
|
||||||
OutputParams const &) const
|
|
||||||
{ // FIXME: math macros are output here but
|
|
||||||
// should be handled in InsetMathHull
|
|
||||||
os << "[math macro]"; return 12; }
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
@ -44,6 +44,11 @@ public:
|
|||||||
void write(Buffer const &, std::ostream & os) const;
|
void write(Buffer const &, std::ostream & os) const;
|
||||||
///
|
///
|
||||||
void write(WriteStream & os) const;
|
void write(WriteStream & os) const;
|
||||||
|
///
|
||||||
|
int plaintext(Buffer const &, odocstream & os,
|
||||||
|
OutputParams const &) const
|
||||||
|
{ os << "[math macro]"; return 12; }
|
||||||
|
|
||||||
/// Number of arguments
|
/// Number of arguments
|
||||||
int numargs() const;
|
int numargs() const;
|
||||||
///
|
///
|
||||||
|
Loading…
Reference in New Issue
Block a user