diff options
author | Rüdiger Timm <rt@openoffice.org> | 2006-03-06 08:11:07 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2006-03-06 08:11:07 +0000 |
commit | 96681e9d53559c7c6f14cfc7b0d7535cbc6ba6c6 (patch) | |
tree | cc7e3cf98b42addb4afd420f3df5b44b90f87710 | |
parent | 612b80794c9cb94c7ff367075d84b2f3a15e7d53 (diff) |
INTEGRATION: CWS impress85 (1.26.134); FILE MERGED
2006/02/09 11:04:07 sj 1.26.134.1: #61108# creating temporary rectangle to prevent valgrind memory problem
-rw-r--r-- | svx/source/svdraw/svdoashp.cxx | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/svx/source/svdraw/svdoashp.cxx b/svx/source/svdraw/svdoashp.cxx index f247c4778e6b..60eeab84b36d 100644 --- a/svx/source/svdraw/svdoashp.cxx +++ b/svx/source/svdraw/svdoashp.cxx @@ -4,9 +4,9 @@ * * $RCSfile: svdoashp.cxx,v $ * - * $Revision: 1.26 $ + * $Revision: 1.27 $ * - * last change: $Author: obo $ $Date: 2005-11-19 13:38:08 $ + * last change: $Author: rt $ $Date: 2006-03-06 09:11:07 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -3638,7 +3638,9 @@ void SdrObjCustomShape::SetPage( SdrPage* pNewPage ) AdjustTextFrameWidthAndHeight() also has to be made, both actions are done by NbcSetSnapRect ! */ // SetRectsDirty(); - NbcSetSnapRect( aRect ); + + Rectangle aTmp( aRect ); //creating temporary rectangle #i61108# + NbcSetSnapRect( aTmp ); } SdrObjGeoData* SdrObjCustomShape::NewGeoData() const |