blob: e4b2c0528c5f1c51ec7bfa6b6c2e5c7dd8620b55 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
$NetBSD: patch-ai,v 1.6 2006/02/26 11:46:41 markd Exp $
--- khtml/html/html_formimpl.cpp.orig 2006-01-20 19:53:03.000000000 +1300
+++ khtml/html/html_formimpl.cpp
@@ -2303,7 +2303,7 @@ void HTMLSelectElementImpl::recalcListIt
NodeImpl* const parent = current->parentNode();
current = current->nextSibling();
if (!current) {
- if (parent != this)
+ if (static_cast<const NodeImpl *>(parent) != this)
current = parent->nextSibling();
}
}
|