| Index: fpdfsdk/include/pdfwindow/PWL_Caret.h
|
| diff --git a/fpdfsdk/include/pdfwindow/PWL_Caret.h b/fpdfsdk/include/pdfwindow/PWL_Caret.h
|
| index 7e61eeb66e5d35a83c838c8d71b7f8cfe6e0cf24..0fe4e89c2edbb0b118499b5e4e16247f471c13ff 100644
|
| --- a/fpdfsdk/include/pdfwindow/PWL_Caret.h
|
| +++ b/fpdfsdk/include/pdfwindow/PWL_Caret.h
|
| @@ -21,15 +21,17 @@ struct PWL_CARET_INFO {
|
| class CPWL_Caret : public CPWL_Wnd {
|
| public:
|
| CPWL_Caret();
|
| - virtual ~CPWL_Caret();
|
| -
|
| - virtual CFX_ByteString GetClassName() const;
|
| - virtual void GetThisAppearanceStream(CFX_ByteTextBuf& sAppStream);
|
| - virtual void DrawThisAppearance(CFX_RenderDevice* pDevice,
|
| - CPDF_Matrix* pUser2Device);
|
| - virtual void InvalidateRect(CPDF_Rect* pRect = NULL);
|
| - virtual void SetVisible(FX_BOOL bVisible) {}
|
| - virtual void TimerProc();
|
| + ~CPWL_Caret() override;
|
| +
|
| + // CPWL_Wnd
|
| + CFX_ByteString GetClassName() const override;
|
| + void GetThisAppearanceStream(CFX_ByteTextBuf& sAppStream) override;
|
| + void DrawThisAppearance(CFX_RenderDevice* pDevice,
|
| + CPDF_Matrix* pUser2Device) override;
|
| + void InvalidateRect(CPDF_Rect* pRect = NULL) override;
|
| + void SetVisible(FX_BOOL bVisible) override {}
|
| + void TimerProc() override;
|
| +
|
| void SetCaret(FX_BOOL bVisible,
|
| const CPDF_Point& ptHead,
|
| const CPDF_Point& ptFoot);
|
|
|