]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/volume.cpp
Added wxToggleButton handler
[wxWidgets.git] / 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
 
 //=============================================================================