Changeset 153022 in webkit
- Timestamp:
- Jul 22, 2013, 6:43:21 PM (12 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r153017 r153022 1 2013-07-22 Santosh Mahto <santosh.ma@samsung.com> 2 3 DateInputType constructor initiate incorrect base class 4 https://bugs.webkit.org/show_bug.cgi?id=118962 5 6 Reviewed by Gyuyoung Kim. 7 8 No new test required since solving code error 9 10 * html/DateInputType.cpp: 11 (WebCore::DateInputType::DateInputType): 12 Corrected the base class instantiation in constructor. 13 1 14 2013-07-22 Tim Horton <timothy_horton@apple.com> 2 15 -
trunk/Source/WebCore/html/DateInputType.cpp
r150876 r153022 48 48 49 49 inline DateInputType::DateInputType(HTMLInputElement* element) 50 : Base DateInputType(element)50 : BaseChooserOnlyDateAndTimeInputType(element) 51 51 { 52 52 }
Note:
See TracChangeset
for help on using the changeset viewer.