| Index: fpdfsdk/fxedit/fxet_list.cpp
|
| diff --git a/fpdfsdk/fxedit/fxet_list.cpp b/fpdfsdk/fxedit/fxet_list.cpp
|
| index f060d931486bbd13bfd0fd230ce484d725bf4c9e..f3db38612c87af6e548177cd1ca5d49794c858e2 100644
|
| --- a/fpdfsdk/fxedit/fxet_list.cpp
|
| +++ b/fpdfsdk/fxedit/fxet_list.cpp
|
| @@ -6,6 +6,7 @@
|
|
|
| #include "fpdfsdk/include/fxedit/fxet_list.h"
|
|
|
| +#include "core/fpdfdoc/include/cpvt_word.h"
|
| #include "fpdfsdk/include/fxedit/fxet_edit.h"
|
|
|
| CFX_ListItem::CFX_ListItem()
|
| @@ -22,7 +23,7 @@ CFX_ListItem::~CFX_ListItem() {
|
| IFX_Edit::DelEdit(m_pEdit);
|
| }
|
|
|
| -void CFX_ListItem::SetFontMap(IFX_Edit_FontMap* pFontMap) {
|
| +void CFX_ListItem::SetFontMap(IPVT_FontMap* pFontMap) {
|
| if (m_pEdit)
|
| m_pEdit->SetFontMap(pFontMap);
|
| }
|
| @@ -111,7 +112,7 @@ void CFX_List::Empty() {
|
| m_aListItems.RemoveAll();
|
| }
|
|
|
| -void CFX_List::SetFontMap(IFX_Edit_FontMap* pFontMap) {
|
| +void CFX_List::SetFontMap(IPVT_FontMap* pFontMap) {
|
| m_pFontMap = pFontMap;
|
| }
|
|
|
|
|