diff options
author | Caolán McNamara <caolanm@redhat.com> | 2016-12-12 09:35:41 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2016-12-12 09:47:40 +0000 |
commit | d6b094bc8f23cbdad4da646320f3e6809fa42c5d (patch) | |
tree | 52aa90e405f655fc9deb459544744857bd625175 | |
parent | 69f6fbb5d0ad87c85e0236a7fece107b69eb8b8b (diff) |
coverity#1397043 Unchecked return value
Change-Id: I37c49aa568646e44c05f5feec537d344a2440b91
-rw-r--r-- | vcl/source/edit/vclmedit.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/edit/vclmedit.cxx b/vcl/source/edit/vclmedit.cxx index 036783956b62..82808783c2fa 100644 --- a/vcl/source/edit/vclmedit.cxx +++ b/vcl/source/edit/vclmedit.cxx @@ -696,7 +696,7 @@ bool ImpVclMEdit::HandleCommand( const CommandEvent& rCEvt ) ( rCEvt.GetCommand() == CommandEventId::StartAutoScroll ) || ( rCEvt.GetCommand() == CommandEventId::AutoScroll ) ) { - mpTextWindow->HandleScrollCommand( rCEvt, mpHScrollBar, mpVScrollBar ); + (void)mpTextWindow->HandleScrollCommand( rCEvt, mpHScrollBar, mpVScrollBar ); bDone = true; } return bDone; |