diff options
author | Martin Gallwey <mtg@openoffice.org> | 2001-08-01 10:44:41 +0000 |
---|---|---|
committer | Martin Gallwey <mtg@openoffice.org> | 2001-08-01 10:44:41 +0000 |
commit | 286f91819b4812cf0fa1f589d98f53fccf03adef (patch) | |
tree | 52267463e2a487e0a866af2664564d0eb3350d1b /comphelper | |
parent | 19a851d1ffd9b78ccced2bda04db66b4fd1aa899 (diff) |
#90187# Generate CppuType correctly
Diffstat (limited to 'comphelper')
-rw-r--r-- | comphelper/source/property/ChainablePropertySetInfo.cxx | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/comphelper/source/property/ChainablePropertySetInfo.cxx b/comphelper/source/property/ChainablePropertySetInfo.cxx index 319b356ee4cc..f1ef391a1204 100644 --- a/comphelper/source/property/ChainablePropertySetInfo.cxx +++ b/comphelper/source/property/ChainablePropertySetInfo.cxx @@ -2,9 +2,9 @@ * * $RCSfile: ChainablePropertySetInfo.cxx,v $ * - * $Revision: 1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: mtg $ $Date: 2001-07-24 20:36:11 $ + * last change: $Author: mtg $ $Date: 2001-08-01 11:44:41 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -166,8 +166,9 @@ Sequence< ::Property > SAL_CALL ChainablePropertySetInfo::getProperties() pProperties->Name = OUString( pInfo->mpName, pInfo->mnNameLen, RTL_TEXTENCODING_ASCII_US ); pProperties->Handle = pInfo->mnHandle; - const Type* pType = &pProperties->Type; + const Type* pType; GenerateCppuType ( pInfo->meCppuType, pType); + pProperties->Type = *pType; pProperties->Attributes = pInfo->mnAttributes; } } |