summaryrefslogtreecommitdiff
path: root/sc/source
diff options
context:
space:
mode:
authorNorbert Thiebaud <nthiebaud@gmail.com>2014-10-04 21:19:01 -0500
committerNorbert Thiebaud <nthiebaud@gmail.com>2014-10-04 21:45:14 -0500
commit6c70a38d12a0ab91bbee5bf0fea172bfcd38d774 (patch)
treeb807c40fa3904bab5b5195e0b3c013e57ea19293 /sc/source
parent2fc308b941667294650233e6b0abd7c8e282472f (diff)
coverity#704002 Unchecked return value
Change-Id: Ibf506a219df7d0ad67959b3d266a037003fceea4
Diffstat (limited to 'sc/source')
-rw-r--r--sc/source/ui/view/cellsh1.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/view/cellsh1.cxx b/sc/source/ui/view/cellsh1.cxx
index 511d4b7e2e9d..5c63df47494e 100644
--- a/sc/source/ui/view/cellsh1.cxx
+++ b/sc/source/ui/view/cellsh1.cxx
@@ -2098,7 +2098,7 @@ void ScCellShell::ExecuteEdit( SfxRequest& rReq )
if (pHdl)
{
// "=" in KeyEvent, switches to input-mode
- pScMod->InputKeyEvent( KeyEvent('=', vcl::KeyCode()) );
+ (void)pScMod->InputKeyEvent( KeyEvent('=', vcl::KeyCode()) );
std::vector<OUString> aNames = pDlg->GetSelectedNames();
if (!aNames.empty())