Add support for wxLB_EXTENDED style to wxQt wxListBox

Closes https://github.com/wxWidgets/wxWidgets/pull/1383
This commit is contained in:
Graham Dawes 2019-07-03 11:44:11 +01:00 committed by Vadim Zeitlin
parent ae2cb7d347
commit ab553cd6db

View File

@ -146,7 +146,7 @@ void wxListBox::DoCreate(wxWindow* parent, long style)
} }
else if ( style & wxLB_EXTENDED ) else if ( style & wxLB_EXTENDED )
{ {
wxMISSING_IMPLEMENTATION( wxSTRINGIZE( wxLB_EXTENDED )); m_qtListWidget->setSelectionMode(QAbstractItemView::ExtendedSelection);
} }
} }