Author: orw
Date: Fri May 23 14:50:23 2014
New Revision: 1597109

URL: http://svn.apache.org/r1597109
Log:
124966: keep picture format information - <GfxLink> instance - also for the 
reading of preview picture data
        in order to avoid trouble on save in case that the preview data equals 
the picture data


Modified:
    openoffice/trunk/main/svx/source/svdraw/svdograf.cxx

Modified: openoffice/trunk/main/svx/source/svdraw/svdograf.cxx
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/svx/source/svdraw/svdograf.cxx?rev=1597109&r1=1597108&r2=1597109&view=diff
==============================================================================
--- openoffice/trunk/main/svx/source/svdraw/svdograf.cxx (original)
+++ openoffice/trunk/main/svx/source/svdraw/svdograf.cxx Fri May 23 14:50:23 
2014
@@ -1537,9 +1537,11 @@ IMPL_LINK( SdrGrafObj, ImpSwapHdl, Graph
                     {
                         pFilterData = new com::sun::star::uno::Sequence< 
com::sun::star::beans::PropertyValue >( 3 );
 
-                        com::sun::star::awt::Size aPreviewSizeHint( 64, 64 );
-                        sal_Bool bAllowPartialStreamRead = sal_True;
-                        sal_Bool bCreateNativeLink = sal_False;
+                        const com::sun::star::awt::Size aPreviewSizeHint( 64, 
64 );
+                        const sal_Bool bAllowPartialStreamRead = sal_True;
+                        // create <GfxLink> instance also for previews in 
order to avoid that its corresponding
+                        // data is cleared in the graphic cache entry in case 
that the preview data equals the complete graphic data
+                        const sal_Bool bCreateNativeLink = sal_True;
                         (*pFilterData)[ 0 ].Name = String( 
RTL_CONSTASCII_USTRINGPARAM( "PreviewSizeHint" ) );
                         (*pFilterData)[ 0 ].Value <<= aPreviewSizeHint;
                         (*pFilterData)[ 1 ].Name = String( 
RTL_CONSTASCII_USTRINGPARAM( "AllowPartialStreamRead" ) );


Reply via email to