From c50eb68af3096645246a77259bb3d1cc70eb6b63 Mon Sep 17 00:00:00 2001 From: Stefan Heinemann <stefan.heinemann@codedump.ch> Date: Fri, 25 Sep 2015 13:06:09 +0200 Subject: Renamed wrongly prefixed boolean variables Fixed tdf#94269 Change-Id: I63109cc4e095bad680d7637a065080ea368860ae Reviewed-on: https://gerrit.libreoffice.org/18851 Reviewed-by: Michael Stahl <mstahl@redhat.com> Tested-by: Michael Stahl <mstahl@redhat.com> --- comphelper/source/misc/types.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'comphelper') diff --git a/comphelper/source/misc/types.cxx b/comphelper/source/misc/types.cxx index 9ae263cd549d..51fe425a472d 100644 --- a/comphelper/source/misc/types.cxx +++ b/comphelper/source/misc/types.cxx @@ -91,12 +91,12 @@ OUString getString(const Any& _rAny) bool getBOOL(const Any& _rAny) { - bool nReturn = false; + bool bReturn = false; if (_rAny.getValueType() == cppu::UnoType<bool>::get()) - nReturn = *static_cast<sal_Bool const *>(_rAny.getValue()); + bReturn = *static_cast<sal_Bool const *>(_rAny.getValue()); else OSL_FAIL("comphelper::getBOOL : invalid argument !"); - return nReturn; + return bReturn; } -- cgit