vcl/source/window/layout.cxx | 6 ++++++ 1 file changed, 6 insertions(+)
New commits: commit a9a2b6d63231b514754f16c029ca35bb7383e139 Author: Caolán McNamara <[email protected]> Date: Mon Feb 17 16:57:44 2014 +0000 Resolves: fdo#74284 use AccessibleRole::PANEL for VclBoxes under windows (cherry picked from commit 685ec1899435037205d98a102a32ca8b6a4836d0) Change-Id: Ic8c743c2646c8610b3d90425024413b40dfdab13 Reviewed-on: https://gerrit.libreoffice.org/8103 Reviewed-by: Michael Meeks <[email protected]> Tested-by: Michael Meeks <[email protected]> diff --git a/vcl/source/window/layout.cxx b/vcl/source/window/layout.cxx index 35e76a4..8d8ab0d 100644 --- a/vcl/source/window/layout.cxx +++ b/vcl/source/window/layout.cxx @@ -322,7 +322,13 @@ bool VclBox::set_property(const OString &rKey, const OString &rValue) sal_uInt16 VclBox::getDefaultAccessibleRole() const { +#if defined(WNT) + //fdo#74284 call Boxes Panels, keep then as "Filler" under + //at least Linux seeing as that's what Gtk does for GtkBoxes + return com::sun::star::accessibility::AccessibleRole::PANEL; +#else return com::sun::star::accessibility::AccessibleRole::FILLER; +#endif } #define DEFAULT_CHILD_MIN_WIDTH 85
_______________________________________________ Libreoffice-commits mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
