[Libreoffice-commits] core.git: Branch 'libreoffice-5-0' - vcl/source

Andras Timar andras.timar at collabora.com
Wed Jun 24 03:42:41 PDT 2015


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

New commits:
commit b530da968be856ea8fc23887104da46a266e09be
Author: Andras Timar <andras.timar at collabora.com>
Date:   Wed Jun 24 02:16:00 2015 -0700

    tdf#91380 add WB_MOVEABLE bit to docking windows
    
    Change-Id: Iab913747180bf1588da2d703069650e3e6916414
    Reviewed-on: https://gerrit.libreoffice.org/16445
    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 51bab75..40d4614 100644
--- a/vcl/source/window/builder.cxx
+++ b/vcl/source/window/builder.cxx
@@ -1045,7 +1045,7 @@ namespace
         else if (sType == "popup-menu")
             nBits |= WB_SYSTEMWINDOW | WB_DIALOGCONTROL | WB_POPUP;
         else if (sType == "dock")
-            nBits |= WB_DOCKABLE;
+            nBits |= WB_DOCKABLE | WB_MOVEABLE;
         else
             nBits |= WB_MOVEABLE;
         return nBits;


More information about the Libreoffice-commits mailing list