[Libreoffice-commits] core.git: sc/source

Dennis Francis (via logerrit) logerrit at kemper.freedesktop.org
Sat Jul 4 10:03:56 UTC 2020


 sc/source/ui/view/tabview.cxx |    2 ++
 1 file changed, 2 insertions(+)

New commits:
commit 9f7cf0907e5a5d2b571e9c859f6be7648341da72
Author:     Dennis Francis <dennis.francis at collabora.com>
AuthorDate: Wed May 13 22:33:44 2020 +0530
Commit:     Dennis Francis <dennis.francis at collabora.com>
CommitDate: Sat Jul 4 12:03:18 2020 +0200

    add row/col limits to the JSON
    
    Change-Id: I92cead8212f30d0cc9b811be21b6639830e84fa4
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/96903
    Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoffice at gmail.com>
    Reviewed-by: Dennis Francis <dennis.francis at collabora.com>
    (cherry picked from commit fcb176a46c6ad9fa5bf09830141e01e204290aaf)
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/96966
    Tested-by: Jenkins

diff --git a/sc/source/ui/view/tabview.cxx b/sc/source/ui/view/tabview.cxx
index 2658db649d40..c21f60e61eb3 100644
--- a/sc/source/ui/view/tabview.cxx
+++ b/sc/source/ui/view/tabview.cxx
@@ -2762,6 +2762,8 @@ OString ScTabView::getSheetGeometryData(bool bColumns, bool bRows, bool bSizes,
 {
     boost::property_tree::ptree aTree;
     aTree.put("commandName", ".uno:SheetGeometryData");
+    aTree.put("maxtiledcolumn", MAXCOL);
+    aTree.put("maxtiledrow", MAXTILEDROW);
 
     auto getJSONString = [](const boost::property_tree::ptree& rTree) {
         std::stringstream aStream;


More information about the Libreoffice-commits mailing list