diff options
author | sj <sj@openoffice.org> | 2009-12-07 12:00:14 +0100 |
---|---|---|
committer | sj <sj@openoffice.org> | 2009-12-07 12:00:14 +0100 |
commit | 26e6d1abc8e5c083bfc96d12d7b51a7baee0eabd (patch) | |
tree | dada4d2106b77e263ae83f5b20e42646130beb97 /svtools | |
parent | 66ad3e12c985a02c98785280b6660527f9a03dbf (diff) |
impress181: #i107457#: applied patch (WMF/EMF import, text background is now correctly set)
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/source/filter.vcl/wmf/winmtf.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/svtools/source/filter.vcl/wmf/winmtf.cxx b/svtools/source/filter.vcl/wmf/winmtf.cxx index 3db3e6957e41..58dfdec45ee1 100644 --- a/svtools/source/filter.vcl/wmf/winmtf.cxx +++ b/svtools/source/filter.vcl/wmf/winmtf.cxx @@ -1522,9 +1522,9 @@ void WinMtfOutput::DrawText( Point& rPosition, String& rText, sal_Int32* pDXArry aTmp.SetFillColor( maBkColor ); if( mnBkMode == TRANSPARENT ) - maFont.SetTransparent( sal_True ); + aTmp.SetTransparent( sal_True ); else - maFont.SetTransparent( sal_False ); + aTmp.SetTransparent( sal_False ); if ( ( mnTextAlign & TA_BASELINE) == TA_BASELINE ) aTmp.SetAlign( ALIGN_BASELINE ); |