From 2949fda214c46591983e60b464fb5591bd07c32e Mon Sep 17 00:00:00 2001 From: Oliver Bolte Date: Fri, 11 Dec 2009 10:38:18 +0000 Subject: CWS-TOOLING: integrate CWS ooo32gsl08 2009-11-30 18:15:30 +0100 pl r277678 : #i107248# cleanup updateGraphics 2009-11-30 17:03:42 +0100 pl r277677 : #i107080# invalidate is needed 2009-11-30 16:58:46 +0100 pl r277676 : #i107322# fix an access to dead memory 2009-11-27 18:39:26 +0100 thb r277670 : #i107248# Free render Picture before killing underlying drawable 2009-11-26 11:50:48 +0100 pl r277652 : #i107204# fix some native shortcuts on Snow Leopard 2009-11-25 17:04:16 +0100 cl r277638 : fixed typo 2009-11-25 13:34:59 +0100 pl r277634 : revert earlier ineffective change 2009-11-24 13:04:19 +0100 pl r277607 : #i107080# autorelease pool only on first yield --- svx/source/accessibility/AccessibleStaticTextBase.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/svx/source/accessibility/AccessibleStaticTextBase.cxx b/svx/source/accessibility/AccessibleStaticTextBase.cxx index c5681a4f0e..c0227e63cb 100644 --- a/svx/source/accessibility/AccessibleStaticTextBase.cxx +++ b/svx/source/accessibility/AccessibleStaticTextBase.cxx @@ -1016,9 +1016,9 @@ namespace accessibility const beans::PropertyValue* pItr = aIntersectionSeq.getConstArray(); const beans::PropertyValue* pEnd = pItr + aIntersectionSeq.getLength(); const beans::PropertyValue* pFind = ::std::find_if( pItr, pEnd, ::std::bind2nd( PropertyValueEqualFunctor(), boost::cref( pDefAttr[i] ) ) ); - if ( pFind == pEnd && pFind->Handle != 0) + if ( pFind == pEnd && pDefAttr[i].Handle != 0) { - aDiffVec.push_back( *pFind ); + aDiffVec.push_back( pDefAttr[i] ); } } -- cgit v1.2.3