]> git.lyx.org Git - lyx.git/commitdiff
add coments/questions
authorLars Gullik Bjønnes <larsbj@gullik.org>
Fri, 23 Mar 2001 08:26:36 +0000 (08:26 +0000)
committerLars Gullik Bjønnes <larsbj@gullik.org>
Fri, 23 Mar 2001 08:26:36 +0000 (08:26 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1810 a592a061-630c-0410-9148-cb99ea01b6c8

src/ChangeLog
src/tabular.C

index 8abe8f9b995ef3b84741fc7e73839cf9afca73f1..2dc64eb6fc83cf5ae00f74a1220096f3289d296b 100644 (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
index 7e26aa1e249a52a69c10b1416701ba69efdd4aee..04ffe3e04089ea361175fcebff6b1b4d04d29397 100644 (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;