[Libreoffice-commits] core.git: sc/source

Tor Lillqvist tml at collabora.com
Mon Nov 24 01:20:51 PST 2014


 sc/source/ui/optdlg/calcoptionsdlg.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 60b63ab620401ce305a0b12bb6647e1970207ef9
Author: Tor Lillqvist <tml at collabora.com>
Date:   Mon Nov 24 11:16:07 2014 +0200

    cid#1255906: Unchecked return value
    
    Change-Id: I94696b3da73eb74a04b531ee8a93854208cddbec

diff --git a/sc/source/ui/optdlg/calcoptionsdlg.cxx b/sc/source/ui/optdlg/calcoptionsdlg.cxx
index 17b1ff8..ab52adb 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);
 


More information about the Libreoffice-commits mailing list