X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/98c627a498e0bfbdc8cbf69c5cd52ca68904c2e1..3b830ce00dcd163921300a7592ebcfab75e333ec:/src/common/docview.cpp diff --git a/src/common/docview.cpp b/src/common/docview.cpp index 38dd2f9363..6e5f2497b7 100644 --- a/src/common/docview.cpp +++ b/src/common/docview.cpp @@ -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;