[Libreoffice-commits] core.git: include/vcl vcl/source

Szymon Kłos (via logerrit) logerrit at kemper.freedesktop.org
Tue Oct 1 12:57:27 UTC 2019


 include/vcl/layout.hxx       |    1 +
 vcl/source/window/layout.cxx |    7 +++++++
 2 files changed, 8 insertions(+)

New commits:
commit 93d6bef4428d92c74e13a3f17b78be7026c782ba
Author:     Szymon Kłos <szymon.klos at collabora.com>
AuthorDate: Mon Sep 23 18:45:34 2019 +0200
Commit:     Szymon Kłos <szymon.klos at collabora.com>
CommitDate: Tue Oct 1 14:56:30 2019 +0200

    jsdialogs: set frame as a separate type
    
    Change-Id: I7f56d49dbe3b403c3716798bb52691748974aaae
    Reviewed-on: https://gerrit.libreoffice.org/79801
    Tested-by: Jenkins
    Reviewed-by: Szymon Kłos <szymon.klos at collabora.com>

diff --git a/include/vcl/layout.hxx b/include/vcl/layout.hxx
index cfc2b444eaef..ec40707c6306 100644
--- a/include/vcl/layout.hxx
+++ b/include/vcl/layout.hxx
@@ -409,6 +409,7 @@ public:
     virtual const vcl::Window *get_child() const override;
     vcl::Window *get_label_widget();
     const vcl::Window *get_label_widget() const;
+    virtual boost::property_tree::ptree DumpAsPropertyTree() override;
 protected:
     virtual Size calculateRequisition() const override;
     virtual void setAllocation(const Size &rAllocation) override;
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,


More information about the Libreoffice-commits mailing list