> After getting irritated (again) at linux, I installed freebsd again.
> Somewhere along the way, my main linux partition seems to have taken
> some damage. Does anyone have an mmtar later than 98/11/02? I thought
> that that was the last one, but under freebsd I get,
You can check the mailing list archive.
> MailMerge.C: In function `void mergeRestOfBuffer()':
> MailMerge.C:774: bad argument 1 for function `void
LyXText::InsertStringA(char *)' (type was const char *)
> *** Error code 1
> 1 error
> *** Error code 1
> 1 error
Or you can use a cast.
If you have "text.InsertStringA(str);", use "text.InsertStringA((char *)
str);".
If it's an LString, use "text.InsertStringA(str.copy());" rather than
"text.insertStringA(str.c_str());".
Greets,
Asger