summaryrefslogtreecommitdiff
path: root/i18nlangtag
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-07-17 17:21:30 +0200
committerStephan Bergmann <sbergman@redhat.com>2017-07-17 17:21:30 +0200
commit832f3e3dfd1164fbe58c684e5b4c3cfb8d1baad7 (patch)
treeb64b31ee5d6b85c58e58ca0bd5fc8713beb05c92 /i18nlangtag
parent75d5767e68400b70ab55811b72198efc8f121686 (diff)
loplugin:unnecessaryparen: i18nlangtag (clang-cl)
Change-Id: I77d010932d8d56ce295a88d63bee96a9219d4a4d
Diffstat (limited to 'i18nlangtag')
-rw-r--r--i18nlangtag/source/isolang/inwnt.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/i18nlangtag/source/isolang/inwnt.cxx b/i18nlangtag/source/isolang/inwnt.cxx
index 8521e5469924..6ad9b54e8630 100644
--- a/i18nlangtag/source/isolang/inwnt.cxx
+++ b/i18nlangtag/source/isolang/inwnt.cxx
@@ -60,12 +60,12 @@ static void getPlatformSystemLanguageImpl( LanguageType& rSystemLanguage,
{
LANGID nLangId;
- nLangId = (pGetUserDefault)();
+ nLangId = pGetUserDefault();
nLang = GetSVLang( nLangId );
if ( nLang == LANGUAGE_DONTKNOW )
{
- nLangId = (pGetSystemDefault)();
+ nLangId = pGetSystemDefault();
nLang = GetSVLang( nLangId );
}
OSL_DOUBLE_CHECKED_LOCKING_MEMORY_BARRIER();