oox/source/export/chartexport.cxx | 1 + vcl/source/app/salvtables.cxx | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-)
New commits: commit 46c90ca5f92bfa517b8b89a2d42d60ec3f9f3adc Author: Caolán McNamara <[email protected]> AuthorDate: Sun Oct 6 21:32:09 2019 +0100 Commit: Caolán McNamara <[email protected]> CommitDate: Mon Oct 7 09:52:59 2019 +0200 cid#1454634 silence Unchecked return value Change-Id: Ica5c87b1b217716d2522dd5b97ca73d8748d5f48 Reviewed-on: https://gerrit.libreoffice.org/80330 Tested-by: Jenkins Reviewed-by: Caolán McNamara <[email protected]> Tested-by: Caolán McNamara <[email protected]> diff --git a/vcl/source/app/salvtables.cxx b/vcl/source/app/salvtables.cxx index baabc1e6327c..ac51b15cbc2d 100644 --- a/vcl/source/app/salvtables.cxx +++ b/vcl/source/app/salvtables.cxx @@ -1599,7 +1599,7 @@ public: m_xWizard->SetPageSizePixel(aFinalSize); } - m_xWizard->ShowPage(m_aIds[nPage]); + (void)m_xWizard->ShowPage(m_aIds[nPage]); enable_notify_events(); } commit e5c67f714335000fcbd6ffb5f37bd1b9e9326bb8 Author: Caolán McNamara <[email protected]> AuthorDate: Sun Oct 6 21:27:41 2019 +0100 Commit: Caolán McNamara <[email protected]> CommitDate: Mon Oct 7 09:52:47 2019 +0200 cid#1454626 Uninitialized scalar field Change-Id: I953bf3828cf3c5df5335dbc9b1ee2142aff4047b Reviewed-on: https://gerrit.libreoffice.org/80329 Tested-by: Jenkins Reviewed-by: Caolán McNamara <[email protected]> Tested-by: Caolán McNamara <[email protected]> diff --git a/oox/source/export/chartexport.cxx b/oox/source/export/chartexport.cxx index 5e23e68cb631..ee4d83766846 100644 --- a/oox/source/export/chartexport.cxx +++ b/oox/source/export/chartexport.cxx @@ -422,6 +422,7 @@ ChartExport::ChartExport( sal_Int32 nXmlNamespace, FSHelperPtr pFS, Reference< f , mxChartModel( xModel ) , mpURLTransformer(new URLTransformer) , mbHasCategoryLabels( false ) + , mbIsCategoryPositionShifted( false ) , mbHasZAxis( false ) , mbIs3DChart( false ) , mbStacked(false) _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
