[Libreoffice-commits] online.git: kit/ChildSession.cpp

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


 kit/ChildSession.cpp |    4 ++++
 1 file changed, 4 insertions(+)

New commits:
commit b976a4bfc969361dd4cb8162944b007ade9b758a
Author:     Dennis Francis <dennis.francis at collabora.com>
AuthorDate: Tue May 19 18:51:11 2020 +0530
Commit:     Dennis Francis <dennis.francis at collabora.com>
CommitDate: Sat Jul 4 12:30:16 2020 +0200

    handle LOK_CALLBACK_INVALIDATE_SHEET_GEOMETRY
    
    Change-Id: I2f894f32d4c9e852d89159a55c0dd9effb45c09e
    Reviewed-on: https://gerrit.libreoffice.org/c/online/+/97955
    Tested-by: Dennis Francis <dennis.francis at collabora.com>
    Reviewed-by: Dennis Francis <dennis.francis at collabora.com>

diff --git a/kit/ChildSession.cpp b/kit/ChildSession.cpp
index 6d6344cef..c2644e68a 100644
--- a/kit/ChildSession.cpp
+++ b/kit/ChildSession.cpp
@@ -2282,6 +2282,7 @@ void ChildSession::rememberEventsForInactiveUser(const int type, const std::stri
              type == LOK_CALLBACK_GRAPHIC_SELECTION ||
              type == LOK_CALLBACK_DOCUMENT_SIZE_CHANGED ||
              type == LOK_CALLBACK_INVALIDATE_HEADER ||
+             type == LOK_CALLBACK_INVALIDATE_SHEET_GEOMETRY ||
              type == LOK_CALLBACK_CELL_ADDRESS ||
              type == LOK_CALLBACK_REFERENCE_MARKS)
     {
@@ -2606,6 +2607,9 @@ void ChildSession::loKitCallback(const int type, const std::string& payload)
     case LOK_CALLBACK_FORM_FIELD_BUTTON:
         sendTextFrame("formfieldbutton: " + payload);
         break;
+    case LOK_CALLBACK_INVALIDATE_SHEET_GEOMETRY:
+        sendTextFrame("invalidatesheetgeometry: " + payload);
+        break;
 
 #if !ENABLE_DEBUG
     // we want a compilation-time failure in the debug builds; but ERR in the


More information about the Libreoffice-commits mailing list