summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-01-31 10:15:47 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-01-31 10:15:47 +0100
commit9e77c2fb7cadfd477fb1b971b011d43f30781660 (patch)
tree7a7d70822e2628a1e6383a15eeedb8fea5309123 /include
parentclang::DiagnosticsEnginge::getCustomDiagID now needs a literal FormatString (diff)
downloadcore-9e77c2fb7cadfd477fb1b971b011d43f30781660.tar.gz
core-9e77c2fb7cadfd477fb1b971b011d43f30781660.zip
Remove UNOIDL "array" and "union" vaporware remnants
...and deprecate what cannot be removed for compatibility. Change-Id: I1ea335af775b867b468b8285113631167729a92a
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,