diff options
author | Konrad Sztyber <konrad.sztyber@gmail.com> | 2017-12-10 11:25:13 (GMT) |
---|---|---|
committer | Konrad Sztyber <konrad.sztyber@gmail.com> | 2017-12-10 11:34:45 (GMT) |
commit | bd759f9a3aa4096bc8574ea45ad6b23fed830742 (patch) | |
tree | 65f2f7ba38830fcba8c76397b8a97bacc7a3ec6e /src | |
parent | 4f45bd20d4da7d40c793ec4c4c13558581e995ac (diff) | |
download | Doxygen-bd759f9a3aa4096bc8574ea45ad6b23fed830742.zip Doxygen-bd759f9a3aa4096bc8574ea45ad6b23fed830742.tar.gz Doxygen-bd759f9a3aa4096bc8574ea45ad6b23fed830742.tar.bz2 |
Allow case insensitive file pattern matching based on CASE_SENSE_NAMES
Diffstat (limited to 'src')
-rw-r--r-- | src/util.cpp | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/src/util.cpp b/src/util.cpp index 8e4c5a7..be8256c 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -7902,9 +7902,16 @@ QCString filterTitle(const QCString &title) bool patternMatch(const QFileInfo &fi,const QStrList *patList) { - bool found=FALSE; + static bool caseSenseNames = Config_getBool(CASE_SENSE_NAMES); + bool found = FALSE; + + // For Windows/Mac, always do the case insensitive match +#if defined(_WIN32) || defined(__MACOSX__) + caseSenseNames = FALSE; +#endif + if (patList) - { + { QStrListIterator it(*patList); QCString pattern; @@ -7919,11 +7926,8 @@ bool patternMatch(const QFileInfo &fi,const QStrList *patList) int i=pattern.find('='); if (i!=-1) pattern=pattern.left(i); // strip of the extension specific filter name -#if defined(_WIN32) || defined(__MACOSX__) // Windows or MacOSX - QRegExp re(pattern,FALSE,TRUE); // case insensitive match -#else // unix - QRegExp re(pattern,TRUE,TRUE); // case sensitive match -#endif + QRegExp re(pattern,caseSenseNames,TRUE); + found = re.match(fn)!=-1 || re.match(fp)!=-1 || re.match(afp)!=-1; |