Fix assert in dataview sample, fixes #12194: wxDataViewCtrl sample asserts in wxArgNormalizer
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@64806 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
0ea0604a1e
commit
a8fde0a8d0
@ -896,8 +896,9 @@ void MyFrame::OnValueChanged( wxDataViewEvent &event )
|
||||
if (!m_log)
|
||||
return;
|
||||
|
||||
wxLogMessage( "wxEVT_DATAVIEW_ITEM_VALUE_CHANGED, Item Id: %d; Column: %d",
|
||||
event.GetItem().GetID(), event.GetColumn() );
|
||||
wxString title = m_music_model->GetTitle( event.GetItem() );
|
||||
wxLogMessage( "wxEVT_DATAVIEW_ITEM_VALUE_CHANGED, Item Id: %s; Column: %d",
|
||||
title, event.GetColumn() );
|
||||
}
|
||||
|
||||
void MyFrame::OnActivated( wxDataViewEvent &event )
|
||||
|
Loading…
Reference in New Issue
Block a user