From ab553cd6db4e9fa9f9255be20f8dbb281a2b2ffe Mon Sep 17 00:00:00 2001 From: Graham Dawes Date: Wed, 3 Jul 2019 11:44:11 +0100 Subject: [PATCH] Add support for wxLB_EXTENDED style to wxQt wxListBox Closes https://github.com/wxWidgets/wxWidgets/pull/1383 --- src/qt/listbox.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qt/listbox.cpp b/src/qt/listbox.cpp index 9e5ab77853..0e395c4744 100644 --- a/src/qt/listbox.cpp +++ b/src/qt/listbox.cpp @@ -146,7 +146,7 @@ void wxListBox::DoCreate(wxWindow* parent, long style) } else if ( style & wxLB_EXTENDED ) { - wxMISSING_IMPLEMENTATION( wxSTRINGIZE( wxLB_EXTENDED )); + m_qtListWidget->setSelectionMode(QAbstractItemView::ExtendedSelection); } }