summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoland Baudin <roland65@free.fr>2011-06-17 19:39:55 +0000
committerPetr Mladek <pmladek@suse.cz>2011-07-08 10:52:23 +0200
commit262261c39dc68ba7fb8d846fb3dacfa6b4fc98ba (patch)
treec3142827b66907ad6f219799ba4802108794b308
parentb904df34c21c1b24a5b6942d608c8a1cc8dc82df (diff)
Additional fix for bug fdo#33781
Signed-off-by: Petr Mladek <pmladek@suse.cz>
-rw-r--r--sw/source/core/doc/notxtfrm.cxx6
1 files changed, 6 insertions, 0 deletions
diff --git a/sw/source/core/doc/notxtfrm.cxx b/sw/source/core/doc/notxtfrm.cxx
index a5e4f2f65c..580000da7f 100644
--- a/sw/source/core/doc/notxtfrm.cxx
+++ b/sw/source/core/doc/notxtfrm.cxx
@@ -952,6 +952,12 @@ void SwNoTxtFrm::PaintPicture( OutputDevice* pOut, const SwRect &rGrfArea ) cons
}
else if( pOLENd )
{
+ // Fix for bug fdo#33781
+ if (pShell->Imp()->GetDrawView()->IsAntiAliasing())
+ {
+ pOut->SetAntialiasing( ANTIALIASING_ENABLE_B2DDRAW );
+ }
+
// #i99665#
// Adjust AntiAliasing mode at output device for chart OLE
const sal_uInt16 nFormerAntialiasingAtOutput( pOut->GetAntialiasing() );