Re: mathed font question

2002-01-03 Thread Jean-Marc Lasgouttes
> "Andre" == Andre Poenitz <[EMAIL PROTECTED]> writes: Andre> On Tue, Dec 18, 2001 at 02:40:04PM +0100, Jean-Marc Lasgouttes Andre> wrote: >> No the code was something like MathFonts = new >> LyXFont[FONT_NUM](LyXFont::ALL_SANE); Andre> Looks invalid to me anyway... Maybe it was something e

Re: mathed font question

2001-12-26 Thread Andre Poenitz
On Tue, Dec 18, 2001 at 02:40:04PM +0100, Jean-Marc Lasgouttes wrote: > No the code was something like > MathFonts = new LyXFont[FONT_NUM](LyXFont::ALL_SANE); Looks invalid to me anyway... Andre' -- André Pönitz .. [EMAIL PROTECTED]

Re: mathed font question

2001-12-18 Thread Jean-Marc Lasgouttes
> "Lars" == Lars Gullik Bjønnes <[EMAIL PROTECTED]> writes: Lars> I think this is a comment that we tried to use an initializer Lars> for this one time. Lars> font = { x, ,x, x, x, x,x , x}; Lars> and that cxx did not like it. No the code was something like MathFonts = new LyXFont[FO

mathed font question

2001-12-18 Thread Andre Poenitz
We currently have void mathed_init_fonts() { MathFonts = new LyXFont[FONT_NUM]; // DEC cxx cannot initialize all fonts at once (JMarc) rc// [2] for (int i = 0; i < FONT_NUM; ++i) // [1] MathFonts[i] = LyXFont(LyXFont::ALL_SANE);