more honey for Angus's dinosaur

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2505 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
André Pönitz 2001-08-13 15:58:26 +00:00
parent d586e9e856
commit 48503551b1
3 changed files with 9 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2001-08-13 Angus Leeming <a.leeming@ic.ac.uk>
* math_parser.C (lexArg): remove default argument from the .C file
as it causes DEC cxx to complain about a redefinition.
2001-08-13 André Pönitz <poenitz@gmx.net>

View File

@ -259,7 +259,7 @@ unsigned char Parser::getuchar()
}
string Parser::lexArg(unsigned char lf, bool accept_spaces = false)
string Parser::lexArg(unsigned char lf, bool accept_spaces)
{
string result;
unsigned char c = 0;

View File

@ -669,6 +669,10 @@ void mathed_draw_deco(Painter & pain, int x, int y, int w, int h,
}
bool isBinaryOp(char c)
{
return true;
}
// In a near future maybe we use a better fonts renderer
void drawStr(Painter & pain, MathTextCodes type, MathStyles siz,