git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@68495
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
wxListLineData *line = new wxListLineData(this);
line->SetItem( item.m_col, item );
wxListLineData *line = new wxListLineData(this);
line->SetItem( item.m_col, item );
- if ( item.m_mask & wxLIST_MASK_IMAGE )
+ if ( item.m_mask & wxLIST_MASK_IMAGE && item.GetImage() != -1)
{
// Reset the buffered height if it's not big enough for the new image.
if (m_small_image_list)
{
// Reset the buffered height if it's not big enough for the new image.
if (m_small_image_list)
wxListItem info;
info.m_text = label;
info.m_image = imageIndex;
wxListItem info;
info.m_text = label;
info.m_image = imageIndex;
- info.m_mask = wxLIST_MASK_TEXT | wxLIST_MASK_IMAGE;
+ info.m_mask = wxLIST_MASK_TEXT;
+ if (imageIndex > -1)
+ info.m_mask |= wxLIST_MASK_IMAGE;
info.m_itemId = index;
return InsertItem( info );
}
info.m_itemId = index;
return InsertItem( info );
}
wxListItem info;
info.m_image = imageIndex;
info.m_text = label;
wxListItem info;
info.m_image = imageIndex;
info.m_text = label;
- info.m_mask = wxLIST_MASK_IMAGE | wxLIST_MASK_TEXT;
+ info.m_mask = wxLIST_MASK_TEXT;
+ if (imageIndex > -1)
+ info.m_mask |= wxLIST_MASK_IMAGE;
info.m_itemId = index;
return InsertItem(info);
}
info.m_itemId = index;
return InsertItem(info);
}