summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2014-11-24 11:16:07 +0200
committerTor Lillqvist <tml@collabora.com>2014-11-24 11:17:04 +0200
commit60b63ab620401ce305a0b12bb6647e1970207ef9 (patch)
tree1727e7861a4bbaf0fa1af969653457e07ad0ecb8 /sc
parentd59554a50ae9870346d5e36a3cd5470016eda0e9 (diff)
cid#1255906: Unchecked return value
Change-Id: I94696b3da73eb74a04b531ee8a93854208cddbec
Diffstat (limited to 'sc')
-rw-r--r--sc/source/ui/optdlg/calcoptionsdlg.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/optdlg/calcoptionsdlg.cxx b/sc/source/ui/optdlg/calcoptionsdlg.cxx
index 17b1ff8556eb..ab52adbd6bb7 100644
--- a/sc/source/ui/optdlg/calcoptionsdlg.cxx
+++ b/sc/source/ui/optdlg/calcoptionsdlg.cxx
@@ -1009,7 +1009,7 @@ struct OpenCLTester
sc::AutoCalcSwitch aACSwitch(*mpDoc, true);
mnTestAreas++;
- mpDocShell->GetDocFunc().InsertTable(mnTestAreas, rArea.msTitle, false, true);
+ (void) mpDocShell->GetDocFunc().InsertTable(mnTestAreas, rArea.msTitle, false, true);
rArea.addHeader(mpDoc, mnTestAreas);