initialze column

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@522 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Lars Gullik Bjønnes 2000-02-03 18:05:36 +00:00
parent bb96fd7de6
commit 2b5bee943a
2 changed files with 3 additions and 1 deletions

View File

@ -1,5 +1,7 @@
2000-02-03 Lars Gullik Bjønnes <larsbj@lyx.org>
* src/paragraph.C (SimpleDocBookOneTablePar): initialize column to 0
* src/lyxrc.C (output): added case RC_DATE_INSERT_FORMAT. Jug
forgot this when applying the patch. Please heed the warnings.

View File

@ -2950,7 +2950,7 @@ void LyXParagraph::SimpleDocBookOneTablePar(string & file, string & extra,
{
if (!table) return;
lyxerr[Debug::LATEX] << "SimpleDocbookOneTablePar... " << this << endl;
int column;
int column = 0;
LyXFont font1, font2;
char c;
Inset * inset;