diff options
author | Lei Zhang <thestig@chromium.org> | 2016-01-25 16:35:42 -0800 |
---|---|---|
committer | Lei Zhang <thestig@chromium.org> | 2016-01-25 16:35:42 -0800 |
commit | 05e67415684adc36af228ca2f1e0efc30a40d242 (patch) | |
tree | f1b18021923a3e79aecf5fac7144df3552b06db0 /xfa/src/fwl | |
parent | 52bb44383a705b600e0d028bff5ade17856f5a60 (diff) | |
download | pdfium-05e67415684adc36af228ca2f1e0efc30a40d242.tar.xz |
XFA: Fix a bunch of pointless returns.chromium/2637chromium/2636chromium/2635chromium/2634chromium/2633chromium/2632
And a few other nits.
R=tsepez@chromium.org
Review URL: https://codereview.chromium.org/1635853002 .
Diffstat (limited to 'xfa/src/fwl')
-rw-r--r-- | xfa/src/fwl/src/basewidget/fwl_monthcalendarimp.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/xfa/src/fwl/src/basewidget/fwl_monthcalendarimp.cpp b/xfa/src/fwl/src/basewidget/fwl_monthcalendarimp.cpp index 3e038299a8..044961ab9c 100644 --- a/xfa/src/fwl/src/basewidget/fwl_monthcalendarimp.cpp +++ b/xfa/src/fwl/src/basewidget/fwl_monthcalendarimp.cpp @@ -974,9 +974,10 @@ FWL_ERR CFWL_MonthCalendarImpDelegate::OnDrawWidget(CFX_Graphics* pGraphics, const CFX_Matrix* pMatrix) {
return m_pOwner->DrawWidget(pGraphics, pMatrix);
}
+
void CFWL_MonthCalendarImpDelegate::OnActivate(CFWL_Message* pMsg) {
- return;
}
+
void CFWL_MonthCalendarImpDelegate::OnFocusChanged(CFWL_Message* pMsg,
FX_BOOL bSet) {
if (bSet) {
|