#91287# additionals for cfg-testtool
This commit is contained in:
parent
be0898294a
commit
530c34df7b
3 changed files with 9 additions and 6 deletions
|
@ -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);
|
||||
|
|
|
@ -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");
|
||||
|
|
|
@ -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! ");
|
||||
|
|
Loading…
Reference in a new issue