Index: fpdfsdk/src/fsdk_mgr.cpp |
diff --git a/fpdfsdk/src/fsdk_mgr.cpp b/fpdfsdk/src/fsdk_mgr.cpp |
index e6be9bd737f6b3590ce00e04e6226c4b5713be11..7ac370ec43f90ae1388f61a041fef6b102513c16 100644 |
--- a/fpdfsdk/src/fsdk_mgr.cpp |
+++ b/fpdfsdk/src/fsdk_mgr.cpp |
@@ -751,7 +751,7 @@ CPDFSDK_Annot* CPDFSDK_PageView::GetFXWidgetAtPoint(FX_FLOAT pageX, FX_FLOAT pag |
FX_BOOL CPDFSDK_PageView::Annot_HasAppearance(CPDF_Annot* pAnnot) |
{ |
- CPDF_Dictionary* pAnnotDic = pAnnot->m_pAnnotDict; |
+ CPDF_Dictionary* pAnnotDic = pAnnot->GetAnnotDict(); |
if(pAnnotDic) |
return pAnnotDic->KeyExist("AS"); |
return FALSE; |
@@ -831,7 +831,7 @@ CPDFSDK_Annot* CPDFSDK_PageView::GetAnnotByDict(CPDF_Dictionary * pDict) |
for(int i=0; i<nCount; i++) |
{ |
CPDFSDK_Annot* pAnnot = (CPDFSDK_Annot*)m_fxAnnotArray.GetAt(i); |
- if(pDict==pAnnot->GetPDFAnnot()->m_pAnnotDict) |
+ if (pDict == pAnnot->GetPDFAnnot()->GetAnnotDict()) |
return pAnnot; |
} |
return NULL; |