]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/checklst.cpp
slight optimization for wxHtmlEntitiesParser::GetEntityChar() in UTF-8 build: use...
[wxWidgets.git] / src / msw / checklst.cpp
index 2fb4e4e5087e0a8818880a02f73d08d93325e916..65325be752cf765a46e2e08f9392d462489d2ac6 100644 (file)
@@ -251,6 +251,7 @@ void wxCheckListBoxItem::SendEvent()
     wxCommandEvent event(wxEVT_COMMAND_CHECKLISTBOX_TOGGLED, m_pParent->GetId());
     event.SetInt(m_nIndex);
     event.SetEventObject(m_pParent);
+    event.SetString(m_pParent->GetString(m_nIndex));
     m_pParent->ProcessCommand(event);
 }