From 6efffbbfce9c27439f54970f7a569b069ce46eba Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Thu, 9 Jan 2020 19:38:32 +0100 Subject: Improve loplugin:redundantcast for sal_Int... vs. ::sal_Int... Change-Id: I1548a76fdc03afee68f1e5c01bc665e616f2edf2 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/86501 Tested-by: Jenkins Reviewed-by: Stephan Bergmann --- comphelper/source/property/propertycontainerhelper.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'comphelper') diff --git a/comphelper/source/property/propertycontainerhelper.cxx b/comphelper/source/property/propertycontainerhelper.cxx index c248a620e1ac..1ba31ec8258f 100644 --- a/comphelper/source/property/propertycontainerhelper.cxx +++ b/comphelper/source/property/propertycontainerhelper.cxx @@ -463,7 +463,7 @@ void OPropertyContainerHelper::describeProperties(Sequence< Property >& _rProps) { pOwnProps->Name = rProp.aProperty.Name; pOwnProps->Handle = rProp.aProperty.Handle; - pOwnProps->Attributes = static_cast(rProp.aProperty.Attributes); + pOwnProps->Attributes = rProp.aProperty.Attributes; pOwnProps->Type = rProp.aProperty.Type; ++pOwnProps; } -- cgit