| Index: Source/core/layout/LayoutListBox.cpp
|
| diff --git a/Source/core/layout/LayoutListBox.cpp b/Source/core/layout/LayoutListBox.cpp
|
| index bddeddebfbb0a2341ef77f786229fbf33a751f07..30b189616386b860dfd2850a49e411e005038084 100644
|
| --- a/Source/core/layout/LayoutListBox.cpp
|
| +++ b/Source/core/layout/LayoutListBox.cpp
|
| @@ -86,9 +86,9 @@ inline HTMLSelectElement* LayoutListBox::selectElement() const
|
| return toHTMLSelectElement(node());
|
| }
|
|
|
| -int LayoutListBox::size() const
|
| +unsigned LayoutListBox::size() const
|
| {
|
| - int specifiedSize = selectElement()->size();
|
| + unsigned specifiedSize = selectElement()->size();
|
| if (specifiedSize >= 1)
|
| return specifiedSize;
|
|
|
|
|