summaryrefslogtreecommitdiff
path: root/include/com/sun/star/uno/Type.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/com/sun/star/uno/Type.hxx')
-rw-r--r--include/com/sun/star/uno/Type.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/com/sun/star/uno/Type.hxx b/include/com/sun/star/uno/Type.hxx
index 6b22224c4e4a..0d88928fe445 100644
--- a/include/com/sun/star/uno/Type.hxx
+++ b/include/com/sun/star/uno/Type.hxx
@@ -40,13 +40,13 @@ inline Type::Type()
}
inline Type::Type( TypeClass eTypeClass, const ::rtl::OUString & rTypeName )
- : _pType( 0 )
+ : _pType( NULL )
{
::typelib_typedescriptionreference_new( &_pType, (typelib_TypeClass)eTypeClass, rTypeName.pData );
}
inline Type::Type( TypeClass eTypeClass, const sal_Char * pTypeName )
- : _pType( 0 )
+ : _pType( NULL )
{
::typelib_typedescriptionreference_newByAsciiName( &_pType, (typelib_TypeClass)eTypeClass, pTypeName );
}
@@ -86,7 +86,7 @@ inline Type & Type::operator = ( const Type & rType )
template< class T >
-typelib_TypeDescriptionReference * Array< T >::s_pType = 0;
+typelib_TypeDescriptionReference * Array< T >::s_pType = NULL;
}
}