X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ba8c1601448fa16d64c4e75a095f1cb037909c5b..c5c570b9347b31c331bec63f3f64c20d0c9be482:/src/common/string.cpp?ds=inline 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") );