diff options
Diffstat (limited to 'src/filename.h')
-rw-r--r-- | src/filename.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/filename.h b/src/filename.h index aae254f..3d8659c 100644 --- a/src/filename.h +++ b/src/filename.h @@ -20,8 +20,8 @@ #include <vector> #include "linkedmap.h" -#include "config.h" #include "utf8.h" +#include "util.h" class FileDef; @@ -59,7 +59,7 @@ class FileNameFn std::string searchKey(std::string input) const { std::string key = input; - if (!Config_getBool(CASE_SENSE_NAMES)) + if (!getCaseSenseNames()) { key = convertUTF8ToLower(key); } |