Kaydet (Commit) 22ca3bf1 authored tarafından Norbert Thiebaud's avatar Norbert Thiebaud

coverity#1242370: Unchecked return value

Change-Id: I11d80ddea4a38ce69ad7076af6da0bf173bd8551
üst 9835a582
......@@ -476,13 +476,12 @@ SvxThesaurusDialog::SvxThesaurusDialog(
aLookUpHistory.push( rWord );
OUString aTmp( rWord );
linguistic::RemoveHyphens( aTmp );
linguistic::ReplaceControlChars( aTmp );
OUString aTmp2( aTmp );
m_pReplaceEdit->SetText( aTmp2 );
m_pWordCB->InsertEntry( aTmp2 );
(void)linguistic::RemoveHyphens( aTmp );
(void)linguistic::ReplaceControlChars( aTmp );
m_pReplaceEdit->SetText( aTmp );
m_pWordCB->InsertEntry( aTmp );
LookUp( aTmp2 );
LookUp( aTmp );
m_pAlternativesCT->GrabFocus();
m_pLeftBtn->Enable( false );
......
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