diff options
author | Lei Zhang <thestig@chromium.org> | 2017-06-09 01:04:52 -0700 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-06-13 16:41:09 +0000 |
commit | 3516256c28c29d13e9092e7bb3ea3b417d3bb6df (patch) | |
tree | 543765e8a5a5376d4dcdd7bfcc464d2c0fe88c7f /fpdfsdk/pdfwindow/cpwl_wnd.h | |
parent | 19e6bcffdbf88cf2413699e6cfbd493ca3cba0a8 (diff) | |
download | pdfium-3516256c28c29d13e9092e7bb3ea3b417d3bb6df.tar.xz |
Implement CPWL_ComboBox::OnDestroy() to manage unowned pointers.
CPWL_ComboBox's unowned pointers to other CPWL_Wnds need to be released
at the right time. Also release the unowned pointer for CPWL_Wnd's
vertical scroll bar at the right time.
BUG=729041
Change-Id: I06a1da35fcb18dae8faf9cd4fbc0b75d38f115b0
Reviewed-on: https://pdfium-review.googlesource.com/6418
Commit-Queue: dsinclair <dsinclair@chromium.org>
Reviewed-by: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'fpdfsdk/pdfwindow/cpwl_wnd.h')
-rw-r--r-- | fpdfsdk/pdfwindow/cpwl_wnd.h | 21 |
1 files changed, 9 insertions, 12 deletions
diff --git a/fpdfsdk/pdfwindow/cpwl_wnd.h b/fpdfsdk/pdfwindow/cpwl_wnd.h index 86b0c66272..e7a4e23c38 100644 --- a/fpdfsdk/pdfwindow/cpwl_wnd.h +++ b/fpdfsdk/pdfwindow/cpwl_wnd.h @@ -73,18 +73,15 @@ class IPWL_Provider; #define PRES_TEXTOVERFLOW 0x0400L // notification messages -#define PNM_ADDCHILD 0x00000000L -#define PNM_REMOVECHILD 0x00000001L -#define PNM_SETSCROLLINFO 0x00000002L -#define PNM_SETSCROLLPOS 0x00000003L -#define PNM_SCROLLWINDOW 0x00000004L -#define PNM_LBUTTONDOWN 0x00000005L -#define PNM_LBUTTONUP 0x00000006L -#define PNM_MOUSEMOVE 0x00000007L -#define PNM_NOTERESET 0x00000008L -#define PNM_SETCARETINFO 0x00000009L -#define PNM_SELCHANGED 0x0000000AL -#define PNM_NOTEEDITCHANGED 0x0000000BL +#define PNM_ADDCHILD 0 +#define PNM_REMOVECHILD 1 +#define PNM_SETSCROLLINFO 2 +#define PNM_SETSCROLLPOS 3 +#define PNM_SCROLLWINDOW 4 +#define PNM_LBUTTONDOWN 5 +#define PNM_LBUTTONUP 6 +#define PNM_MOUSEMOVE 7 +#define PNM_SETCARETINFO 8 #define PWL_CLASSNAME_EDIT "CPWL_Edit" |