[Libreoffice-commits] core.git: wizards/com

Gabor Kelemen kelemeng at ubuntu.com
Tue Oct 31 09:03:42 UTC 2017


 wizards/com/sun/star/wizards/common/HelpIds.py |    1 +
 1 file changed, 1 insertion(+)

New commits:
commit 3c2e060f114c1e6d883af1fe63515b07ac886a5c
Author: Gabor Kelemen <kelemeng at ubuntu.com>
Date:   Mon Oct 30 22:22:01 2017 +0100

    Fix Wizard HIDs moved off by one
    
    In commit b3f96d2ccba362a2898bc3a4d365ce7c4d0698e2
    I made a mistake that caused a lot of Wizard HIDS go off by one
    i.e. they were attached to the next UI item.
    I noticed this in the Fax wizard.
    Adding one more empty array item seems to fix this.
    Problem was caused by the replacement of this line with an empty item:
    "", "HID:WIZARDS_HID_IS_BTN_NONE", # HID:41002
    
    Change-Id: Id7df502ac843ab0e572ca59a046f5bacdda7e9bc
    Reviewed-on: https://gerrit.libreoffice.org/44075
    Tested-by: Jenkins <ci at libreoffice.org>
    Reviewed-by: Andras Timar <andras.timar at collabora.com>

diff --git a/wizards/com/sun/star/wizards/common/HelpIds.py b/wizards/com/sun/star/wizards/common/HelpIds.py
index c76b9e3eaa8b..971fc149c51a 100644
--- a/wizards/com/sun/star/wizards/common/HelpIds.py
+++ b/wizards/com/sun/star/wizards/common/HelpIds.py
@@ -772,6 +772,7 @@ class HelpIds:
     "",
     "",
     "",
+    "",
     "HID:WIZARDS_HID_IS_BTN_OK", # HID:41003
     "HID:WIZARDS_HID_IS_BTN_CANCEL", # HID:41004
     "HID:WIZARDS_HID_IS_BTN_IMG1", # HID:41005


More information about the Libreoffice-commits mailing list