diff options
Diffstat (limited to 'WebCore/html/HTMLObjectElement.h')
-rw-r--r-- | WebCore/html/HTMLObjectElement.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/WebCore/html/HTMLObjectElement.h b/WebCore/html/HTMLObjectElement.h index 32c297c..0a87b9f 100644 --- a/WebCore/html/HTMLObjectElement.h +++ b/WebCore/html/HTMLObjectElement.h @@ -1,7 +1,7 @@ /* * Copyright (C) 1999 Lars Knoll (knoll@kde.org) * (C) 1999 Antti Koivisto (koivisto@kde.org) - * Copyright (C) 2004, 2006, 2007, 2008 Apple Inc. All rights reserved. + * Copyright (C) 2004, 2006, 2007 Apple Inc. All rights reserved. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public @@ -29,7 +29,6 @@ namespace WebCore { class HTMLImageLoader; -class KURL; class HTMLObjectElement : public HTMLPlugInElement { public: @@ -49,7 +48,7 @@ public: virtual void removedFromDocument(); virtual void recalcStyle(StyleChange); - virtual void childrenChanged(bool changedByParser = false, Node* beforeChange = 0, Node* afterChange = 0, int childCountDelta = 0); + virtual void childrenChanged(bool changedByParser = false); virtual bool isURLAttribute(Attribute*) const; virtual const QualifiedName& imageSourceAttributeName() const; @@ -80,7 +79,7 @@ public: String codeType() const; void setCodeType(const String&); - KURL data() const; + String data() const; void setData(const String&); bool declare() const; |