summaryrefslogtreecommitdiff
path: root/pyuno/source/module/pyuno_type.cxx
diff options
context:
space:
mode:
authorJörg Budischewski <jbu@openoffice.org>2003-05-24 10:01:50 +0000
committerJörg Budischewski <jbu@openoffice.org>2003-05-24 10:01:50 +0000
commit73bbf7bfe411b5c02f8dee6b29d8070e5581e08d (patch)
tree03fefe80c7e6a113a72813ba317af9f4f61e8276 /pyuno/source/module/pyuno_type.cxx
parente0a1cd4dc7202795e4a60c73ea1608d86984add7 (diff)
problem with a SEQUENCE type fixed
Diffstat (limited to 'pyuno/source/module/pyuno_type.cxx')
-rw-r--r--pyuno/source/module/pyuno_type.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/pyuno/source/module/pyuno_type.cxx b/pyuno/source/module/pyuno_type.cxx
index 70dead2701cc..e41e527bb3f4 100644
--- a/pyuno/source/module/pyuno_type.cxx
+++ b/pyuno/source/module/pyuno_type.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: pyuno_type.cxx,v $
*
- * $Revision: 1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: jbu $ $Date: 2003-03-23 12:12:58 $
+ * last change: $Author: jbu $ $Date: 2003-05-24 11:01:50 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -124,7 +124,7 @@ const char *typeClassToString( TypeClass t )
case com::sun::star::uno::TypeClass_EXCEPTION:
ret = "EXCEPTION"; break;
case com::sun::star::uno::TypeClass_SEQUENCE:
- ret = "SEQUENCE";
+ ret = "SEQUENCE"; break;
case com::sun::star::uno::TypeClass_INTERFACE:
ret = "INTERFACE"; break;
case com::sun::star::uno::TypeClass_TYPEDEF: