diff options
author | Lei Zhang <thestig@chromium.org> | 2015-08-11 13:55:52 -0700 |
---|---|---|
committer | Lei Zhang <thestig@chromium.org> | 2015-08-11 13:55:52 -0700 |
commit | b4c2167fff88665089eeab47afa45a9e890060a3 (patch) | |
tree | d40e8739cdfea849d6255d9d2237cd31896aba91 /fpdfsdk/src/formfiller | |
parent | 1e2ece0cf98f8daecdea5b45ebd20cedbcef4bd9 (diff) | |
download | pdfium-b4c2167fff88665089eeab47afa45a9e890060a3.tar.xz |
Fix some sign comparison warnings.
R=tsepez@chromium.org
Review URL: https://codereview.chromium.org/1279493003 .
Diffstat (limited to 'fpdfsdk/src/formfiller')
-rw-r--r-- | fpdfsdk/src/formfiller/FFL_ListBox.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fpdfsdk/src/formfiller/FFL_ListBox.cpp b/fpdfsdk/src/formfiller/FFL_ListBox.cpp index 0735f48cf3..0f478fe7e0 100644 --- a/fpdfsdk/src/formfiller/FFL_ListBox.cpp +++ b/fpdfsdk/src/formfiller/FFL_ListBox.cpp @@ -101,13 +101,13 @@ FX_BOOL CFFL_ListBox::IsDataChanged(CPDFSDK_PageView* pPageView) { return FALSE; if (m_pWidget->GetFieldFlags() & FIELDFLAG_MULTISELECT) { - int nSelCount = 0; + size_t nSelCount = 0; for (int32_t i = 0, sz = pListBox->GetCount(); i < sz; ++i) { if (pListBox->IsItemSelected(i)) { if (m_OriginSelections.count(i) == 0) return TRUE; - nSelCount++; + ++nSelCount; } } |