diff options
author | Lei Zhang <thestig@chromium.org> | 2018-04-17 14:54:40 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-04-17 14:54:40 +0000 |
commit | 3900ddb64f30f36fd6696bd2927cf8f151e6ede9 (patch) | |
tree | c73d361ea40fe4206f100c90fd2442afa49a47ab /fpdfsdk/pwl/cpwl_edit_ctrl.cpp | |
parent | 6b26e1ae69321717c5ce098a1cd2c9f3e1099344 (diff) | |
download | pdfium-3900ddb64f30f36fd6696bd2927cf8f151e6ede9.tar.xz |
Add a virtual CPWL_Wnd::GetText() method.
Most CPWL_Wnd subclasses already have GetText() implementations.
Change-Id: I61858019c59f915df422afaca97b8abde345575b
Reviewed-on: https://pdfium-review.googlesource.com/30860
Reviewed-by: dsinclair <dsinclair@chromium.org>
Commit-Queue: Lei Zhang <thestig@chromium.org>
Diffstat (limited to 'fpdfsdk/pwl/cpwl_edit_ctrl.cpp')
-rw-r--r-- | fpdfsdk/pwl/cpwl_edit_ctrl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fpdfsdk/pwl/cpwl_edit_ctrl.cpp b/fpdfsdk/pwl/cpwl_edit_ctrl.cpp index 06b5dedbf0..5e2f7acda6 100644 --- a/fpdfsdk/pwl/cpwl_edit_ctrl.cpp +++ b/fpdfsdk/pwl/cpwl_edit_ctrl.cpp @@ -346,7 +346,7 @@ bool CPWL_EditCtrl::SetCaret(bool bVisible, return true; } -WideString CPWL_EditCtrl::GetText() const { +WideString CPWL_EditCtrl::GetText() { return m_pEdit->GetText(); } |