diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-09-14 08:38:43 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-09-14 08:38:43 +0200 |
commit | d8655c09a946e9eac3a8be75a23a1516863d60e7 (patch) | |
tree | ec5ceedca7d379d73fcfe874fccd678f1c97f157 | |
parent | c2f081d17484d2efbc2b294f89f4cb59b1937a9c (diff) |
loplugin:unnecessaryparen (clang-cl)
Change-Id: Iebcf75f406a2cb9914bf3cbc1019a53c08e9203e
-rw-r--r-- | sfx2/source/doc/graphhelp.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sfx2/source/doc/graphhelp.cxx b/sfx2/source/doc/graphhelp.cxx index a1129c4a3431..eb8ad7ffe736 100644 --- a/sfx2/source/doc/graphhelp.cxx +++ b/sfx2/source/doc/graphhelp.cxx @@ -128,7 +128,7 @@ void* GraphicHelper::getWinMetaFileFromGDI_Impl( const GDIMetaFile* pGDIMeta, co if ( nLength > 22 ) { HMETAFILE hMeta = SetMetaFileBitsEx( nLength - 22, - ( static_cast< const unsigned char*>( pStream.GetData() ) ) + 22 ); + static_cast< const unsigned char*>( pStream.GetData() ) + 22 ); if ( hMeta ) { |