]> git.lyx.org Git - features.git/commitdiff
- lyx2lyx/lyx_2_1.py: remove wrong info (was a copy/paste mistake)
authorUwe Stöhr <uwestoehr@lyx.org>
Tue, 20 Mar 2012 00:26:55 +0000 (01:26 +0100)
committerUwe Stöhr <uwestoehr@lyx.org>
Tue, 20 Mar 2012 00:26:55 +0000 (01:26 +0100)
- GuiTabular.cpp: fix a comment

lib/lyx2lyx/lyx_2_1.py
src/frontends/qt4/GuiTabular.cpp

index fdab927b3463a755564996529cb979ea7f5bc712..1c7f7812506e369b06c166492c3f9f318a31754f 100644 (file)
@@ -581,7 +581,6 @@ def revert_cell_rotation(document):
   try:
     while True:
       # first, let's find out if we need to do anything
-      # cell type 3 is multirow begin cell
       i = find_token(document.body, '<cell ', i)
       if i == -1:
         return
@@ -620,7 +619,6 @@ def convert_cell_rotation(document):
     i = 0
     while True:
       # first, let's find out if we need to do anything
-      # cell type 3 is multirow begin cell
       i = find_token(document.body, '<cell ', i)
       if i == -1:
         return
index 0fe74e906f85c8713222a5744a4349af107e16fa..8e9d7a4afeac2e0792a490023dbd1e9cd77f7859 100644 (file)
@@ -449,7 +449,7 @@ docstring GuiTabular::dialogToParams() const
 
        // apply the column alignment
        // multirows inherit the alignment from the column; if a column width
-       // is set, multicolumns are always left-aligned so that in this case
+       // is set, multirows are always left-aligned so that in this case
        // its alignment must not be applied (see bug #8084)
        if (!(multirowCB->isChecked() && width != "0pt"))
                setHAlign(param_str);