[Libreoffice-commits] core.git: Branch 'libreoffice-7-1' - vcl/unx

Julien Nabet (via logerrit) logerrit at kemper.freedesktop.org
Mon Dec 21 15:07:00 UTC 2020


 vcl/unx/gtk3/gtk3gtkinst.cxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit b7af960c023bd8b5f1e0d53efa8b4802f77cc3c4
Author:     Julien Nabet <serval2412 at yahoo.fr>
AuthorDate: Mon Dec 21 11:13:52 2020 +0100
Commit:     Caolán McNamara <caolanm at redhat.com>
CommitDate: Mon Dec 21 16:06:25 2020 +0100

    Fix reversed values for gtk_container_child_set (vcl/gtk3)
    
    Change-Id: Ie9597a72380d4c7fe0647a175febfccf362bd20f
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/108090
    Tested-by: Jenkins
    Reviewed-by: Caolán McNamara <caolanm at redhat.com>

diff --git a/vcl/unx/gtk3/gtk3gtkinst.cxx b/vcl/unx/gtk3/gtk3gtkinst.cxx
index 5e329b541111..05f103ffc586 100644
--- a/vcl/unx/gtk3/gtk3gtkinst.cxx
+++ b/vcl/unx/gtk3/gtk3gtkinst.cxx
@@ -1819,8 +1819,8 @@ namespace
         if (GTK_IS_GRID(pParent))
         {
             gtk_container_child_set(GTK_CONTAINER(pParent), pReplacement,
-                    "left-attach", nTopAttach,
-                    "top-attach", nLeftAttach,
+                    "left-attach", nLeftAttach,
+                    "top-attach", nTopAttach,
                     "width", nWidth,
                     "height", nHeight,
                     nullptr);


More information about the Libreoffice-commits mailing list