X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/09d27bb4446b4d54605190b9ebcf88a808274f58..34f9227c5a7ffde70ef48da7268821082a866134:/include/wx/dynarray.h diff --git a/include/wx/dynarray.h b/include/wx/dynarray.h index 0085620961..a5b90b2b16 100644 --- a/include/wx/dynarray.h +++ b/include/wx/dynarray.h @@ -123,8 +123,8 @@ protected: /** Search the element in the array, starting from the either side @param bFromEnd if TRUE, start from the end - @return index of the first item matched or NOT_FOUND - @see NOT_FOUND + @return index of the first item matched or wxNOT_FOUND + @see wxNOT_FOUND */ int Index(long lItem, bool bFromEnd = FALSE) const; /// search for an item using binary search in a sorted array @@ -162,6 +162,9 @@ private: // types of sizeof()<=sizeof(long) or pointers if sizeof(pointer)<=sizeof(long) // // NB: it has only inline functions => takes no space at all +// Mod by JACS: Salford C++ doesn't like 'var->operator=' syntax, as in: +// { ((wxBaseArray *)this)->operator=((const wxBaseArray&)src); +// so using a temporary variable instead. // ---------------------------------------------------------------------------- #define _WX_DEFINE_ARRAY(T, name) \ typedef int (CMPFUNC_CONV *CMPFUNC##T)(T *pItem1, T *pItem2); \ @@ -172,7 +175,8 @@ public: \ { wxASSERT( sizeof(T) <= sizeof(long) ); } \ \ name& operator=(const name& src) \ - { ((wxBaseArray *)this)->operator=((const wxBaseArray&)src); \ + { wxBaseArray* temp = (wxBaseArray*) this; \ + (*temp) = ((const wxBaseArray&)src); \ return *this; } \ \ T& operator[](size_t uiIndex) const \ @@ -193,7 +197,7 @@ public: \ void Remove(size_t uiIndex) { wxBaseArray::Remove(uiIndex); } \ void Remove(T Item) \ { int iIndex = Index(Item); \ - wxCHECK2_MSG( iIndex != NOT_FOUND, return, \ + wxCHECK2_MSG( iIndex != wxNOT_FOUND, return, \ "removing inexisting element in wxArray::Remove" ); \ wxBaseArray::Remove((size_t)iIndex); } \ \ @@ -216,6 +220,9 @@ public: \ // the normal arrays otherwise. // // NB: it has only inline functions => takes no space at all +// Mod by JACS: Salford C++ doesn't like 'var->operator=' syntax, as in: +// { ((wxBaseArray *)this)->operator=((const wxBaseArray&)src); +// so using a temporary variable instead. // ---------------------------------------------------------------------------- #define _WX_DEFINE_SORTED_ARRAY(T, name) \ typedef int (CMPFUNC_CONV *SCMPFUNC##T)(T pItem1, T pItem2); \ @@ -226,7 +233,8 @@ public: \ { wxASSERT( sizeof(T) <= sizeof(long) ); m_fnCompare = fn; } \ \ name& operator=(const name& src) \ - { ((wxBaseArray *)this)->operator=((const wxBaseArray&)src); \ + { wxBaseArray* temp = (wxBaseArray*) this; \ + (*temp) = ((const wxBaseArray&)src); \ m_fnCompare = src.m_fnCompare; \ return *this; } \ \ @@ -246,7 +254,7 @@ public: \ void Remove(size_t uiIndex) { wxBaseArray::Remove(uiIndex); } \ void Remove(T Item) \ { int iIndex = Index(Item); \ - wxCHECK2_MSG( iIndex != NOT_FOUND, return, \ + wxCHECK2_MSG( iIndex != wxNOT_FOUND, return, \ "removing inexisting element in wxArray::Remove" ); \ wxBaseArray::Remove((size_t)iIndex); } \ \ @@ -428,6 +436,8 @@ WX_DEFINE_ARRAY(void *, wxArrayPtrVoid); { \ delete array[n]; \ } \ + \ + array.Empty(); \ } #endif // _DYNARRAY_H