[Libreoffice-commits] core.git: filter/source

Stephan Bergmann sbergman at redhat.com
Tue Apr 8 12:39:31 PDT 2014


 filter/source/svg/svgfilter.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 09eacfbd913f682821d7ef74e5c073d11d493c47
Author: Stephan Bergmann <sbergman at redhat.com>
Date:   Tue Apr 8 21:38:49 2014 +0200

    loplugin:implicitboolconversion
    
    Change-Id: I82ec1212b29d1e5b0e56e81952fb1b514b5798d0

diff --git a/filter/source/svg/svgfilter.cxx b/filter/source/svg/svgfilter.cxx
index fc70d83..c47ce43 100644
--- a/filter/source/svg/svgfilter.cxx
+++ b/filter/source/svg/svgfilter.cxx
@@ -236,7 +236,7 @@ sal_Bool SAL_CALL SVGFilter::filter( const Sequence< PropertyValue >& rDescripto
 
                 if (xSelection->getSelection() >>= aSelection)
                 {
-                    bGotSelection = (sal_True == ( aSelection >>= maShapeSelection ));
+                    bGotSelection = ( aSelection >>= maShapeSelection );
                 }
             }
         }


More information about the Libreoffice-commits mailing list