diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-09-14 08:36:20 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-09-14 08:36:20 +0200 |
commit | 7901d47cbb6feb31b9d8fd8a3c877fe2c97f62a5 (patch) | |
tree | 953290b61fc4946a9b762f915f1d83931092353a /dtrans | |
parent | 303380beef4ab88433006d4aeeb65ea1ee7f3990 (diff) |
loplugin:unnecessaryparen (clang-cl)
Change-Id: Icd5e625f7c67c45ea3038455514e44c1c9449661
Diffstat (limited to 'dtrans')
-rw-r--r-- | dtrans/source/win32/dtobj/DOTransferable.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dtrans/source/win32/dtobj/DOTransferable.cxx b/dtrans/source/win32/dtobj/DOTransferable.cxx index ceca4996a7db..4303c69b3fb7 100644 --- a/dtrans/source/win32/dtobj/DOTransferable.cxx +++ b/dtrans/source/win32/dtobj/DOTransferable.cxx @@ -364,7 +364,7 @@ LCID SAL_CALL CDOTransferable::getLocaleFromClipboard( ) { CFormatEtc fetc = CDataFormatTranslator::getFormatEtcForClipformat( CF_LOCALE ); ByteSequence_t aLCIDSeq = getClipboardData( fetc ); - lcid = *(reinterpret_cast<LCID*>( aLCIDSeq.getArray( ) ) ); + lcid = *reinterpret_cast<LCID*>( aLCIDSeq.getArray( ) ); // because of a Win95/98 Bug; there the high word // of a locale has the same value as the |