summaryrefslogtreecommitdiff
path: root/embedserv/source/embed/ed_idataobj.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2019-10-01 10:24:22 +0200
committerStephan Bergmann <sbergman@redhat.com>2019-10-01 16:02:31 +0200
commite7a1b285df5b71c9e3c082fa02a2b21d8ac27162 (patch)
tree36d331887833a9e3bf14aaab1ab846fc60c29f23 /embedserv/source/embed/ed_idataobj.cxx
parent1cc241cfb43d82f7f816042079b8baec318bfcb7 (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/source/embed/ed_idataobj.cxx')
-rw-r--r--embedserv/source/embed/ed_idataobj.cxx6
1 files changed, 3 insertions, 3 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