diff options
author | Philipp Lohmann <pl@openoffice.org> | 2001-05-10 19:12:55 +0000 |
---|---|---|
committer | Philipp Lohmann <pl@openoffice.org> | 2001-05-10 19:12:55 +0000 |
commit | 928779d15311a9a197f229f9d597112de6191094 (patch) | |
tree | 52bc5f26b69b15e2680db80eb7110a4e76108745 /cppu/source/uno/constr.hxx | |
parent | 835c83c7f218e861fea30dbc3924bf88faf8d1d4 (diff) |
rtl string api changes
Diffstat (limited to 'cppu/source/uno/constr.hxx')
-rw-r--r-- | cppu/source/uno/constr.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cppu/source/uno/constr.hxx b/cppu/source/uno/constr.hxx index 03627e136246..fe6eeb40dfba 100644 --- a/cppu/source/uno/constr.hxx +++ b/cppu/source/uno/constr.hxx @@ -2,9 +2,9 @@ * * $RCSfile: constr.hxx,v $ * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * - * last change: $Author: jsc $ $Date: 2001-03-30 13:41:39 $ + * last change: $Author: pl $ $Date: 2001-05-10 20:12:55 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -139,7 +139,7 @@ inline void __defaultConstructArray( { rtl_uString** ppElement = (rtl_uString **)pMem + i; *ppElement = 0; - RTL_USTRING_NEW( ppElement); + rtl_uString_new( ppElement); } break; case typelib_TypeClass_TYPE: @@ -228,7 +228,7 @@ inline void __defaultConstructData( break; case typelib_TypeClass_STRING: *(rtl_uString **)pMem = 0; - RTL_USTRING_NEW( (rtl_uString **)pMem ); + rtl_uString_new( (rtl_uString **)pMem ); break; case typelib_TypeClass_TYPE: *(typelib_TypeDescriptionReference **)pMem = __getVoidType(); |