- lyx2lyx/lyx_2_1.py: remove wrong info (was a copy/paste mistake)

- GuiTabular.cpp: fix a comment
This commit is contained in:
Uwe Stöhr 2012-03-20 01:26:55 +01:00
parent 9236a93894
commit 0332e90ed1
2 changed files with 1 additions and 3 deletions

View 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

View 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);