diff options
author | Tom Sepez <tsepez@chromium.org> | 2015-11-23 09:13:33 -0800 |
---|---|---|
committer | Tom Sepez <tsepez@chromium.org> | 2015-11-23 09:13:33 -0800 |
commit | b4f00291e3dbf0b067fd8e1c40194a5a30d89b1f (patch) | |
tree | ca086507892838937d6cf4b036a1c35c7f76f251 /fpdfsdk/include | |
parent | 5a2374a8ac83cffb072c86d2e8825912a37d0a12 (diff) | |
download | pdfium-b4f00291e3dbf0b067fd8e1c40194a5a30d89b1f.tar.xz |
Merge to XFA: Replace |CPWL_ComboBox::operator CPWL_Edit()|.
Original Review URL: https://codereview.chromium.org/1467653002 .
(cherry picked from commit 54bc568bb41c5c258e95c24ef9d7355dcdc20f9e)
R=thestig@chromium.org
Review URL: https://codereview.chromium.org/1466743003 .
Diffstat (limited to 'fpdfsdk/include')
-rw-r--r-- | fpdfsdk/include/pdfwindow/PWL_ComboBox.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fpdfsdk/include/pdfwindow/PWL_ComboBox.h b/fpdfsdk/include/pdfwindow/PWL_ComboBox.h index be0ef0f5e1..9edb02c964 100644 --- a/fpdfsdk/include/pdfwindow/PWL_ComboBox.h +++ b/fpdfsdk/include/pdfwindow/PWL_ComboBox.h @@ -49,7 +49,7 @@ class CPWL_ComboBox : public CPWL_Wnd { CPWL_ComboBox(); ~CPWL_ComboBox() override {} - operator CPWL_Edit*() { return m_pEdit; } + CPWL_Edit* GetEdit() const { return m_pEdit; } // CPWL_Wnd: CFX_ByteString GetClassName() const override; |