diff options
author | Ivo Hinkelmann <ihi@openoffice.org> | 2009-04-23 14:51:28 +0000 |
---|---|---|
committer | Ivo Hinkelmann <ihi@openoffice.org> | 2009-04-23 14:51:28 +0000 |
commit | a73ac8926a739fcbc434adf460cc1dba950ffeea (patch) | |
tree | b54baaa0c6402f6fa800ebff350d3d0f0ebf9aeb /svx/source | |
parent | 600b7c043d4e082432e5c63f74bdb5948b9767bc (diff) |
CWS-TOOLING: integrate CWS aw070_DEV300
2009-04-14 15:12:41 +0200 hdu r270783 : #i100951# avoid expensive calls to basegfx::tools::clipPolygonOnRange() if possible
2009-04-14 15:04:05 +0200 hdu r270780 : #i100922# prevent needless stl::priority_queue reallacations by reserving
2009-04-14 14:44:18 +0200 aw r270776 : #i100851# corrected unxlngi4 warning
2009-04-14 14:41:44 +0200 aw r270774 : #i100851# applied suggested patch from task
2009-04-14 14:32:30 +0200 aw r270769 : #i101075# corrected offset usage for wrong spell and transformation mapping for page preview primitives with aspect ratio
2009-04-14 13:56:13 +0200 aw r270763 : #i101075# changed to empty range usage when collecting page conent for page preview object
Diffstat (limited to 'svx/source')
-rw-r--r-- | svx/source/sdr/contact/viewobjectcontactofpageobj.cxx | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/svx/source/sdr/contact/viewobjectcontactofpageobj.cxx b/svx/source/sdr/contact/viewobjectcontactofpageobj.cxx index ce8e2862590e..87288882995e 100644 --- a/svx/source/sdr/contact/viewobjectcontactofpageobj.cxx +++ b/svx/source/sdr/contact/viewobjectcontactofpageobj.cxx @@ -147,7 +147,15 @@ namespace sdr const drawinglayer::geometry::ViewInformation2D aNewViewInformation2D( rOriginalViewInformation.getObjectTransformation(), rOriginalViewInformation.getViewTransformation(), - rOriginalViewInformation.getViewport(), + + // #i101075# use empty range for page content here to force + // the content not to be physically clipped in any way. This + // would be possible, but would require the internal transformation + // which maps between the page visualisation object and the page + // content, including the aspect ratios (for details see in + // PagePreviewPrimitive2D::createLocalDecomposition) + basegfx::B2DRange(), + GetXDrawPageForSdrPage(const_cast< SdrPage* >(pStartPage)), 0.0, // no time; page previews are not animated rOriginalViewInformation.getExtendedInformationSequence()); |