summaryrefslogtreecommitdiff
path: root/chart2
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2015-12-03 14:44:50 +0200
committerTor Lillqvist <tml@collabora.com>2015-12-03 14:44:50 +0200
commit7532317631a4303c737e307d21cb6c7e1c6a5a68 (patch)
tree558b4b9d60817ef17b60430c076a48ba7aa055a3 /chart2
parent57387eb30d07f15b1b2a798e0e4dcb0f4543945c (diff)
WaE: comparison between signed and unsigned integer expressions
Change-Id: I051e2682bdff3bf88fecd726bd57652e5f9e8806
Diffstat (limited to 'chart2')
-rw-r--r--chart2/source/controller/dialogs/tp_SeriesToAxis.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/chart2/source/controller/dialogs/tp_SeriesToAxis.cxx b/chart2/source/controller/dialogs/tp_SeriesToAxis.cxx
index f956ee6fc6fb..613cbd6172ab 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)