[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-6.4' - sc/source
Dennis Francis (via logerrit)
logerrit at kemper.freedesktop.org
Mon Jun 22 20:33:08 UTC 2020
sc/source/ui/view/tabview.cxx | 2 ++
1 file changed, 2 insertions(+)
New commits:
commit fcb176a46c6ad9fa5bf09830141e01e204290aaf
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: Mon Jun 22 22:32:36 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>
diff --git a/sc/source/ui/view/tabview.cxx b/sc/source/ui/view/tabview.cxx
index 4df6a2d60a05..ff88024319c8 100644
--- a/sc/source/ui/view/tabview.cxx
+++ b/sc/source/ui/view/tabview.cxx
@@ -2765,6 +2765,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