Override wxTextEntry::GetSelection(long *from, long *to) in wxOwnerDrawnComboBox to resolve virtual method hiding issues
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@66386 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -1070,6 +1070,11 @@ int wxOwnerDrawnComboBox::GetSelection() const
|
||||
return GetVListBoxComboPopup()->GetSelection();
|
||||
}
|
||||
|
||||
void wxOwnerDrawnComboBox::GetSelection(long *from, long *to) const
|
||||
{
|
||||
return wxComboCtrl::GetSelection(from, to);
|
||||
}
|
||||
|
||||
int wxOwnerDrawnComboBox::DoInsertItems(const wxArrayStringsAdapter& items,
|
||||
unsigned int pos,
|
||||
void **clientData,
|
||||
|
||||
Reference in New Issue
Block a user