diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-02-11 14:26:30 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-02-11 14:26:30 +0100 |
commit | fef4a0f3d4216d77a8a3ce271ce0b0b878d965d6 (patch) | |
tree | c9f3951840ffaf247c97e1fcd3a807577743d0b6 /sw/inc | |
parent | 6c697a99c90a40492eb8c16466a2082cc2be927e (diff) |
loplugin:implicitboolconversion
Change-Id: I1b8cf992b574fe6155701711a619bad5bfc34265
Diffstat (limited to 'sw/inc')
-rw-r--r-- | sw/inc/docary.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
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(); } }; |