[Libreoffice-commits] core.git: chart2/source
Tor Lillqvist
tml at collabora.com
Thu Dec 3 04:50:16 PST 2015
chart2/source/controller/dialogs/tp_SeriesToAxis.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 7532317631a4303c737e307d21cb6c7e1c6a5a68
Author: Tor Lillqvist <tml at collabora.com>
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)
More information about the Libreoffice-commits
mailing list