mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-26 14:15:32 +00:00
bug fix ('#1' got written as '#^^A')
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2994 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
3516a9a2fc
commit
146daa986e
@ -32,7 +32,7 @@ MathInset * MathMacroArgument::clone() const
|
||||
|
||||
void MathMacroArgument::write(WriteStream & os) const
|
||||
{
|
||||
os << '#' << number_;
|
||||
os << str_;
|
||||
}
|
||||
|
||||
|
||||
@ -60,7 +60,7 @@ void MathMacroArgument::draw(Painter & pain, int x, int y) const
|
||||
|
||||
void MathMacroArgument::normalize(NormalStream & os) const
|
||||
{
|
||||
os << "[macroarg " << number_ << "] ";
|
||||
os << "[macroarg " << str_ << "] ";
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user