fix warning about needless comparison of unsigned with 0
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@59540 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -3414,11 +3414,10 @@ void wxDataViewMainWindow::OnChar( wxKeyEvent &event )
|
||||
switch ( event.GetKeyCode() )
|
||||
{
|
||||
case WXK_RETURN:
|
||||
{
|
||||
if (m_currentRow >= 0)
|
||||
{
|
||||
wxWindow *parent = GetParent();
|
||||
wxDataViewEvent le(wxEVT_COMMAND_DATAVIEW_ITEM_ACTIVATED, parent->GetId());
|
||||
wxDataViewEvent le(wxEVT_COMMAND_DATAVIEW_ITEM_ACTIVATED,
|
||||
parent->GetId());
|
||||
le.SetItem( GetItemByRow(m_currentRow) );
|
||||
le.SetEventObject(parent);
|
||||
le.SetModel(GetOwner()->GetModel());
|
||||
@@ -3426,7 +3425,7 @@ void wxDataViewMainWindow::OnChar( wxKeyEvent &event )
|
||||
parent->GetEventHandler()->ProcessEvent(le);
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
||||
case WXK_UP:
|
||||
if ( m_currentRow > 0 )
|
||||
OnArrowChar( m_currentRow - 1, event );
|
||||
|
Reference in New Issue
Block a user