summaryrefslogtreecommitdiff
path: root/extensions
diff options
context:
space:
mode:
authorAriel Constenla-Haile <arielch@apache.org>2013-03-17 23:08:31 +0000
committerCaolán McNamara <caolanm@redhat.com>2013-05-23 15:19:12 +0100
commit1bfbe4963db6edb7dc4333988d147d9b13689e2b (patch)
tree7ba967936f7dfbbb7366ed56e39178b3ff6f3bd2 /extensions
parentc1acf1d72ea1421cbb460e65ee5b1d9d3200033c (diff)
Fix build breaker
(cherry picked from commit 4f7c31cdcf7ba9558e59bc345b3925f6b3d2695c) Change-Id: Iccb1de40dc66d94128d4db2ca08b05b7e4c567f5
Diffstat (limited to 'extensions')
-rw-r--r--extensions/source/ole/oleobjw.cxx4
-rw-r--r--extensions/source/ole/unoconversionutilities.hxx4
2 files changed, 4 insertions, 4 deletions
diff --git a/extensions/source/ole/oleobjw.cxx b/extensions/source/ole/oleobjw.cxx
index d487a15aabed..b3b7b525ed40 100644
--- a/extensions/source/ole/oleobjw.cxx
+++ b/extensions/source/ole/oleobjw.cxx
@@ -1646,7 +1646,7 @@ TypeDescription IUnknownWrapper_Impl::getInterfaceMemberDescOfCurrentCall(const
{
typelib_TypeDescriptionReference* pTypeRefMember = pInterface->ppAllMembers[i];
typelib_TypeDescription* pDescMember= NULL;
- TYPELIB_DANGER_GET( &pDescMember, pTypeRefMember)
+ TYPELIB_DANGER_GET( &pDescMember, pTypeRefMember);
typelib_InterfaceMemberTypeDescription* pInterfaceMember=
(typelib_InterfaceMemberTypeDescription*) pDescMember;
@@ -1655,7 +1655,7 @@ TypeDescription IUnknownWrapper_Impl::getInterfaceMemberDescOfCurrentCall(const
pMember= pInterfaceMember;
break;
}
- TYPELIB_DANGER_RELEASE( pDescMember)
+ TYPELIB_DANGER_RELEASE( pDescMember);
}
if( pMember)
diff --git a/extensions/source/ole/unoconversionutilities.hxx b/extensions/source/ole/unoconversionutilities.hxx
index a77fbf6b777e..36af845e34e1 100644
--- a/extensions/source/ole/unoconversionutilities.hxx
+++ b/extensions/source/ole/unoconversionutilities.hxx
@@ -2023,9 +2023,9 @@ void UnoConversionUtilities<T>::dispatchExObject2Sequence( const VARIANTARG* pva
typelib_TypeDescriptionReference *pSeqElemDescRef= pSeqDesc->pType; // type of the Sequence' elements
Type elemType( pSeqElemDescRef);
_typelib_TypeDescription* pSeqElemDesc=NULL;
- TYPELIB_DANGER_GET( &pSeqElemDesc, pSeqElemDescRef)
+ TYPELIB_DANGER_GET( &pSeqElemDesc, pSeqElemDescRef);
sal_uInt32 nelementSize= pSeqElemDesc->nSize;
- TYPELIB_DANGER_RELEASE( pSeqElemDesc)
+ TYPELIB_DANGER_RELEASE( pSeqElemDesc);
uno_Sequence *p_uno_Seq;
uno_sequence_construct( &p_uno_Seq, pDesc, NULL, length, cpp_acquire);