diff options
author | Szymon Kłos <szymon.klos@collabora.com> | 2019-11-26 15:03:27 +0100 |
---|---|---|
committer | Szymon Kłos <szymon.klos@collabora.com> | 2019-11-28 09:45:24 +0100 |
commit | fc34df00c47e97fa1a9633c1e14e8b9df52f77f5 (patch) | |
tree | f1f10bf3ca91517ca92f4ba798366fee24a9becf /svl | |
parent | 5bc3ef9b93cfa2372ec5553affb14741db50bb2d (diff) |
jsdialogs: send graphic items updates
Change-Id: I57d05726f80115b92e7599a7d033bf1ea8f79695
Reviewed-on: https://gerrit.libreoffice.org/83955
Tested-by: Jenkins
Reviewed-by: Szymon Kłos <szymon.klos@collabora.com>
Diffstat (limited to 'svl')
-rw-r--r-- | svl/source/items/intitem.cxx | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/svl/source/items/intitem.cxx b/svl/source/items/intitem.cxx index 1345308281fa..f4016097637f 100644 --- a/svl/source/items/intitem.cxx +++ b/svl/source/items/intitem.cxx @@ -58,6 +58,14 @@ bool SfxInt16Item::GetPresentation(SfxItemPresentation, } +boost::property_tree::ptree SfxInt16Item::dumpAsJSON() const +{ + boost::property_tree::ptree aTree = SfxPoolItem::dumpAsJSON(); + aTree.put("state", GetValue()); + return aTree; +} + + // virtual bool SfxInt16Item::QueryValue(css::uno::Any& rVal, sal_uInt8) const { |