From fef4a0f3d4216d77a8a3ce271ce0b0b878d965d6 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Tue, 11 Feb 2014 14:26:30 +0100 Subject: loplugin:implicitboolconversion Change-Id: I1b8cf992b574fe6155701711a619bad5bfc34265 --- sw/inc/docary.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sw/inc') diff --git a/sw/inc/docary.hxx b/sw/inc/docary.hxx index ed78fd21d9a8..01cf94659b94 100644 --- a/sw/inc/docary.hxx +++ b/sw/inc/docary.hxx @@ -204,7 +204,7 @@ public: sal_uInt16 GetSize() const { return m_aExtraRedlines.size(); } SwExtraRedline* GetRedline( sal_uInt16 uIndex ) const { return m_aExtraRedlines.operator[]( uIndex ); } - sal_uInt16 IsEmpty() const { return m_aExtraRedlines.empty(); } + bool IsEmpty() const { return m_aExtraRedlines.empty(); } }; -- cgit