someone selling brown paperbags?

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3107 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
André Pönitz 2001-11-28 17:00:55 +00:00
parent ba180d4089
commit d917d5b57b
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2001-11-28 André Pönitz <poenitz@gmx.net>
* insetnote.C: add pos initialization that I removed without
knowing what I did.
2001-11-28 Juergen Vigna <jug@sad.it>
* insettabular.h: insert missing function allowSpellcheck()!

View File

@ -76,7 +76,7 @@ InsetNote::InsetNote(Buffer const * buf, string const & contents,
if (font.language()->RightToLeft())
font.setLanguage(default_language);
lyx::pos_type pos;
lyx::pos_type pos = 0;
buf->insertStringAsLines(par, pos, font, strip(contents, '\n'));
}