diff options
Diffstat (limited to 'configmgr')
-rw-r--r-- | configmgr/source/inc/strdecl.hxx | 5 | ||||
-rw-r--r-- | configmgr/source/misc/strimpl.cxx | 5 | ||||
-rw-r--r-- | configmgr/source/xml/typeconverter.cxx | 5 |
3 files changed, 9 insertions, 6 deletions
diff --git a/configmgr/source/inc/strdecl.hxx b/configmgr/source/inc/strdecl.hxx index 1122d0b9053e..80b05d45c498 100644 --- a/configmgr/source/inc/strdecl.hxx +++ b/configmgr/source/inc/strdecl.hxx @@ -2,9 +2,9 @@ * * $RCSfile: strdecl.hxx,v $ * - * $Revision: 1.9 $ + * $Revision: 1.10 $ * - * last change: $Author: lla $ $Date: 2001-03-23 09:37:42 $ + * last change: $Author: lla $ $Date: 2001-08-20 11:31:47 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -96,6 +96,7 @@ namespace configmgr // simple types names DECLARE_CONSTASCII_USTRING(TYPE_BOOLEAN); + DECLARE_CONSTASCII_USTRING(TYPE_BYTE); DECLARE_CONSTASCII_USTRING(TYPE_SHORT); DECLARE_CONSTASCII_USTRING(TYPE_INT); DECLARE_CONSTASCII_USTRING(TYPE_LONG); diff --git a/configmgr/source/misc/strimpl.cxx b/configmgr/source/misc/strimpl.cxx index b3ca48bb3418..f06f41f4b1ec 100644 --- a/configmgr/source/misc/strimpl.cxx +++ b/configmgr/source/misc/strimpl.cxx @@ -2,9 +2,9 @@ * * $RCSfile: strimpl.cxx,v $ * - * $Revision: 1.9 $ + * $Revision: 1.10 $ * - * last change: $Author: lla $ $Date: 2001-03-23 09:37:46 $ + * last change: $Author: lla $ $Date: 2001-08-20 11:31:47 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -91,6 +91,7 @@ namespace configmgr // simple types names IMPLEMENT_CONSTASCII_USTRING(TYPE_BOOLEAN, "boolean"); + IMPLEMENT_CONSTASCII_USTRING(TYPE_BYTE, "byte"); IMPLEMENT_CONSTASCII_USTRING(TYPE_SHORT, "short"); IMPLEMENT_CONSTASCII_USTRING(TYPE_INT, "int"); IMPLEMENT_CONSTASCII_USTRING(TYPE_LONG, "long"); diff --git a/configmgr/source/xml/typeconverter.cxx b/configmgr/source/xml/typeconverter.cxx index 145242ec3530..425ab5666953 100644 --- a/configmgr/source/xml/typeconverter.cxx +++ b/configmgr/source/xml/typeconverter.cxx @@ -2,9 +2,9 @@ * * $RCSfile: typeconverter.cxx,v $ * - * $Revision: 1.14 $ + * $Revision: 1.15 $ * - * last change: $Author: dg $ $Date: 2001-06-21 15:51:06 $ + * last change: $Author: lla $ $Date: 2001-08-20 11:31:47 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -173,6 +173,7 @@ namespace configmgr case uno::TypeClass_STRING: aRet = TYPE_STRING; break; case uno::TypeClass_SEQUENCE: aRet = TYPE_BINARY; break; case uno::TypeClass_ANY: aRet = TYPE_ANY; break; + case uno::TypeClass_BYTE: aRet = TYPE_BYTE; break; default: { ::rtl::OString aStr("Wrong typeclass! "); |