diff options
author | Gevel Tekens <geveltekens@gmail.com> | 2025-02-04 23:13:27 +0100 |
---|---|---|
committer | Rodrigo Arias Mallo <rodarima@gmail.com> | 2025-02-05 21:50:39 +0100 |
commit | 6cd133d2f242d36bd48ddea44acd868f70782d0b (patch) | |
tree | d6846c0e13706fb1dbb94885cb2980a639d22735 /dw/table.cc | |
parent | 0c7e087fbd0278da9a39bd16ab9385073f1f495c (diff) |
Fix several typos
See: https://lists.mailman3.com/hyperkitty/list/dillo-dev@mailman3.com/thread/L3FFAINJJMIOZQNID5HC2DHKJIIIHEYH/
Diffstat (limited to 'dw/table.cc')
-rw-r--r-- | dw/table.cc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/dw/table.cc b/dw/table.cc index 18bf81cd..aa126013 100644 --- a/dw/table.cc +++ b/dw/table.cc @@ -255,7 +255,7 @@ int Table::getAvailWidthOfChild (Widget *child, bool forceValue) // An alternative would be incremental resizing for tables; this // approach resembles the behaviour before GROWS. - // TODO Does it still make sence to return -1 when forceValue is + // TODO Does it still make sense to return -1 when forceValue is // set? if (forceValue) width = calcAvailWidthForDescendant (child); @@ -273,7 +273,7 @@ int Table::calcAvailWidthForDescendant (Widget *child) DBG_OBJ_ENTER ("resize", 0, "calcAvailWidthForDescendant", "%p", child); // "child" is not a direct child, but a direct descendant. Search - // for the actual childs. + // for the actual children. Widget *actualChild = child; while (actualChild != NULL && actualChild->getParent () != this) actualChild = actualChild->getParent (); @@ -1015,7 +1015,7 @@ void Table::actuallyCalcCellSizes (bool calcHeights) colExtremes->getRef(col)->minWidthIntrinsic; else // Columns without percentage width get only the - // intrinsic mininal, so subtract this from the width for the + // intrinsic minimal, so subtract this from the width for the // columns *with* percentage widthPartPer -= colExtremes->getRef(col)->minWidthIntrinsic; @@ -1076,7 +1076,7 @@ void Table::actuallyCalcCellSizes (bool calcHeights) "subcase 2b: %d column(s) with specified width", numColWidthSpecified); - // Seperate columns with specified and unspecified width, and + // Separate columns with specified and unspecified width, and // apply apportion2() only to the latter. int numNotSpecified = colExtremes->size() - numColWidthSpecified; @@ -1625,7 +1625,7 @@ void Table::apportion2 (int totalWidth, int firstCol, int lastCol, dest->set (destOffset - firstCol + col, width); } } else { // if (totalMin == 0) - // Last special case. Ssame algorithm, with + // Last special case. Same algorithm, with // // x[i] = 1 (so cumX = i = col - firstCol + 1) // y[i] = width[i] |