pyuno/source/module/pyuno.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
New commits: commit 922f2005f34589e60969be3f2bf74e4af58e2e69 Author: Naruhiko Ogasawara <naru...@gmail.com> Date: Sat Oct 25 17:54:22 2014 +0900 fdo#43157 - Clean up OSL_ASSERT, DBG_ASSERT - Clean up OSL_ASSERT Change-Id: I1f3a5dcfe08876da9bb4a8486311eb0ca9bab215 Signed-off-by: Stephan Bergmann <sberg...@redhat.com> diff --git a/pyuno/source/module/pyuno.cxx b/pyuno/source/module/pyuno.cxx index f468149..065513a 100644 --- a/pyuno/source/module/pyuno.cxx +++ b/pyuno/source/module/pyuno.cxx @@ -66,7 +66,7 @@ void PyUNO_del (PyObject* self) OUString val2str( const void * pVal, typelib_TypeDescriptionReference * pTypeRef , sal_Int32 mode ) { - OSL_ASSERT( pVal ); + assert( pVal ); if (pTypeRef->eTypeClass == typelib_TypeClass_VOID) return OUString("void"); @@ -124,7 +124,7 @@ OUString val2str( const void * pVal, typelib_TypeDescriptionReference * pTypeRef buf.append( "{ " ); typelib_TypeDescription * pTypeDescr = 0; TYPELIB_DANGER_GET( &pTypeDescr, pTypeRef ); - OSL_ASSERT( pTypeDescr ); + assert( pTypeDescr ); typelib_CompoundTypeDescription * pCompType = (typelib_CompoundTypeDescription *)pTypeDescr; sal_Int32 nDescr = pCompType->nMembers; _______________________________________________ Libreoffice-commits mailing list libreoffice-comm...@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits