Fix wrong use of WXUNUSED() in the last commit

See #12968.
This commit is contained in:
Vadim Zeitlin 2023-07-02 18:35:31 +01:00
parent c269932c4e
commit dccddcdd59

View file

@ -255,9 +255,9 @@ wxIntegerValidatorBase::FromString(const wxString& s,
}
bool
wxIntegerValidatorBase::IsCharOk(const wxString& val,
wxIntegerValidatorBase::IsCharOk(const wxString& WXUNUSED(val),
int WXUNUSED(pos),
wxChar WXUNUSED(ch)) const
wxChar ch) const
{
// We only accept digits here (remember that '-' is taken care of by the
// base class already).