diff options
author | Marco Cecchetti <marco.cecchetti@collabora.com> | 2017-12-13 18:02:01 +0100 |
---|---|---|
committer | Marco Cecchetti <mrcekets@gmail.com> | 2017-12-16 14:13:46 +0100 |
commit | 7a5efaa02cbe4140c017d8777993479369c2f10a (patch) | |
tree | bf9aeceed51ab1a9e7d770d096d9944f1182503a /desktop | |
parent | 0f173b3fa7ff7cef9de537aba6d23c77dcc53e4b (diff) |
lok: sc: append the col, row position to the cell cursor message
The payload changes from: "x, y, width, height"
to: "x, y, width, height, column, row".
This feature is exploited by online starting from the 3.0 release.
This change is compatible with older online release:
the column, row coordinates are just ignored.
Change-Id: I7f8c0e3685c57ff20520ee068b215037f6137389
Reviewed-on: https://gerrit.libreoffice.org/46528
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Marco Cecchetti <mrcekets@gmail.com>
Diffstat (limited to 'desktop')
-rw-r--r-- | desktop/qa/desktop_lib/test_desktop_lib.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/desktop/qa/desktop_lib/test_desktop_lib.cxx b/desktop/qa/desktop_lib/test_desktop_lib.cxx index 71bd1af0adaf..ba76a8ca532d 100644 --- a/desktop/qa/desktop_lib/test_desktop_lib.cxx +++ b/desktop/qa/desktop_lib/test_desktop_lib.cxx @@ -774,7 +774,8 @@ void DesktopLOKTest::testCellCursor() boost::property_tree::read_json(aStream, aTree); OString aRectangle(aTree.get<std::string>("commandValues").c_str()); - CPPUNIT_ASSERT_EQUAL(OString("0, 0, 1279, 255"), aRectangle); + // cell cursor geometry + col + row + CPPUNIT_ASSERT_EQUAL(OString("0, 0, 1279, 255, 0, 0"), aRectangle); comphelper::LibreOfficeKit::setActive(false); } |