From 8a3120ced522357f53c97b051d0af6437c7a0316 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Thu, 11 Jun 2015 11:25:08 +0100 Subject: cppcheck: noExplicitConstructor Change-Id: Id6291335945a8f10cef3afd1a2b3bae65fdf4562 --- lotuswordpro/source/filter/lwpnumericfmt.hxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lotuswordpro/source/filter/lwpnumericfmt.hxx') diff --git a/lotuswordpro/source/filter/lwpnumericfmt.hxx b/lotuswordpro/source/filter/lwpnumericfmt.hxx index c4881f7ba066..b4501032e583 100644 --- a/lotuswordpro/source/filter/lwpnumericfmt.hxx +++ b/lotuswordpro/source/filter/lwpnumericfmt.hxx @@ -102,7 +102,7 @@ struct LwpCurrencyInfo OUString sSymbol; bool bPost; bool bShowSpace; - LwpCurrencyInfo(const OUString& sSym) + explicit LwpCurrencyInfo(const OUString& sSym) { sSymbol = sSym; bPost = false; @@ -248,7 +248,7 @@ private: class LwpNumericFormat { public: - LwpNumericFormat(LwpObjectStream * pStrm); + explicit LwpNumericFormat(LwpObjectStream * pStrm); ~LwpNumericFormat(){} void Read(); static bool IsCurrencyFormat(sal_uInt16 Format); -- cgit