diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-10-28 12:01:52 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-10-28 15:06:32 +0000 |
commit | bdec3d22b6b9cb7fb3fcf36377ab4a393ccb18b3 (patch) | |
tree | dc64838ffc872f2df223c3ebb27e701e7b3bd49e /sw/source/uibase/dialog | |
parent | 576aff2aa87ecce61b5ba579a175181790592f03 (diff) |
coverity#704066 Unchecked return value
that's ok I think
Change-Id: Ie8dd3b938a058d771791471833fde4ef4ceef252
Diffstat (limited to 'sw/source/uibase/dialog')
-rw-r--r-- | sw/source/uibase/dialog/SwSpellDialogChildWindow.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/uibase/dialog/SwSpellDialogChildWindow.cxx b/sw/source/uibase/dialog/SwSpellDialogChildWindow.cxx index 8d9a3201cf95..01b1772d9066 100644 --- a/sw/source/uibase/dialog/SwSpellDialogChildWindow.cxx +++ b/sw/source/uibase/dialog/SwSpellDialogChildWindow.cxx @@ -332,7 +332,7 @@ The code below would only be part of the solution. delete m_pSpellState->pOtherCursor; m_pSpellState->pOtherCursor = 0; pWrtShell->SpellStart(DOCPOS_OTHERSTART, DOCPOS_CURR, DOCPOS_OTHERSTART ); - pWrtShell->SpellSentence(aRet, m_bIsGrammarCheckingOn); + (void)pWrtShell->SpellSentence(aRet, m_bIsGrammarCheckingOn); } if(!aRet.size()) { |