summaryrefslogtreecommitdiff
path: root/xfa/fwl/core/ifwl_monthcalendar.h
diff options
context:
space:
mode:
authordsinclair <dsinclair@chromium.org>2016-11-23 09:02:34 -0800
committerCommit bot <commit-bot@chromium.org>2016-11-23 09:02:34 -0800
commit209821f79d0bbeeaeadf4e82ff643ee20d676222 (patch)
tree8384d4422830f598fbe727448e1f39bdd73a895d /xfa/fwl/core/ifwl_monthcalendar.h
parent1e32d811c1c9f0a729e8072cf3530208cf52e763 (diff)
downloadpdfium-209821f79d0bbeeaeadf4e82ff643ee20d676222.tar.xz
Remove plumbing for today value
The calendar always sets today to 2011/01/01. This Cl removes the various DataProviders needed to plumb this value and just sets it where needed. Review-Url: https://codereview.chromium.org/2524993002
Diffstat (limited to 'xfa/fwl/core/ifwl_monthcalendar.h')
-rw-r--r--xfa/fwl/core/ifwl_monthcalendar.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/xfa/fwl/core/ifwl_monthcalendar.h b/xfa/fwl/core/ifwl_monthcalendar.h
index dd58663106..758ce5c730 100644
--- a/xfa/fwl/core/ifwl_monthcalendar.h
+++ b/xfa/fwl/core/ifwl_monthcalendar.h
@@ -28,13 +28,6 @@ class IFWL_Widget;
class IFWL_MonthCalendar : public IFWL_Widget {
public:
- class DataProvider : public IFWL_Widget::DataProvider {
- public:
- virtual int32_t GetCurDay(IFWL_Widget* pWidget) = 0;
- virtual int32_t GetCurMonth(IFWL_Widget* pWidget) = 0;
- virtual int32_t GetCurYear(IFWL_Widget* pWidget) = 0;
- };
-
IFWL_MonthCalendar(const CFWL_App* app,
std::unique_ptr<CFWL_WidgetProperties> properties,
IFWL_Widget* pOuter);