projects
/
wxWidgets.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e65cc56
)
radiobox event now contains the string too
author
Vadim Zeitlin
<vadim@wxwidgets.org>
Wed, 4 Aug 1999 14:49:37 +0000
(14:49 +0000)
committer
Vadim Zeitlin
<vadim@wxwidgets.org>
Wed, 4 Aug 1999 14:49:37 +0000
(14:49 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3264
c3d73ce0
-8a6f-49c7-b76d-
6d57e0e08775
src/msw/radiobox.cpp
patch
|
blob
|
blame
|
history
diff --git
a/src/msw/radiobox.cpp
b/src/msw/radiobox.cpp
index 7e44bde49ec6d7009098be0c98ebcce454b5debc..48d5ba171a674713e91bb1ce268e051da0ba6a91 100644
(file)
--- 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);
}