From: Vadim Zeitlin Date: Wed, 4 Aug 1999 14:49:37 +0000 (+0000) Subject: radiobox event now contains the string too X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/36dda0de23ccd834035ddf063e909363ff29a64e radiobox event now contains the string too git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3264 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/msw/radiobox.cpp b/src/msw/radiobox.cpp index 7e44bde49e..48d5ba171a 100644 --- a/src/msw/radiobox.cpp +++ b/src/msw/radiobox.cpp @@ -700,6 +700,7 @@ void wxRadioBox::SendNotificationEvent() { wxCommandEvent event(wxEVT_COMMAND_RADIOBOX_SELECTED, m_windowId); event.SetInt( m_selectedButton ); + event.SetString( GetString(m_selectedButton) ); event.SetEventObject( this ); ProcessCommand(event); }