diff options
Diffstat (limited to 'fpdfsdk/pdfwindow/PWL_ListBox.h')
-rw-r--r-- | fpdfsdk/pdfwindow/PWL_ListBox.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fpdfsdk/pdfwindow/PWL_ListBox.h b/fpdfsdk/pdfwindow/PWL_ListBox.h index 9f8f464efb..0de9c91195 100644 --- a/fpdfsdk/pdfwindow/PWL_ListBox.h +++ b/fpdfsdk/pdfwindow/PWL_ListBox.h @@ -9,6 +9,7 @@ #include <memory> +#include "core/fxcrt/cfx_unowned_ptr.h" #include "fpdfsdk/fxedit/fx_edit.h" #include "fpdfsdk/pdfwindow/PWL_Wnd.h" @@ -111,7 +112,7 @@ class CPWL_ListBox : public CPWL_Wnd { IPWL_Filler_Notify* m_pFillerNotify; private: - CFFL_FormFiller* m_pFormFiller; // Not owned. + CFX_UnownedPtr<CFFL_FormFiller> m_pFormFiller; }; #endif // FPDFSDK_PDFWINDOW_PWL_LISTBOX_H_ |