Use wxRESERVED_PARAM for the reserved parameters for clarity

No real changes.
This commit is contained in:
Vadim Zeitlin
2021-08-28 21:09:49 +01:00
parent df710b263b
commit 5f8483b49d

View File

@@ -213,7 +213,9 @@ int wxUILocale::CompareStrings(const wxString& lhs, const wxString& rhs, const w
0, // Maybe we need LINGUISTIC_IGNORECASE here
static_cast<LPCWSTR>(lhs.wc_str()), -1,
static_cast<LPCWSTR>(rhs.wc_str()), -1,
NULL, NULL, 0);
NULL, // [out] version information -- not needed
wxRESERVED_PARAM,
wxRESERVED_PARAM);
switch (ret)
{