summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/com/sun/star/uno/Sequence.h3
-rw-r--r--include/typelib/typeclass.h10
2 files changed, 9 insertions, 4 deletions
diff --git a/include/com/sun/star/uno/Sequence.h b/include/com/sun/star/uno/Sequence.h
index ff52ee30fd01..b7e4195601c0 100644
--- a/include/com/sun/star/uno/Sequence.h
+++ b/include/com/sun/star/uno/Sequence.h
@@ -278,8 +278,7 @@ SAL_CALL getCppuType( const ::com::sun::star::uno::Sequence< E > * )
/** Gets the meta type of IDL sequence.
This function has been introduced, because one cannot get the (templated)
- cppu type out of C++ array types. Array types have special
- getCppuArrayTypeN() functions.
+ cppu type out of C++ array types.
@attention
the given element type must be the same as the template argument type!
diff --git a/include/typelib/typeclass.h b/include/typelib/typeclass.h
index 434094fe3d8d..1c6b0d64458e 100644
--- a/include/typelib/typeclass.h
+++ b/include/typelib/typeclass.h
@@ -61,13 +61,19 @@ typedef enum _typelib_TypeClass
typelib_TypeClass_TYPEDEF = 16,
/** type class of struct */
typelib_TypeClass_STRUCT = 17,
- /** type class of union (not implemented) */
+ /** Deprecated, UNOIDL does not have a union concept.
+
+ @deprecated
+ */
typelib_TypeClass_UNION = 18,
/** type class of exception */
typelib_TypeClass_EXCEPTION = 19,
/** type class of sequence */
typelib_TypeClass_SEQUENCE = 20,
- /** type class of array (not implemented) */
+ /** Deprecated, UNOIDL does not have an array concept.
+
+ @deprecated
+ */
typelib_TypeClass_ARRAY = 21,
/** type class of interface */
typelib_TypeClass_INTERFACE = 22,