summaryrefslogtreecommitdiff
path: root/fpdfsdk/pwl/cpwl_combo_box.h
diff options
context:
space:
mode:
authorLei Zhang <thestig@chromium.org>2018-04-17 14:54:40 +0000
committerChromium commit bot <commit-bot@chromium.org>2018-04-17 14:54:40 +0000
commit3900ddb64f30f36fd6696bd2927cf8f151e6ede9 (patch)
treec73d361ea40fe4206f100c90fd2442afa49a47ab /fpdfsdk/pwl/cpwl_combo_box.h
parent6b26e1ae69321717c5ce098a1cd2c9f3e1099344 (diff)
downloadpdfium-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_combo_box.h')
-rw-r--r--fpdfsdk/pwl/cpwl_combo_box.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/fpdfsdk/pwl/cpwl_combo_box.h b/fpdfsdk/pwl/cpwl_combo_box.h
index 6db721369b..28c063d5fd 100644
--- a/fpdfsdk/pwl/cpwl_combo_box.h
+++ b/fpdfsdk/pwl/cpwl_combo_box.h
@@ -60,12 +60,12 @@ class CPWL_ComboBox : public CPWL_Wnd {
CFX_FloatRect GetFocusRect() const override;
void SetFocus() override;
void KillFocus() override;
+ WideString GetText() override;
WideString GetSelectedText() override;
void ReplaceSelection(const WideString& text) override;
void SetFillerNotify(IPWL_Filler_Notify* pNotify);
- WideString GetText() const;
void SetText(const WideString& text);
void AddString(const WideString& str);
int32_t GetSelect() const;