You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openoffice.apache.org by al...@apache.org on 2013/01/23 13:21:37 UTC

svn commit: r1437363 - /openoffice/branches/alg/clibboard/main/vcl/source/gdi/outdev2.cxx

Author: alg
Date: Wed Jan 23 12:21:37 2013
New Revision: 1437363

URL: http://svn.apache.org/viewvc?rev=1437363&view=rev
Log:
deactivate direct paint ionly for win version

Modified:
    openoffice/branches/alg/clibboard/main/vcl/source/gdi/outdev2.cxx

Modified: openoffice/branches/alg/clibboard/main/vcl/source/gdi/outdev2.cxx
URL: http://svn.apache.org/viewvc/openoffice/branches/alg/clibboard/main/vcl/source/gdi/outdev2.cxx?rev=1437363&r1=1437362&r2=1437363&view=diff
==============================================================================
--- openoffice/branches/alg/clibboard/main/vcl/source/gdi/outdev2.cxx (original)
+++ openoffice/branches/alg/clibboard/main/vcl/source/gdi/outdev2.cxx Wed Jan 23 12:21:37 2013
@@ -2092,6 +2092,7 @@ void OutputDevice::ImplDrawAlpha( const 
         // separate alpha VDev
         bool bTryDirectPaint(!mpAlphaVDev && !pDisableNative && !bHMirr && !bVMirr);
 
+#ifdef WNT
         if(bTryDirectPaint)
         {
             // only paint direct when no scaling and no MapMode, else the
@@ -2102,6 +2103,7 @@ void OutputDevice::ImplDrawAlpha( const 
                 bTryDirectPaint = false;
             }
         }
+#endif
 
         if(bTryDirectPaint) 
         {