From 93d6bef4428d92c74e13a3f17b78be7026c782ba Mon Sep 17 00:00:00 2001 From: Szymon Kłos Date: Mon, 23 Sep 2019 18:45:34 +0200 Subject: jsdialogs: set frame as a separate type MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I7f56d49dbe3b403c3716798bb52691748974aaae Reviewed-on: https://gerrit.libreoffice.org/79801 Tested-by: Jenkins Reviewed-by: Szymon Kłos --- vcl/source/window/layout.cxx | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'vcl/source/window/layout.cxx') diff --git a/vcl/source/window/layout.cxx b/vcl/source/window/layout.cxx index 4e92e8c2264f..294902e3aa2e 100644 --- a/vcl/source/window/layout.cxx +++ b/vcl/source/window/layout.cxx @@ -1635,6 +1635,13 @@ OUString VclFrame::getDefaultAccessibleName() const return VclBin::getDefaultAccessibleName(); } +boost::property_tree::ptree VclFrame::DumpAsPropertyTree() +{ + boost::property_tree::ptree aTree(VclBin::DumpAsPropertyTree()); + aTree.put("type", "frame"); + return aTree; +} + Size VclAlignment::calculateRequisition() const { Size aRet(m_nLeftPadding + m_nRightPadding, -- cgit v1.2.3