]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/docview.cpp
unhide the other HitTest() overload
[wxWidgets.git] / src / common / docview.cpp
index 38dd2f9363df35587b92005b94f1b8d980f60289..6e5f2497b73f3175f5a930161649eea831a37b3c 100644 (file)
@@ -1613,7 +1613,7 @@ wxDocTemplate *wxDocManager::SelectDocumentType(wxDocTemplate **templates,
 
     if (sort)
     {
-        strings.Sort(wxStringSortAscending);
+        strings.Sort(); // ascending sort
         // Yes, this will be slow, but template lists
         // are typically short.
         int j;
@@ -1692,7 +1692,7 @@ wxDocTemplate *wxDocManager::SelectViewType(wxDocTemplate **templates,
 
     if (sort)
     {
-        strings.Sort(wxStringSortAscending);
+        strings.Sort(); // ascending sort
         // Yes, this will be slow, but template lists
         // are typically short.
         int j;