undid the patches which shouldn't (IMHO) have been applied to this branch

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16040 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2002-07-04 17:26:36 +00:00
parent 9cc02d047b
commit 0ef2ebbafc
3 changed files with 13 additions and 50 deletions

View File

@@ -269,17 +269,11 @@ bool wxComboBox::MSWCommand(WXUINT param, WXWORD WXUNUSED(id))
event.SetString(value);
event.SetEventObject(this);
return ProcessCommand(event);
ProcessCommand(event);
}
break;
}
// I don't think the following should be true. The return value is
// whether the event has been handled, not the status of the handling.
// So, we only return false if the switch fell through. This will
// resolve the same event being sent multiple times by MS Windows.
// mea 05-22-01
// there is no return value for the CBN_ notifications, so always return
// FALSE from here to pass the message to DefWindowProc()
return FALSE;