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

New commits:
commit 3f66ab95539846ace9867842f25d460d583915c3
Author: Caolán McNamara <caol...@redhat.com>
Date:   Wed Mar 2 17:14:35 2016 +0000

    coverity#703997 silence Unchecked return value
    
    Change-Id: I6801d8ff6d0646e14e359ab55bf523790abf7e41

diff --git a/sc/source/ui/docshell/impex.cxx b/sc/source/ui/docshell/impex.cxx
index 0b30728..aa2e487 100644
--- a/sc/source/ui/docshell/impex.cxx
+++ b/sc/source/ui/docshell/impex.cxx
@@ -2057,7 +2057,7 @@ bool ScImportExport::Doc2Sylk( SvStream& rStrm )
                             case MM_REFERENCE :
                             {   // diff expression with 'I' M$-extension
                                 ScAddress aPos;
-                                pFCell->GetMatrixOrigin( aPos );
+                                (void)pFCell->GetMatrixOrigin( aPos );
                                 aPrefix = ";I;R";
                                 aPrefix += OUString::number( aPos.Row() - 
nStartRow + 1 );
                                 aPrefix += ";C";
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to