Applied patch [ 873021 ] Bug fix for MSW wxComboBox

wxComboBox::GetValue within a wxEVT_COMMAND_TEXT_UPDATED event
should now pass the correct value even if the handler for
wxEVT_COMMAND_COMBOBOX_SELECTED changed the selection


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@25099 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
2004-01-08 14:59:57 +00:00
parent 30ec5dbb49
commit 28764ac9d1

View File

@@ -311,6 +311,14 @@ bool wxComboBox::MSWCommand(WXUINT param, WXWORD WXUNUSED(id))
}
else // we're synthesizing text updated event from sel change
{
// We need to retrieve the current selection because the user
// may have changed it in the previous handler (for CBN_SELCHANGE
// above).
sel = GetSelection();
if ( sel > -1 )
{
value = GetString(sel);
}
// we need to do this because the user code expects
// wxComboBox::GetValue() to return the new value from
// "text updated" handler but it hadn't been updated yet