diff options
author | Szymon Kłos <szymon.klos@collabora.com> | 2020-08-10 12:57:00 +0200 |
---|---|---|
committer | Jan Holesovsky <kendy@collabora.com> | 2020-08-10 21:09:01 +0200 |
commit | 035d850179688137dcf145cf3e779b6e05779239 (patch) | |
tree | cc42959841df472fdd90c6a8e961c5212ecd53cf /include | |
parent | 8f12f79818e85c31c1f752c200d9174093d0dfca (diff) |
lok: send cell border state updates
Change-Id: I400ee3cb9f0a98804d98e25d0164fa5148b79191
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/100424
Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoffice@gmail.com>
Reviewed-by: Jan Holesovsky <kendy@collabora.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/editeng/boxitem.hxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/editeng/boxitem.hxx b/include/editeng/boxitem.hxx index 103967578f20..8cf1c2d60545 100644 --- a/include/editeng/boxitem.hxx +++ b/include/editeng/boxitem.hxx @@ -118,6 +118,8 @@ public: static css::table::BorderLine2 SvxLineToLine( const editeng::SvxBorderLine* pLine, bool bConvert ); static bool LineToSvxLine(const css::table::BorderLine& rLine, editeng::SvxBorderLine& rSvxLine, bool bConvert); static bool LineToSvxLine(const css::table::BorderLine2& rLine, editeng::SvxBorderLine& rSvxLine, bool bConvert); + + virtual boost::property_tree::ptree dumpAsJSON() const override; }; inline void SvxBoxItem::SetAllDistances(sal_uInt16 const nNew) @@ -234,6 +236,8 @@ public: nValidFlags &= ~nValid; } void ResetFlags(); + + virtual boost::property_tree::ptree dumpAsJSON() const override; }; namespace editeng |