diff options
Diffstat (limited to 'shell')
-rw-r--r-- | shell/source/win32/SysShExec.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/source/win32/SysShExec.cxx b/shell/source/win32/SysShExec.cxx index a68315e8d3e6..3a788728b847 100644 --- a/shell/source/win32/SysShExec.cxx +++ b/shell/source/win32/SysShExec.cxx @@ -166,10 +166,10 @@ CSysShExec::~CSysShExec() namespace { -bool checkExtension(OUString const & extension, OUString const & blacklist) { +bool checkExtension(OUString const & extension, OUString const & denylist) { assert(!extension.isEmpty()); for (sal_Int32 i = 0; i != -1;) { - OUString tok = blacklist.getToken(0, ';', i); + OUString tok = denylist.getToken(0, ';', i); tok.startsWith(".", &tok); if (extension.equalsIgnoreAsciiCase(tok)) { return false; |