From 5f8483b49dcbbb57192b7a030ec5a753247b53ea Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sat, 28 Aug 2021 21:09:49 +0100 Subject: [PATCH] Use wxRESERVED_PARAM for the reserved parameters for clarity No real changes. --- src/msw/uilocale.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/msw/uilocale.cpp b/src/msw/uilocale.cpp index 8e7eb5dbed..c9d6d4617f 100644 --- a/src/msw/uilocale.cpp +++ b/src/msw/uilocale.cpp @@ -213,7 +213,9 @@ int wxUILocale::CompareStrings(const wxString& lhs, const wxString& rhs, const w 0, // Maybe we need LINGUISTIC_IGNORECASE here static_cast(lhs.wc_str()), -1, static_cast(rhs.wc_str()), -1, - NULL, NULL, 0); + NULL, // [out] version information -- not needed + wxRESERVED_PARAM, + wxRESERVED_PARAM); switch (ret) {