Changeset 155602 in webkit


Ignore:
Timestamp:
Sep 12, 2013 2:54:52 AM (11 years ago)
Author:
commit-queue@webkit.org
Message:

class WeekInputType invokes wrong constructor
https://bugs.webkit.org/show_bug.cgi?id=120768

Patch by Santosh Mahto <santosh.ma@samsung.com> on 2013-09-12
Reviewed by Andreas Kling.

Correcting wrong constuctor invocation.

  • html/WeekInputType.h:

(WebCore::WeekInputType::WeekInputType):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r155601 r155602  
     12013-09-12  Santosh Mahto  <santosh.ma@samsung.com>
     2
     3        class WeekInputType invokes wrong constructor
     4        https://bugs.webkit.org/show_bug.cgi?id=120768
     5
     6        Reviewed by Andreas Kling.
     7
     8        Correcting wrong constuctor invocation.
     9
     10        * html/WeekInputType.h:
     11        (WebCore::WeekInputType::WeekInputType):
     12
    1132013-09-12  Samuel White  <samuel_white@apple.com>
    214
  • trunk/Source/WebCore/html/WeekInputType.h

    r154721 r155602  
    4242
    4343private:
    44     explicit WeekInputType(HTMLInputElement* element) : BaseWeekInputType(element) { }
     44    explicit WeekInputType(HTMLInputElement* element) : BaseChooserOnlyDateAndTimeInputType(element) { }
    4545    virtual void attach() OVERRIDE;
    4646    virtual const AtomicString& formControlType() const OVERRIDE;
Note: See TracChangeset for help on using the changeset viewer.