summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKatarina Behrens <Katarina.Behrens@cib.de>2018-02-05 18:05:30 +0100
committerKatarina Behrens <Katarina.Behrens@cib.de>2018-02-06 10:37:29 +0100
commit7214a912f7ce1a1c1183f9eae6181656cfadea30 (patch)
tree01a43c811202bf60df19f21ffad6601837023dc9
parent6c9cae12f63ed2e48c7167782c13c6721990f393 (diff)
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@libreoffice.org> Reviewed-by: Katarina Behrens <Katarina.Behrens@cib.de>
-rw-r--r--include/svtools/extensionlistbox.hxx2
1 files changed, 1 insertions, 1 deletions
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;