Kaydet (Commit) ad4e155f authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#735418 Logically dead code

Change-Id: Iad5d984cd923758daee8d5d6d76694586a34b9e0
üst b2c18b7e
...@@ -1835,7 +1835,7 @@ void EditEngine::SetControlWord( sal_uInt32 nWord ) ...@@ -1835,7 +1835,7 @@ void EditEngine::SetControlWord( sal_uInt32 nWord )
if ( bSpellingChanged ) if ( bSpellingChanged )
{ {
pImpEditEngine->StopOnlineSpellTimer(); pImpEditEngine->StopOnlineSpellTimer();
if ( bSpellingChanged && ( nWord & EE_CNTRL_ONLINESPELLING ) ) if (nWord & EE_CNTRL_ONLINESPELLING)
{ {
// Create WrongList, start timer... // Create WrongList, start timer...
sal_Int32 nNodes = pImpEditEngine->GetEditDoc().Count(); sal_Int32 nNodes = pImpEditEngine->GetEditDoc().Count();
...@@ -1856,9 +1856,8 @@ void EditEngine::SetControlWord( sal_uInt32 nWord ) ...@@ -1856,9 +1856,8 @@ void EditEngine::SetControlWord( sal_uInt32 nWord )
ContentNode* pNode = pImpEditEngine->GetEditDoc().GetObject( n ); ContentNode* pNode = pImpEditEngine->GetEditDoc().GetObject( n );
const ParaPortion* pPortion = pImpEditEngine->GetParaPortions()[n]; const ParaPortion* pPortion = pImpEditEngine->GetParaPortions()[n];
bool bWrongs = false; bool bWrongs = false;
if (pNode->GetWrongList() != NULL && ( bSpellingChanged || ( nWord & EE_CNTRL_ONLINESPELLING ) )) if (pNode->GetWrongList() != NULL)
bWrongs = !pNode->GetWrongList()->empty(); bWrongs = !pNode->GetWrongList()->empty();
if ( bSpellingChanged )
pNode->DestroyWrongList(); pNode->DestroyWrongList();
if ( bWrongs ) if ( bWrongs )
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment