diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2019-10-01 10:24:22 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2019-10-01 16:02:31 +0200 |
commit | e7a1b285df5b71c9e3c082fa02a2b21d8ac27162 (patch) | |
tree | 36d331887833a9e3bf14aaab1ab846fc60c29f23 /embedserv | |
parent | 1cc241cfb43d82f7f816042079b8baec318bfcb7 (diff) |
loplugin:indentation (clang-cl)
Change-Id: I19750bd9ac4c77c88097210626fd0c3dfa510a7a
Reviewed-on: https://gerrit.libreoffice.org/79928
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'embedserv')
-rw-r--r-- | embedserv/source/embed/ed_idataobj.cxx | 6 | ||||
-rw-r--r-- | embedserv/source/embed/ed_ipersiststr.cxx | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/embedserv/source/embed/ed_idataobj.cxx b/embedserv/source/embed/ed_idataobj.cxx index 140595ebfa65..9e602867c856 100644 --- a/embedserv/source/embed/ed_idataobj.cxx +++ b/embedserv/source/embed/ed_idataobj.cxx @@ -97,7 +97,7 @@ STDMETHODIMP EmbedDocument_Impl::GetData( FORMATETC * pFormatetc, STGMEDIUM * pM } else if ( pFormatetc->cfFormat == CF_METAFILEPICT ) { - if ( !( pFormatetc->tymed & TYMED_MFPICT ) ) + if ( !( pFormatetc->tymed & TYMED_MFPICT ) ) return DV_E_TYMED; HGLOBAL hMeta = reinterpret_cast<HGLOBAL>( getMetaFileHandle_Impl( false ) ); @@ -194,7 +194,7 @@ STDMETHODIMP EmbedDocument_Impl::QueryGetData( FORMATETC * pFormatetc ) } else if ( pFormatetc->cfFormat == CF_METAFILEPICT ) { - if ( !( pFormatetc->tymed & TYMED_MFPICT ) ) + if ( !( pFormatetc->tymed & TYMED_MFPICT ) ) return DV_E_TYMED; return S_OK; @@ -233,7 +233,7 @@ STDMETHODIMP EmbedDocument_Impl::GetCanonicalFormatEtc( FORMATETC * pFormatetcIn } else if ( pFormatetcIn->cfFormat == CF_METAFILEPICT ) { - pFormatetcOut->tymed = TYMED_MFPICT; + pFormatetcOut->tymed = TYMED_MFPICT; return S_OK; } else diff --git a/embedserv/source/embed/ed_ipersiststr.cxx b/embedserv/source/embed/ed_ipersiststr.cxx index 77131196b4b9..ba21f0772d8c 100644 --- a/embedserv/source/embed/ed_ipersiststr.cxx +++ b/embedserv/source/embed/ed_ipersiststr.cxx @@ -574,7 +574,7 @@ STDMETHODIMP EmbedDocument_Impl::Load( IStorage *pStg ) hr = E_FAIL; } - return hr; + return hr; } STDMETHODIMP EmbedDocument_Impl::Save( IStorage *pStgSave, BOOL fSameAsLoad ) |