Index: fpdfsdk/fpdfformfill.cpp |
diff --git a/fpdfsdk/fpdfformfill.cpp b/fpdfsdk/fpdfformfill.cpp |
index f949da1019d221752c550d60a546621882944035..438150974dd2095c0a0b77c8ac1091eca3955bc0 100644 |
--- a/fpdfsdk/fpdfformfill.cpp |
+++ b/fpdfsdk/fpdfformfill.cpp |
@@ -322,7 +322,8 @@ static void FFLCommon(FPDF_FORMHANDLE hHandle, |
options.m_BackColor = 0xffffff; |
} |
options.m_AddFlags = flags >> 8; |
- options.m_pOCContext = new CPDF_OCContext(pPage->m_pDocument); |
+ options.m_pOCContext = |
+ new CPDF_OCContext(pPage->m_pDocument, CPDF_OCContext::View); |
#else // PDF_ENABLE_XFA |
CPDFXFA_Document* pDocument = pPage->GetDocument(); |
if (!pDocument) |
@@ -366,7 +367,7 @@ static void FFLCommon(FPDF_FORMHANDLE hHandle, |
options.m_BackColor = 0xffffff; |
} |
options.m_AddFlags = flags >> 8; |
- options.m_pOCContext = new CPDF_OCContext(pPDFDoc); |
+ options.m_pOCContext = new CPDF_OCContext(pPDFDoc, CPDF_OCContext::View); |
if (CPDFSDK_PageView* pPageView = pFXDoc->GetPageView(pPage)) |
pPageView->PageView_OnDraw(pDevice.get(), &matrix, &options, clip); |