Blob Blame History Raw
From d9521709e35a62c5e56d099d49bad5316bc394c4 Mon Sep 17 00:00:00 2001
From: Miklos Vajna <vmiklos@collabora.co.uk>
Date: Fri, 30 Oct 2015 16:00:03 +0100
Subject: [PATCH 255/398] ScTabView::getRowColumnHeaders: emit info about last
 formatted row/col

Change-Id: I6b4f6eacde84433fa3865e62c692a3f97895b887
(cherry picked from commit 3bdce53c557a1279e7e40d215e34405626bbc628)
---
 sc/source/ui/view/tabview.cxx | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sc/source/ui/view/tabview.cxx b/sc/source/ui/view/tabview.cxx
index 4dccc9b4032a..a3718f62cd7e 100644
--- a/sc/source/ui/view/tabview.cxx
+++ b/sc/source/ui/view/tabview.cxx
@@ -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);
-- 
2.12.0