[Libreoffice-commits] core.git: include/svtools

Katarina Behrens Katarina.Behrens at cib.de
Tue Feb 6 09:37:50 UTC 2018


 include/svtools/extensionlistbox.hxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 7214a912f7ce1a1c1183f9eae6181656cfadea30
Author: Katarina Behrens <Katarina.Behrens at cib.de>
Date:   Mon Feb 5 18:05:30 2018 +0100

    tdf#104861: extension list is not a child dlg control anymore
    
    After 989cf68b68ed, 88f31af74816 and 3aec456ba8a0 buttons aren't
    embedded in the extension list anymore, so treating it like a
    child dlg control just causes Tab key to skip the widget
    
    Change-Id: I4372062c135804d8b51a8640c1e9959f03a617fe
    Reviewed-on: https://gerrit.libreoffice.org/49254
    Tested-by: Jenkins <ci at libreoffice.org>
    Reviewed-by: Katarina Behrens <Katarina.Behrens at cib.de>

diff --git a/include/svtools/extensionlistbox.hxx b/include/svtools/extensionlistbox.hxx
index 4f9542458aca..9d1a4bb95a24 100644
--- a/include/svtools/extensionlistbox.hxx
+++ b/include/svtools/extensionlistbox.hxx
@@ -36,7 +36,7 @@ class IExtensionListBox: public Control
 public:
     enum { ENTRY_NOTFOUND = -1 };
 
-    IExtensionListBox( vcl::Window* pParent ): Control( pParent, WB_BORDER | WB_TABSTOP | WB_CHILDDLGCTRL ){}
+    IExtensionListBox( vcl::Window* pParent ): Control( pParent, WB_BORDER | WB_TABSTOP ){}
 
     /** @return  The count of the entries in the list box. */
     virtual sal_Int32 getItemCount() const = 0;


More information about the Libreoffice-commits mailing list