diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-10-15 10:11:12 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-10-15 16:56:56 +0100 |
commit | 44add3e1f1274410f88ab2c81e4c674a05456f91 (patch) | |
tree | 3cadccaa951031a05ca5b1c33829bc3577c6257d /vcl | |
parent | b0f26546cece3b1f251c83d29560b09577bfe2f4 (diff) |
coverity#704088 Unchecked return value
Change-Id: I0fc00b445db0a6254adbfa335e6971c6787109d5
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/control/ilstbox.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/control/ilstbox.cxx b/vcl/source/control/ilstbox.cxx index 8a987f44338f..ec8eb6bf22ab 100644 --- a/vcl/source/control/ilstbox.cxx +++ b/vcl/source/control/ilstbox.cxx @@ -861,7 +861,7 @@ void ImplListBoxWindow::MouseButtonDown( const MouseEvent& rMEvt ) mnCurrentPos = nSelect; mbTrackingSelect = true; bool bCurPosChange = (mnCurrentPos != nSelect); - SelectEntries( nSelect, LET_MBDOWN, rMEvt.IsShift(), rMEvt.IsMod1() ,bCurPosChange); + (void)SelectEntries( nSelect, LET_MBDOWN, rMEvt.IsShift(), rMEvt.IsMod1() ,bCurPosChange); mbTrackingSelect = false; if ( mbGrabFocus ) GrabFocus(); |