From b7b4e1a530e545b8cd44e1b692cfe820dee0d97f Mon Sep 17 00:00:00 2001 From: PB Date: Tue, 20 Apr 2021 17:29:57 +0200 Subject: [PATCH] Document that wxMatchWild() is always case-sensitive Closes https://github.com/wxWidgets/wxWidgets/pull/2337 --- interface/wx/filefn.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/interface/wx/filefn.h b/interface/wx/filefn.h index 45a94d22f7..ba8ab6999a 100644 --- a/interface/wx/filefn.h +++ b/interface/wx/filefn.h @@ -263,6 +263,9 @@ bool wxFileExists(const wxString& filename); @true, filenames beginning with a dot are not matched with wildcard characters. + @note Matching is always case-sensitive, even on platforms where paths + are generally treated as case-insensitive. + @see wxIsWild() @header{wx/filefn.h}