Applied listbox isselected fix.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5308 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling 2000-01-08 16:53:37 +00:00
parent 3ac8d3bc52
commit c72b150f5d
2 changed files with 8 additions and 26 deletions

View File

@ -756,19 +756,10 @@ bool wxListBox::IsSelected( int n ) const
wxCHECK_MSG( m_list != NULL, FALSE, wxT("invalid listbox") );
GList *target = g_list_nth( m_list->children, n );
if (target)
{
GList *child = m_list->selection;
while (child)
{
if (child->data == target->data) return TRUE;
child = child->next;
}
}
wxFAIL_MSG(wxT("wrong listbox index"));
return FALSE;
wxCHECK_MSG( target, FALSE, wxT("invalid listbox index") );
return (GTK_WIDGET(target->data)->state == GTK_STATE_SELECTED) ;
}
void wxListBox::SetSelection( int n, bool select )

View File

@ -756,19 +756,10 @@ bool wxListBox::IsSelected( int n ) const
wxCHECK_MSG( m_list != NULL, FALSE, wxT("invalid listbox") );
GList *target = g_list_nth( m_list->children, n );
if (target)
{
GList *child = m_list->selection;
while (child)
{
if (child->data == target->data) return TRUE;
child = child->next;
}
}
wxFAIL_MSG(wxT("wrong listbox index"));
return FALSE;
wxCHECK_MSG( target, FALSE, wxT("invalid listbox index") );
return (GTK_WIDGET(target->data)->state == GTK_STATE_SELECTED) ;
}
void wxListBox::SetSelection( int n, bool select )