mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-26 11:16:55 +00:00
initialze column
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@522 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
bb96fd7de6
commit
2b5bee943a
@ -1,5 +1,7 @@
|
|||||||
2000-02-03 Lars Gullik Bjønnes <larsbj@lyx.org>
|
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
|
* src/lyxrc.C (output): added case RC_DATE_INSERT_FORMAT. Jug
|
||||||
forgot this when applying the patch. Please heed the warnings.
|
forgot this when applying the patch. Please heed the warnings.
|
||||||
|
|
||||||
|
@ -2950,7 +2950,7 @@ void LyXParagraph::SimpleDocBookOneTablePar(string & file, string & extra,
|
|||||||
{
|
{
|
||||||
if (!table) return;
|
if (!table) return;
|
||||||
lyxerr[Debug::LATEX] << "SimpleDocbookOneTablePar... " << this << endl;
|
lyxerr[Debug::LATEX] << "SimpleDocbookOneTablePar... " << this << endl;
|
||||||
int column;
|
int column = 0;
|
||||||
LyXFont font1, font2;
|
LyXFont font1, font2;
|
||||||
char c;
|
char c;
|
||||||
Inset * inset;
|
Inset * inset;
|
||||||
|
Loading…
Reference in New Issue
Block a user