Kaydet (Commit) 69de44eb authored tarafından Miklos Vajna's avatar Miklos Vajna

ScTabView::getRowColumnHeaders: emit info about last formatted row/col

Change-Id: I6b4f6eacde84433fa3865e62c692a3f97895b887
(cherry picked from commit 3bdce53c)
üst a4225957
......@@ -2314,7 +2314,7 @@ OUString ScTabView::getRowColumnHeaders()
pDoc->GetTiledRenderingArea(aViewData.GetTabNo(), nEndCol, nEndRow);
boost::property_tree::ptree aRows;
for (SCROW nRow = 0; nRow < nEndRow; ++nRow)
for (SCROW nRow = 0; nRow <= nEndRow; ++nRow)
{
boost::property_tree::ptree aRow;
sal_uInt16 nSize = pRowBar[SC_SPLIT_BOTTOM]->GetEntrySize(nRow);
......@@ -2325,7 +2325,7 @@ OUString ScTabView::getRowColumnHeaders()
}
boost::property_tree::ptree aCols;
for (SCCOL nCol = 0; nCol < nEndCol; ++nCol)
for (SCCOL nCol = 0; nCol <= nEndCol; ++nCol)
{
boost::property_tree::ptree aCol;
sal_uInt16 nSize = pColBar[SC_SPLIT_LEFT]->GetEntrySize(nCol);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment