From: Lars Gullik Bjønnes Date: Thu, 3 Feb 2000 18:05:36 +0000 (+0000) Subject: initialze column X-Git-Tag: 1.6.10~22393 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=2b5bee943a99c892bf17576df10dd84a18c14ae2;p=features.git initialze column git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@522 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/ChangeLog b/ChangeLog index c20585cd47..35a9ac2cd5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2000-02-03 Lars Gullik Bjønnes + * 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. diff --git a/src/paragraph.C b/src/paragraph.C index 8207582b2e..e00bda15cd 100644 --- a/src/paragraph.C +++ b/src/paragraph.C @@ -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;