diff options
author | tsepez <tsepez@chromium.org> | 2016-04-27 16:59:30 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-04-27 16:59:30 -0700 |
commit | bb0d446df18ee34504a165f3fc96fbb81b274f31 (patch) | |
tree | 9c2615b4c8a8d597f22e8504c23e2fdbf1df4de5 /xfa/fxfa/parser/xfa_localemgr.h | |
parent | df96690d4e3799536b981e3673d64018fa5fd037 (diff) | |
download | pdfium-bb0d446df18ee34504a165f3fc96fbb81b274f31.tar.xz |
Replace CFX_PtrArray with typesafe CFX_ArrayTemplate<>, part 3
Review-Url: https://codereview.chromium.org/1924093003
Diffstat (limited to 'xfa/fxfa/parser/xfa_localemgr.h')
-rw-r--r-- | xfa/fxfa/parser/xfa_localemgr.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xfa/fxfa/parser/xfa_localemgr.h b/xfa/fxfa/parser/xfa_localemgr.h index 2bdd1dd504..c82c47c7f3 100644 --- a/xfa/fxfa/parser/xfa_localemgr.h +++ b/xfa/fxfa/parser/xfa_localemgr.h @@ -43,8 +43,8 @@ class CXFA_LocaleMgr : public IFX_LocaleMgr { CFX_WideStringC GetConfigLocaleName(CXFA_Node* pConfig); protected: - CFX_PtrArray m_LocaleArray; - CFX_PtrArray m_XMLLocaleArray; + CFX_ArrayTemplate<IFX_Locale*> m_LocaleArray; + CFX_ArrayTemplate<IFX_Locale*> m_XMLLocaleArray; IFX_Locale* m_pDefLocale; CFX_WideString m_wsConfigLocale; uint16_t m_dwDeflcid; |