Changeset 153022 in webkit


Ignore:
Timestamp:
Jul 22, 2013, 6:43:21 PM (12 years ago)
Author:
commit-queue@webkit.org
Message:

DateInputType constructor initiate incorrect base class
https://bugs.webkit.org/show_bug.cgi?id=118962

Patch by Santosh Mahto <santosh.ma@samsung.com> on 2013-07-22
Reviewed by Gyuyoung Kim.

No new test required since solving code error

  • html/DateInputType.cpp:

(WebCore::DateInputType::DateInputType):
Corrected the base class instantiation in constructor.

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r153017 r153022  
     12013-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
    1142013-07-22  Tim Horton  <timothy_horton@apple.com>
    215
  • trunk/Source/WebCore/html/DateInputType.cpp

    r150876 r153022  
    4848
    4949inline DateInputType::DateInputType(HTMLInputElement* element)
    50     : BaseDateInputType(element)
     50    : BaseChooserOnlyDateAndTimeInputType(element)
    5151{
    5252}
Note: See TracChangeset for help on using the changeset viewer.