summaryrefslogtreecommitdiff
path: root/filter
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-04-08 21:38:49 +0200
committerStephan Bergmann <sbergman@redhat.com>2014-04-08 21:39:07 +0200
commit09eacfbd913f682821d7ef74e5c073d11d493c47 (patch)
treed20f88ca051e8a636a939f77e550035bff33d18d /filter
parentb0a6b164951c692cf5940d0c6e0c102603738f95 (diff)
loplugin:implicitboolconversion
Change-Id: I82ec1212b29d1e5b0e56e81952fb1b514b5798d0
Diffstat (limited to 'filter')
-rw-r--r--filter/source/svg/svgfilter.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/filter/source/svg/svgfilter.cxx b/filter/source/svg/svgfilter.cxx
index fc70d83a101c..c47ce43b8b82 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 );
}
}
}