diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-11-12 10:36:34 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-11-12 12:25:18 +0000 |
commit | 8d38824b3866d5a1da7d792bd06613ecc4c52be5 (patch) | |
tree | 1e7ff5ecf1dd69f477b4c0a7e529620417f3f1c6 | |
parent | 84e44386d70e886f9bae633ebe915ea3a52f8dbd (diff) |
coverity#1187642 Unchecked return value
Change-Id: I6b96ef79d0996e5b783d27c4da8e45ddeac5c7ab
-rw-r--r-- | svx/source/tbxctrls/itemwin.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/tbxctrls/itemwin.cxx b/svx/source/tbxctrls/itemwin.cxx index e5a7fb50571c..ebc7161fce63 100644 --- a/svx/source/tbxctrls/itemwin.cxx +++ b/svx/source/tbxctrls/itemwin.cxx @@ -375,7 +375,7 @@ bool SvxMetricField::Notify( NotifyEvent& rNEvt ) SfxViewShell* pSh = SfxViewShell::Current(); if ( rKey.GetModifier() && rKey.GetGroup() != KEYGROUP_CURSOR && pSh ) - pSh->KeyInput( *pKEvt ); + (void)pSh->KeyInput( *pKEvt ); else { bool bHandled = false; |