coverity#1242370: Unchecked return value
Change-Id: I11d80ddea4a38ce69ad7076af6da0bf173bd8551
This commit is contained in:
parent
9835a5823e
commit
22ca3bf1b9
@ -476,13 +476,12 @@ SvxThesaurusDialog::SvxThesaurusDialog(
|
|||||||
aLookUpHistory.push( rWord );
|
aLookUpHistory.push( rWord );
|
||||||
|
|
||||||
OUString aTmp( rWord );
|
OUString aTmp( rWord );
|
||||||
linguistic::RemoveHyphens( aTmp );
|
(void)linguistic::RemoveHyphens( aTmp );
|
||||||
linguistic::ReplaceControlChars( aTmp );
|
(void)linguistic::ReplaceControlChars( aTmp );
|
||||||
OUString aTmp2( aTmp );
|
m_pReplaceEdit->SetText( aTmp );
|
||||||
m_pReplaceEdit->SetText( aTmp2 );
|
m_pWordCB->InsertEntry( aTmp );
|
||||||
m_pWordCB->InsertEntry( aTmp2 );
|
|
||||||
|
|
||||||
LookUp( aTmp2 );
|
LookUp( aTmp );
|
||||||
m_pAlternativesCT->GrabFocus();
|
m_pAlternativesCT->GrabFocus();
|
||||||
m_pLeftBtn->Enable( false );
|
m_pLeftBtn->Enable( false );
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user