diff options
author | Lei Zhang <thestig@chromium.org> | 2015-11-19 22:20:59 -0800 |
---|---|---|
committer | Lei Zhang <thestig@chromium.org> | 2015-11-19 22:20:59 -0800 |
commit | 5fd907b8266766152377a9836abfcac0161832fc (patch) | |
tree | 2b3f94e1b8a5e7f0c816139ceec79b2bca4eff0c /fpdfsdk/include/pdfwindow | |
parent | 237c3653bf7235ac5cab86bb61cfbd4ed8f18f75 (diff) | |
download | pdfium-5fd907b8266766152377a9836abfcac0161832fc.tar.xz |
Merge to XFA: Add more overrides.
Using Chromium's clang + build options, there's more override warnings.
TBR=tsepez@chromium.org
Review URL: https://codereview.chromium.org/1453643002 .
(cherry picked from commit 126ba519bdd489ec6c285d1410dcae773e8ef673)
Review URL: https://codereview.chromium.org/1458373002 .
Diffstat (limited to 'fpdfsdk/include/pdfwindow')
-rw-r--r-- | fpdfsdk/include/pdfwindow/PWL_ComboBox.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fpdfsdk/include/pdfwindow/PWL_ComboBox.h b/fpdfsdk/include/pdfwindow/PWL_ComboBox.h index e29752326c..be0ef0f5e1 100644 --- a/fpdfsdk/include/pdfwindow/PWL_ComboBox.h +++ b/fpdfsdk/include/pdfwindow/PWL_ComboBox.h @@ -47,11 +47,11 @@ class CPWL_CBButton : public CPWL_Wnd { class CPWL_ComboBox : public CPWL_Wnd { public: CPWL_ComboBox(); - ~CPWL_ComboBox() {} + ~CPWL_ComboBox() override {} operator CPWL_Edit*() { return m_pEdit; } - // CPWL_Wnd + // CPWL_Wnd: CFX_ByteString GetClassName() const override; void OnCreate(PWL_CREATEPARAM& cp) override; FX_BOOL OnKeyDown(FX_WORD nChar, FX_DWORD nFlag) override; |