[Libreoffice-commits] core.git: Branch 'libreoffice-6-3' - vcl/source

Caolán McNamara (via logerrit) logerrit at kemper.freedesktop.org
Sat Jun 22 17:29:05 UTC 2019


 vcl/source/app/salvtables.cxx |    6 ++++++
 1 file changed, 6 insertions(+)

New commits:
commit 01cd1d68d96057624db38b9baaa6c6795353758d
Author:     Caolán McNamara <caolanm at redhat.com>
AuthorDate: Fri Jun 21 21:55:20 2019 +0100
Commit:     Caolán McNamara <caolanm at redhat.com>
CommitDate: Sat Jun 22 19:28:18 2019 +0200

    Related: tdf#126036 sort button by native order for async dialogs too
    
    Change-Id: Iddc689b8d332e8e0127806c37b5ccce66eadfcf6
    Reviewed-on: https://gerrit.libreoffice.org/74541
    Tested-by: Jenkins
    Reviewed-by: Caolán McNamara <caolanm at redhat.com>
    Tested-by: Caolán McNamara <caolanm at redhat.com>

diff --git a/vcl/source/app/salvtables.cxx b/vcl/source/app/salvtables.cxx
index 1330b125320f..f5f86da203f7 100644
--- a/vcl/source/app/salvtables.cxx
+++ b/vcl/source/app/salvtables.cxx
@@ -1202,6 +1202,9 @@ public:
         VclAbstractDialog::AsyncContext aCtx;
         aCtx.mxOwnerDialogController = aOwner;
         aCtx.maEndDialogFn = rEndDialogFn;
+        VclButtonBox* pActionArea = m_xDialog->get_action_area();
+        if (pActionArea)
+           pActionArea->sort_native_button_order();
         return m_xDialog->StartExecuteAsync(aCtx);
     }
 
@@ -1213,6 +1216,9 @@ public:
         // which is that rxSelf enforces.
         aCtx.mxOwnerSelf = rxSelf;
         aCtx.maEndDialogFn = rEndDialogFn;
+        VclButtonBox* pActionArea = m_xDialog->get_action_area();
+        if (pActionArea)
+           pActionArea->sort_native_button_order();
         return m_xDialog->StartExecuteAsync(aCtx);
     }
 


More information about the Libreoffice-commits mailing list