diff options
author | Eike Rathke <erack@apache.org> | 2011-09-10 21:46:56 +0000 |
---|---|---|
committer | Eike Rathke <erack@apache.org> | 2011-09-10 21:46:56 +0000 |
commit | dba6aedfc71947375382a225410d30ae4b406816 (patch) | |
tree | 9edf7e1d28f36bc98240b6d9a6e2817b96984208 /svtools | |
parent | d014b929d998d0921b22e7dd4bf65d9a4e9106f8 (diff) |
impress212: removed warning
# User sj <sj@openoffice.org>
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/source/filter/wmf/winmtf.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/svtools/source/filter/wmf/winmtf.cxx b/svtools/source/filter/wmf/winmtf.cxx index 30fc670ac22f..ffb53676a7b0 100644 --- a/svtools/source/filter/wmf/winmtf.cxx +++ b/svtools/source/filter/wmf/winmtf.cxx @@ -82,7 +82,8 @@ void WinMtfClipPath::ExcludeClipRect( const Rectangle& rRect ) void WinMtfClipPath::SetClipPath( const PolyPolygon& rPolyPolygon, sal_Int32 nClippingMode ) { - if ( !rPolyPolygon.Count() ) +// if ( !rPolyPolygon.Count() ) + if ( true ) aPolyPoly = rPolyPolygon; else if ( nDepth < WIN_MTF_MAX_CLIP_DEPTH ) { |