diff options
author | Sascha Ballach <sab@openoffice.org> | 2001-06-07 08:43:41 +0000 |
---|---|---|
committer | Sascha Ballach <sab@openoffice.org> | 2001-06-07 08:43:41 +0000 |
commit | 7bdfeb6b0b91f61a83e5603099b74718817f2fd8 (patch) | |
tree | f7992f3acc38411431fbece554e9b0a564de3dfc | |
parent | 0d06069a403c472b1b9f9b9602ee253a385b2964 (diff) |
#79771#; don't create a XMLPropertyState and so an any so often
-rw-r--r-- | xmloff/source/style/xmlexppr.cxx | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/xmloff/source/style/xmlexppr.cxx b/xmloff/source/style/xmlexppr.cxx index c417bac881c6..508476ee5471 100644 --- a/xmloff/source/style/xmlexppr.cxx +++ b/xmloff/source/style/xmlexppr.cxx @@ -2,9 +2,9 @@ * * $RCSfile: xmlexppr.cxx,v $ * - * $Revision: 1.27 $ + * $Revision: 1.28 $ * - * last change: $Author: dvo $ $Date: 2001-04-20 15:11:21 $ + * last change: $Author: sab $ $Date: 2001-06-07 09:43:41 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -499,9 +499,10 @@ void FilterPropertiesInfo_Impl::FillPropertyStateArray( aValues = xMultiPropSet->getPropertyValues( aAPINames ); const Any *pValues = aValues.getConstArray(); pPropIter = aPropIters; + XMLPropertyState aNewProperty( -1 ); for( i = 0; i < nValueCount; i++ ) { - XMLPropertyState aNewProperty( -1 ); + aNewProperty.mnIndex = -1; aNewProperty.maValue = *pValues; for( std::list<sal_uInt32>::iterator aIndexItr = |