From: Mattia Barbon Date: Fri, 4 Jul 2003 09:01:46 +0000 (+0000) Subject: wxArrayString::Sort(bool) not deprecated (yet). X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/fd3f01603a76423698214e20e7b3971138270e80 wxArrayString::Sort(bool) not deprecated (yet). git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21618 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/string.cpp b/src/common/string.cpp index 76251136ca..7fe2592efb 100644 --- a/src/common/string.cpp +++ b/src/common/string.cpp @@ -2153,15 +2153,11 @@ void wxArrayString::Sort(CompareFunction2 compareFunction) qsort(m_pItems, m_nCount, sizeof(wxChar *), (wxStringCompareFn)compareFunction); } -#if WXWIN_COMPATIBILITY_2_4 - void wxArrayString::Sort(bool reverseOrder) { Sort(reverseOrder ? wxStringSortDescending : wxStringSortAscending); } -#endif // WXWIN_COMPATIBILITY_2_4 - void wxArrayString::DoSort() { wxCHECK_RET( !m_autoSort, wxT("can't use this method with sorted arrays") );