> "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
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]
> "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
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);