Skip to content

Commit 5709f52

Browse files
committed
Build fix.
Canonical link: https://commits.webkit.org/14667@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@17446 268f45cc-cd09-0410-ab3c-d52691b4dbfc
1 parent 1473aba commit 5709f52

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

WebCore/editing/DeleteButtonController.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@ static bool isDeletableElement(Node* node)
6565
if (!node || !node->isHTMLElement() || !node->isContentEditable())
6666
return false;
6767

68-
const unsigned minimumWidth = 25;
69-
const unsigned minimumHeight = 25;
68+
const int minimumWidth = 25;
69+
const int minimumHeight = 25;
7070
const unsigned minimumVisibleBorders = 3;
7171

7272
RenderObject* renderer = node->renderer();

0 commit comments

Comments
 (0)