summaryrefslogtreecommitdiffstats
path: root/comphelper/source/misc/configuration.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'comphelper/source/misc/configuration.cxx')
-rw-r--r--comphelper/source/misc/configuration.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/comphelper/source/misc/configuration.cxx b/comphelper/source/misc/configuration.cxx
index 8954f4fbc0c3..383e35f78657 100644
--- a/comphelper/source/misc/configuration.cxx
+++ b/comphelper/source/misc/configuration.cxx
@@ -199,7 +199,7 @@ rtl::OUString comphelper::detail::ConfigurationWrapper::extendLocalizedPath(
css::uno::UNO_QUERY_THROW)->
getLocale());
SAL_WARN_IF(
- locale.Language.indexOf('-') == -1, "comphelper",
+ locale.Language.indexOf('-') != -1, "comphelper",
"Locale language \"" << locale.Language << "\" contains \"-\"");
assert(locale.Language.indexOf('&') == -1);
assert(locale.Language.indexOf('"') == -1);
@@ -212,7 +212,7 @@ rtl::OUString comphelper::detail::ConfigurationWrapper::extendLocalizedPath(
if (!locale.Country.isEmpty()) {
buf.append('-');
SAL_WARN_IF(
- locale.Country.indexOf('-') == -1, "comphelper",
+ locale.Country.indexOf('-') != -1, "comphelper",
"Locale language \"" << locale.Country << "\" contains \"-\"");
assert(locale.Country.indexOf('&') == -1);
assert(locale.Country.indexOf('"') == -1);