X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/77ffb5937e89927b621128789401db8921fe580f..b082b52407e8132d04821bfaa31eb6a9a870b054:/src/msw/volume.cpp diff --git a/src/msw/volume.cpp b/src/msw/volume.cpp index a508485ac2..86f752e1b6 100644 --- a/src/msw/volume.cpp +++ b/src/msw/volume.cpp @@ -6,7 +6,7 @@ // Created: 28 Jan 02 // RCS-ID: $Id$ // Copyright: (c) 2002 George Policello -// Licence: wxWidgets licence +// Licence: wxWindows licence /////////////////////////////////////////////////////////////////////////////// // ============================================================================ @@ -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 //=============================================================================