Fixed compile bug in dropsrc.cpp (constr. arg); GnuWin32 fix in registry.cpp;

combobox event fix; moved SetAcceleratorTable down to window.h/cpp


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@524 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
1998-08-13 10:16:03 +00:00
parent 5e0394ae9b
commit 088a95f5ff
6 changed files with 27 additions and 9 deletions

View File

@@ -50,6 +50,7 @@ bool wxComboBox::MSWCommand(WXUINT param, WXWORD WXUNUSED(id))
{
wxCommandEvent event(wxEVT_COMMAND_TEXT_UPDATED, m_windowId);
event.SetString(copystring(GetValue()));
event.SetEventObject(this);
ProcessCommand(event);
delete[] event.GetString();
return TRUE;