add coments/questions

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1810 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Lars Gullik Bjønnes 2001-03-23 08:26:36 +00:00
parent 076298793d
commit 8c26f725e8
2 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2001-03-23 Lars Gullik Bjønnes <larsbj@trylle.birdstep.com>
* tabular.C: add some comments.
2001-03-22 Juergen Vigna <jug@sad.it>
* buffer.C (parseSingleLyXformat2Token): redone the minipage

View File

@ -1993,6 +1993,7 @@ int LyXTabular::TeXCellPreamble(ostream & os, int cell) const
if (LeftLine(cell))
os << '|';
if (!GetPWidth(cell).empty()) {
#warning Jürgen, are these alignments correct? (Lgb)
switch (GetVAlignment(cell)) {
case LYX_VALIGN_TOP:
os << "p";
@ -2043,6 +2044,7 @@ int LyXTabular::TeXCellPreamble(ostream & os, int cell) const
} else if (GetUsebox(cell) == BOX_MINIPAGE) {
os << "\\begin{minipage}[";
switch (GetVAlignment(cell)) {
#warning Jürgen, are these alignments correct? (Lgb)
case LYX_VALIGN_TOP:
os << "t";
break;
@ -2107,6 +2109,7 @@ int LyXTabular::Latex(Buffer const * buf,
os << column_info[i].align_special;
} else if (!column_info[i].p_width.empty()) {
switch (column_info[i].valignment) {
#warning Jürgen, are these alignments correct? (Lgb)
case LYX_VALIGN_TOP:
os << "p";
break;