diff options
Diffstat (limited to 'fpdfsdk/pwl/cpwl_wnd.h')
-rw-r--r-- | fpdfsdk/pwl/cpwl_wnd.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fpdfsdk/pwl/cpwl_wnd.h b/fpdfsdk/pwl/cpwl_wnd.h index 1ed239ed85..cc6662be30 100644 --- a/fpdfsdk/pwl/cpwl_wnd.h +++ b/fpdfsdk/pwl/cpwl_wnd.h @@ -106,7 +106,7 @@ class CPWL_Wnd : public CPWL_TimerHandler, public Observable<CPWL_Wnd> { class ProviderIface : public Observable<ProviderIface> { public: - virtual ~ProviderIface() {} + virtual ~ProviderIface() = default; // get a matrix which map user space to CWnd client space virtual CFX_Matrix GetWindowMatrix(PrivateData* pAttached) = 0; @@ -114,7 +114,7 @@ class CPWL_Wnd : public CPWL_TimerHandler, public Observable<CPWL_Wnd> { class FocusHandlerIface { public: - virtual ~FocusHandlerIface() {} + virtual ~FocusHandlerIface() = default; virtual void OnSetFocus(CPWL_Edit* pEdit) = 0; }; |