From: Włodzimierz Skiba Date: Fri, 23 Jul 2004 11:26:07 +0000 (+0000) Subject: Correct definition of sorting function. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/99f161bd9968326381cf183e9ebd42d873397ca7 Correct definition of sorting function. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28421 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/msw/volume.cpp b/src/msw/volume.cpp index f1750775a5..86f752e1b6 100644 --- a/src/msw/volume.cpp +++ b/src/msw/volume.cpp @@ -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 //=============================================================================