diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2017-07-06 12:11:33 -0400 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-07-06 19:41:39 +0000 |
commit | 1f9d2338feb75d62bb28e116df7243dd567fded8 (patch) | |
tree | 3828f7c8212bfe30510e0975331060ec020c72d9 /fpdfsdk/pdfwindow/cpwl_list_box.h | |
parent | 16fea94c94006c25b878ef0acd0bb835397f62bb (diff) | |
download | pdfium-1f9d2338feb75d62bb28e116df7243dd567fded8.tar.xz |
Remove in-out param from OnNotifySelChangedchromium/3151
This CL converts OnNotifySelChanged to return instead of accepting an
in-out parameter.
Change-Id: I42ab220b1f3af304493496ada5624677652bf10f
Reviewed-on: https://pdfium-review.googlesource.com/7336
Reviewed-by: Henrique Nakashima <hnakashima@chromium.org>
Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'fpdfsdk/pdfwindow/cpwl_list_box.h')
-rw-r--r-- | fpdfsdk/pdfwindow/cpwl_list_box.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fpdfsdk/pdfwindow/cpwl_list_box.h b/fpdfsdk/pdfwindow/cpwl_list_box.h index d97f5ae31a..d4581c066e 100644 --- a/fpdfsdk/pdfwindow/cpwl_list_box.h +++ b/fpdfsdk/pdfwindow/cpwl_list_box.h @@ -70,7 +70,7 @@ class CPWL_ListBox : public CPWL_Wnd { virtual CFX_WideString GetText() const; - void OnNotifySelChanged(bool bKeyDown, bool& bExit, uint32_t nFlag); + bool OnNotifySelChanged(bool bKeyDown, uint32_t nFlag); void AddString(const CFX_WideString& str); void SetTopVisibleIndex(int32_t nItemIndex); |