summaryrefslogtreecommitdiff
path: root/xfa/fwl/basewidget
diff options
context:
space:
mode:
authortsepez <tsepez@chromium.org>2016-04-29 09:45:46 -0700
committerCommit bot <commit-bot@chromium.org>2016-04-29 09:45:46 -0700
commitd15ba4e29607665db35bc6fb610cc566981b324a (patch)
treee80465d1a9849f909b57f9ab82ad4ca58751cc0e /xfa/fwl/basewidget
parentb7a9604a34c3edf2d26dd109577fc417e45e149b (diff)
downloadpdfium-d15ba4e29607665db35bc6fb610cc566981b324a.tar.xz
Replace CFX_PtryArray with typesafe CFX_ArrayTemplate, Part 7
Remaining uses are all in fxbarcode/. Review-Url: https://codereview.chromium.org/1937453002
Diffstat (limited to 'xfa/fwl/basewidget')
-rw-r--r--xfa/fwl/basewidget/fwl_checkboximp.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/xfa/fwl/basewidget/fwl_checkboximp.cpp b/xfa/fwl/basewidget/fwl_checkboximp.cpp
index 76d5b8f421..f11a917eb1 100644
--- a/xfa/fwl/basewidget/fwl_checkboximp.cpp
+++ b/xfa/fwl/basewidget/fwl_checkboximp.cpp
@@ -361,7 +361,7 @@ void CFWL_CheckBoxImp::NextStates() {
CFWL_WidgetMgr* pWidgetMgr =
static_cast<CFWL_WidgetMgr*>(FWL_GetWidgetMgr());
if (!pWidgetMgr->IsFormDisabled()) {
- CFX_PtrArray radioarr;
+ CFX_ArrayTemplate<IFWL_Widget*> radioarr;
pWidgetMgr->GetSameGroupRadioButton(m_pInterface, radioarr);
IFWL_CheckBox* pCheckBox = NULL;
int32_t iCount = radioarr.GetSize();