Bug 1484126 - part 16: Replace |CellData::mEffectiveColSpan - 1| with CellData::NumberOfFollowingColumns() r=m_kato

Differential Revision: https://phabricator.services.mozilla.com/D8353

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Masayuki Nakano 2018-10-15 11:34:06 +00:00
Родитель 140330e8d3
Коммит cad6cdb5d5
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -2590,7 +2590,7 @@ HTMLEditor::JoinTableCells(bool aMergeNonContiguousContents)
}
// Save max selected column in this row, including extra colspan
lastColInRow =
cellData.mCurrent.mColumn + cellData.mEffectiveColSpan - 1;
cellData.mCurrent.mColumn + cellData.NumberOfFollowingColumns();
cellFoundInRow = true;
} else if (cellFoundInRow) {
// No cell or not selected, but at least one cell in row was found