summaryrefslogtreecommitdiffstats
path: root/tdehtml/rendering/render_table.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2021-01-03 16:25:52 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2021-01-03 16:50:58 +0900
commitb3012975a49a6520c1d3fd2108eb86a3dbaf8395 (patch)
treedf677f88717d2a9c310e26a84de9a5d3b0f7a989 /tdehtml/rendering/render_table.cpp
parent93f672a4c14e07366928299eb3c3182a562df086 (diff)
downloadtdelibs-b3012975a49a6520c1d3fd2108eb86a3dbaf8395.tar.gz
tdelibs-b3012975a49a6520c1d3fd2108eb86a3dbaf8395.zip
Fixed more uncrustify's code formatting offending files.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 05ee12e2df827059e6f1d01524c19905501cf105)
Diffstat (limited to 'tdehtml/rendering/render_table.cpp')
-rw-r--r--tdehtml/rendering/render_table.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/tdehtml/rendering/render_table.cpp b/tdehtml/rendering/render_table.cpp
index 9f2cc3366..ab0573048 100644
--- a/tdehtml/rendering/render_table.cpp
+++ b/tdehtml/rendering/render_table.cpp
@@ -1105,13 +1105,15 @@ void RenderTableSection::addCell( RenderTableCell *cell, RenderTableRow *row )
grid[cRow].height = height;
break;
case Relative:
+ {
#if 0
// we treat this as variable. This is correct according to HTML4, as it only specifies length for the height.
if ( cRowHeight.type == Variable ||
( cRowHeight.type == Relative && cRowHeight.value < height.value ) )
grid[cRow].height = height;
- break;
#endif
+ break;
+ }
default:
break;
}