diff options
Diffstat (limited to 'fpdfsdk/formfiller/cffl_radiobutton.h')
-rw-r--r-- | fpdfsdk/formfiller/cffl_radiobutton.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/fpdfsdk/formfiller/cffl_radiobutton.h b/fpdfsdk/formfiller/cffl_radiobutton.h index 3c20be6d76..4702a27aec 100644 --- a/fpdfsdk/formfiller/cffl_radiobutton.h +++ b/fpdfsdk/formfiller/cffl_radiobutton.h @@ -7,6 +7,8 @@ #ifndef FPDFSDK_FORMFILLER_CFFL_RADIOBUTTON_H_ #define FPDFSDK_FORMFILLER_CFFL_RADIOBUTTON_H_ +#include <memory> + #include "fpdfsdk/formfiller/cffl_button.h" class CPWL_RadioButton; @@ -17,7 +19,8 @@ class CFFL_RadioButton final : public CFFL_Button { ~CFFL_RadioButton() override; // CFFL_Button: - CPWL_Wnd* NewPDFWindow(const CPWL_Wnd::CreateParams& cp) override; + std::unique_ptr<CPWL_Wnd> NewPDFWindow( + const CPWL_Wnd::CreateParams& cp) override; bool OnKeyDown(CPDFSDK_Annot* pAnnot, uint32_t nKeyCode, uint32_t nFlags) override; |