]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/utilscmn.cpp
Added wxIMAGE_OPTION_ORIGINAL_{WIDTH,HEIGHT} wxImage options.
[wxWidgets.git] / src / common / utilscmn.cpp
index 17b6eb5879c2191e20e90a96d9c1fea88ef84f68..13f052e7d9fbcea7cc8613aad98588b55df205fd 100644 (file)
@@ -814,8 +814,8 @@ typedef struct
       smaller partition.  This *guarantees* no more than log (n)
       stack size is needed (actually O(1) in this case)!  */
 
-void wxQsort(void *const pbase, size_t total_elems,
-                             size_t size, CMPFUNCDATA cmp, const void* user_data)
+void wxQsort(void* pbase, size_t total_elems,
+             size_t size, wxSortCallback cmp, const void* user_data)
 {
   register char *base_ptr = (char *) pbase;
   const size_t max_thresh = MAX_THRESH * size;