summaryrefslogtreecommitdiff
path: root/fpicker
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2021-04-09 15:27:36 +0200
committerStephan Bergmann <sbergman@redhat.com>2021-04-09 21:14:15 +0200
commitde9d7f75eee26a6f53bdba6627bed8596f79900d (patch)
tree2ba549ab4ae723bcd2d592af790d8ae3bb741a11 /fpicker
parentec611d8ffdd9dea20ac373a7da4383379ed8bd3e (diff)
loplugin:redundantstatic (clang-cl)
Change-Id: If21e0991c483836c2eb9a03396f077111dbec1fb Reviewed-on: https://gerrit.libreoffice.org/c/core/+/113872 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'fpicker')
-rw-r--r--fpicker/source/win32/shared.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/fpicker/source/win32/shared.hxx b/fpicker/source/win32/shared.hxx
index aa211a6057c1..c47f6411e28b 100644
--- a/fpicker/source/win32/shared.hxx
+++ b/fpicker/source/win32/shared.hxx
@@ -21,9 +21,9 @@
#include <rtl/ustring.hxx>
-static const OUStringLiteral BACKSLASH(u"\\");
-static const OUStringLiteral FILTER_SEPARATOR(u"------------------------------------------");
-static const OUStringLiteral ALL_FILES_WILDCARD(u"*.*");
+const OUStringLiteral BACKSLASH(u"\\");
+const OUStringLiteral FILTER_SEPARATOR(u"------------------------------------------");
+const OUStringLiteral ALL_FILES_WILDCARD(u"*.*");
const bool ALLOW_DUPLICATES = true;
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */