| Index: Source/core/html/HTMLInputElement.h
|
| diff --git a/Source/core/html/HTMLInputElement.h b/Source/core/html/HTMLInputElement.h
|
| index 6004b83837bf0f45f4848c720a1b09b1f6e30dce..22e17d5d087d99e2f092c5e49e1d89b7672ce16a 100644
|
| --- a/Source/core/html/HTMLInputElement.h
|
| +++ b/Source/core/html/HTMLInputElement.h
|
| @@ -80,8 +80,8 @@ public:
|
| // Implementations of HTMLInputElement::stepUp() and stepDown().
|
| void stepUp(int, ExceptionState&);
|
| void stepDown(int, ExceptionState&);
|
| - void stepUp(ExceptionState& es) { stepUp(1, es); }
|
| - void stepDown(ExceptionState& es) { stepDown(1, es); }
|
| + void stepUp(ExceptionState& exceptionState) { stepUp(1, exceptionState); }
|
| + void stepDown(ExceptionState& exceptionState) { stepDown(1, exceptionState); }
|
| // stepUp()/stepDown() for user-interaction.
|
| bool isSteppable() const;
|
|
|
|
|