diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-01-31 10:15:47 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-01-31 10:15:47 +0100 |
commit | 9e77c2fb7cadfd477fb1b971b011d43f30781660 (patch) | |
tree | 7a7d70822e2628a1e6383a15eeedb8fea5309123 /pyuno | |
parent | 11235e86497df47ff3acc61c1cab9fff0b91949e (diff) |
Remove UNOIDL "array" and "union" vaporware remnants
...and deprecate what cannot be removed for compatibility.
Change-Id: I1ea335af775b867b468b8285113631167729a92a
Diffstat (limited to 'pyuno')
-rw-r--r-- | pyuno/source/module/pyuno.cxx | 5 | ||||
-rw-r--r-- | pyuno/source/module/pyuno_type.cxx | 4 |
2 files changed, 0 insertions, 9 deletions
diff --git a/pyuno/source/module/pyuno.cxx b/pyuno/source/module/pyuno.cxx index ece456094291..4c8145b7ceb4 100644 --- a/pyuno/source/module/pyuno.cxx +++ b/pyuno/source/module/pyuno.cxx @@ -118,10 +118,6 @@ OUString val2str( const void * pVal, typelib_TypeDescriptionReference * pTypeRef break; } - case typelib_TypeClass_UNION: - { - break; - } case typelib_TypeClass_STRUCT: case typelib_TypeClass_EXCEPTION: { @@ -283,7 +279,6 @@ OUString val2str( const void * pVal, typelib_TypeDescriptionReference * pTypeRef break; case typelib_TypeClass_VOID: - case typelib_TypeClass_ARRAY: case typelib_TypeClass_UNKNOWN: case typelib_TypeClass_SERVICE: case typelib_TypeClass_MODULE: diff --git a/pyuno/source/module/pyuno_type.cxx b/pyuno/source/module/pyuno_type.cxx index c23d1e7c29b5..80d1fdb28f57 100644 --- a/pyuno/source/module/pyuno_type.cxx +++ b/pyuno/source/module/pyuno_type.cxx @@ -81,10 +81,6 @@ const char *typeClassToString( TypeClass t ) ret = "INTERFACE"; break; case com::sun::star::uno::TypeClass_TYPEDEF: ret = "TYPEDEF"; break; - case com::sun::star::uno::TypeClass_UNION: - ret = "UNION"; break; - case com::sun::star::uno::TypeClass_ARRAY: - ret = "ARRAY"; break; case com::sun::star::uno::TypeClass_SERVICE: ret = "SERVICE"; break; case com::sun::star::uno::TypeClass_MODULE: |