git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@20359
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
{ \
size_t n = IndexForInsert(lItem, fnCompare); \
\
{ \
size_t n = IndexForInsert(lItem, fnCompare); \
\
- return n < m_nCount && \
+ return (n >= m_nCount || \
(*fnCompare)((const void *)(long)lItem, \
(*fnCompare)((const void *)(long)lItem, \
- ((const void *)(long)m_pItems[n])) ? wxNOT_FOUND \
- : (int)n; \
+ ((const void *)(long)m_pItems[n]))) ? wxNOT_FOUND \
+ : (int)n; \
} \
\
/* add item at the end */ \
} \
\
/* add item at the end */ \