diff options
-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(); } }; |