]> git.saurik.com Git - wxWidgets.git/commitdiff
Correct definition of sorting function.
authorWłodzimierz Skiba <abx@abx.art.pl>
Fri, 23 Jul 2004 11:26:07 +0000 (11:26 +0000)
committerWłodzimierz Skiba <abx@abx.art.pl>
Fri, 23 Jul 2004 11:26:07 +0000 (11:26 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28421 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/msw/volume.cpp

index f1750775a5e6635fb2598a6719e07bae85952d41..86f752e1b642ce5718f9f5650362f37359349413 100644 (file)
@@ -290,9 +290,9 @@ static void BuildListFromNN(wxArrayString& list, NETRESOURCE* pResSrc,
 // Function: CompareFcn
 // Purpose: Used to sort the NN list alphabetically, case insensitive.
 //=============================================================================
-static int CompareFcn(wxString* first, wxString* second)
+static int CompareFcn(const wxString& first, const wxString& second)
 {
-    return wxStricmp(first->c_str(), second->c_str());
+    return wxStricmp(first.c_str(), second.c_str());
 } // CompareFcn
 
 //=============================================================================