diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-06-22 16:45:03 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-06-25 10:16:37 +0200 |
commit | 01e37e3e5626551b6e8d261e357afcea1ba7c758 (patch) | |
tree | bbd1bd5402b07c44747d7962a9db48f9c04c1de0 /include/sfx2/sidebar | |
parent | e318d5d8146d18e2c76e23f2e3c39527f2af9f36 (diff) |
use tools::JsonWriter for dumping property tree
Change-Id: I8f55af19ba10b71bd621e69b27000ab7cb565309
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/96677
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/sfx2/sidebar')
-rw-r--r-- | include/sfx2/sidebar/Deck.hxx | 2 | ||||
-rw-r--r-- | include/sfx2/sidebar/Panel.hxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/sfx2/sidebar/Deck.hxx b/include/sfx2/sidebar/Deck.hxx index 21e7dfad5be7..e8f00b6c7f65 100644 --- a/include/sfx2/sidebar/Deck.hxx +++ b/include/sfx2/sidebar/Deck.hxx @@ -69,7 +69,7 @@ public: virtual bool EventNotify(NotifyEvent& rEvent) override; virtual void Resize() override; - virtual boost::property_tree::ptree DumpAsPropertyTree() override; + virtual void DumpAsPropertyTree(tools::JsonWriter&) override; static void PrintWindowSubTree (vcl::Window* pRoot, int nIndentation); diff --git a/include/sfx2/sidebar/Panel.hxx b/include/sfx2/sidebar/Panel.hxx index cae82bbc1d08..ee635220cf55 100644 --- a/include/sfx2/sidebar/Panel.hxx +++ b/include/sfx2/sidebar/Panel.hxx @@ -69,7 +69,7 @@ public: virtual void Resize() override; virtual void DataChanged (const DataChangedEvent& rEvent) override; virtual void ApplySettings(vcl::RenderContext& rRenderContext) override; - virtual boost::property_tree::ptree DumpAsPropertyTree() override; + virtual void DumpAsPropertyTree(tools::JsonWriter&) override; private: const OUString msPanelId; |