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

Caolán McNamara (via logerrit) logerrit at kemper.freedesktop.org
Thu Jul 18 11:33:20 UTC 2019


 dbaccess/source/ui/misc/DExport.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 33b962536a3e2d32e0066c0ad8423809037d38dd
Author:     Caolán McNamara <caolanm at redhat.com>
AuthorDate: Thu Jul 18 10:02:31 2019 +0100
Commit:     Caolán McNamara <caolanm at redhat.com>
CommitDate: Thu Jul 18 13:32:13 2019 +0200

    cid#703937 Unchecked return value
    
    Change-Id: I38be419c6ed4857c52ac555696a614008aaad907
    Reviewed-on: https://gerrit.libreoffice.org/75835
    Tested-by: Jenkins
    Reviewed-by: Caolán McNamara <caolanm at redhat.com>
    Tested-by: Caolán McNamara <caolanm at redhat.com>

diff --git a/dbaccess/source/ui/misc/DExport.cxx b/dbaccess/source/ui/misc/DExport.cxx
index eea6882135ef..3bc250adb718 100644
--- a/dbaccess/source/ui/misc/DExport.cxx
+++ b/dbaccess/source/ui/misc/DExport.cxx
@@ -319,7 +319,7 @@ void ODatabaseExport::insertValueIntoColumn()
                                 if ( eNumLang != LANGUAGE_NONE )
                                 {
                                     nNumberFormat2 = m_pFormatter->GetFormatForLanguageIfBuiltIn( nNumberFormat2, eNumLang );
-                                    m_pFormatter->IsNumberFormat( m_sTextToken, nNumberFormat2, fOutNumber );
+                                    (void)m_pFormatter->IsNumberFormat( m_sTextToken, nNumberFormat2, fOutNumber );
                                 }
                                 nNumberFormat = static_cast<sal_Int32>(nNumberFormat2);
                             }


More information about the Libreoffice-commits mailing list