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

Caolán McNamara caolanm at redhat.com
Wed Oct 4 12:20:13 UTC 2017


 vcl/source/window/builder.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 863dc26196a200de1540bf2e7a4809c8882795ed
Author: Caolán McNamara <caolanm at redhat.com>
Date:   Wed Oct 4 10:40:51 2017 +0100

    don't add WB_CLIPCHILDREN to toplevel dialog builder creation
    
    Change-Id: I402ebea3acf6ca7f4d61785944c933663b35e1f3
    Reviewed-on: https://gerrit.libreoffice.org/43125
    Tested-by: Jenkins <ci at libreoffice.org>
    Reviewed-by: Caolán McNamara <caolanm at redhat.com>
    Tested-by: Caolán McNamara <caolanm at redhat.com>

diff --git a/vcl/source/window/builder.cxx b/vcl/source/window/builder.cxx
index 0ca4e710b75a..d2bdc7f94146 100644
--- a/vcl/source/window/builder.cxx
+++ b/vcl/source/window/builder.cxx
@@ -1178,7 +1178,7 @@ VclPtr<vcl::Window> VclBuilder::makeObject(vcl::Window *pParent, const OString &
     VclPtr<vcl::Window> xWindow;
     if (name == "GtkDialog")
     {
-        WinBits nBits = WB_CLIPCHILDREN|WB_MOVEABLE|WB_3DLOOK|WB_CLOSEABLE;
+        WinBits nBits = WB_MOVEABLE|WB_3DLOOK|WB_CLOSEABLE;
         if (extractResizable(rMap))
             nBits |= WB_SIZEABLE;
         xWindow = VclPtr<Dialog>::Create(pParent, nBits);


More information about the Libreoffice-commits mailing list