don't crash in HiglightAll() (called, in particular, from SortItems()) when the control is empty (patch 1821550)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH@49590 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -2868,9 +2868,10 @@ void wxListMainWindow::HighlightAll( bool on )
|
|||||||
RefreshLine(m_current);
|
RefreshLine(m_current);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else // multi sel
|
else // multi selection
|
||||||
{
|
{
|
||||||
HighlightLines(0, GetItemCount() - 1, on);
|
if ( !IsEmpty() )
|
||||||
|
HighlightLines(0, GetItemCount() - 1, on);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -3105,7 +3106,7 @@ void wxListMainWindow::OnMouse( wxMouseEvent &event )
|
|||||||
if (event.RightDown())
|
if (event.RightDown())
|
||||||
{
|
{
|
||||||
SendNotify( (size_t) -1, wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK, event.GetPosition() );
|
SendNotify( (size_t) -1, wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK, event.GetPosition() );
|
||||||
|
|
||||||
wxContextMenuEvent evtCtx(
|
wxContextMenuEvent evtCtx(
|
||||||
wxEVT_CONTEXT_MENU,
|
wxEVT_CONTEXT_MENU,
|
||||||
GetParent()->GetId(),
|
GetParent()->GetId(),
|
||||||
@@ -5017,7 +5018,7 @@ bool wxGenericListCtrl::Create(wxWindow *parent,
|
|||||||
// add more styles here that should only appear
|
// add more styles here that should only appear
|
||||||
// in the main window
|
// in the main window
|
||||||
unsigned long only_main_window_style = wxALWAYS_SHOW_SB;
|
unsigned long only_main_window_style = wxALWAYS_SHOW_SB;
|
||||||
|
|
||||||
if ( !wxControl::Create( parent, id, pos, size, style & ~only_main_window_style, validator, name ) )
|
if ( !wxControl::Create( parent, id, pos, size, style & ~only_main_window_style, validator, name ) )
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user