Removed a return statement from void function

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@66389 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Jaakko Salli
2010-12-16 19:25:31 +00:00
parent eae20c901b
commit 2debe2b120

View File

@@ -1077,7 +1077,7 @@ int wxOwnerDrawnComboBox::GetSelection() const
void wxOwnerDrawnComboBox::GetSelection(long *from, long *to) const
{
return wxComboCtrl::GetSelection(from, to);
wxComboCtrl::GetSelection(from, to);
}
int wxOwnerDrawnComboBox::DoInsertItems(const wxArrayStringsAdapter& items,