diff options
Diffstat (limited to 'xfa/fde/fde_render.h')
-rw-r--r-- | xfa/fde/fde_render.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/xfa/fde/fde_render.h b/xfa/fde/fde_render.h index a24d6b5496..ba56754a3e 100644 --- a/xfa/fde/fde_render.h +++ b/xfa/fde/fde_render.h @@ -16,6 +16,7 @@ #include "xfa/fde/fde_visualset.h" class CFDE_RenderDevice; +class CFDE_TxtEdtTextSet; enum FDE_RENDERSTATUS { FDE_RENDERSTATUS_Reset = 0, @@ -30,12 +31,12 @@ class CFDE_RenderContext { ~CFDE_RenderContext(); bool StartRender(CFDE_RenderDevice* pRenderDevice, - IFDE_CanvasSet* pCanvasSet, + CFDE_TxtEdtPage* pCanvasSet, const CFX_Matrix& tmDoc2Device); FDE_RENDERSTATUS GetStatus() const { return m_eStatus; } FDE_RENDERSTATUS DoRender(IFX_Pause* pPause = nullptr); void StopRender(); - void RenderText(IFDE_TextSet* pTextSet, FDE_TEXTEDITPIECE* pText); + void RenderText(CFDE_TxtEdtTextSet* pTextSet, FDE_TEXTEDITPIECE* pText); protected: FDE_RENDERSTATUS m_eStatus; |