chart2/source/controller/dialogs/tp_SeriesToAxis.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit 7532317631a4303c737e307d21cb6c7e1c6a5a68 Author: Tor Lillqvist <[email protected]> Date: Thu Dec 3 14:44:50 2015 +0200 WaE: comparison between signed and unsigned integer expressions Change-Id: I051e2682bdff3bf88fecd726bd57652e5f9e8806 diff --git a/chart2/source/controller/dialogs/tp_SeriesToAxis.cxx b/chart2/source/controller/dialogs/tp_SeriesToAxis.cxx index f956ee6..613cbd6 100644 --- a/chart2/source/controller/dialogs/tp_SeriesToAxis.cxx +++ b/chart2/source/controller/dialogs/tp_SeriesToAxis.cxx @@ -199,7 +199,7 @@ void SchOptionTabPage::Reset(const SfxItemSet* rInAttrs) m_pRB_AssumeZero->Enable(false); m_pRB_ContinueLine->Enable(false); - for( sal_Int32 nN =0; nN<aMissingValueTreatments.size(); nN++ ) + for( size_t nN =0; nN<aMissingValueTreatments.size(); nN++ ) { sal_Int32 nVal = aMissingValueTreatments[nN]; if(nVal==::com::sun::star::chart::MissingValueTreatment::LEAVE_GAP) _______________________________________________ Libreoffice-commits mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
