diff options
Diffstat (limited to 'editeng/source')
-rw-r--r-- | editeng/source/editeng/textconv.cxx | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/editeng/source/editeng/textconv.cxx b/editeng/source/editeng/textconv.cxx index f47de16c5eaf..be8c31ad2ef7 100644 --- a/editeng/source/editeng/textconv.cxx +++ b/editeng/source/editeng/textconv.cxx @@ -96,8 +96,6 @@ bool TextConvWrapper::ConvNext_impl() } - bool bGoOn = false; - if ( m_bStartDone && m_bEndDone ) { if ( ConvMore_impl() ) // examine another document? @@ -112,9 +110,10 @@ bool TextConvWrapper::ConvNext_impl() { m_bStartChk = !m_bStartDone; ConvStart_impl( m_bStartChk ? SVX_SPELL_BODY_START : SVX_SPELL_BODY_END ); - bGoOn = true; + return true; } - return bGoOn; + + return false; } |