diff options
Diffstat (limited to 'WebCore/html/HTMLAnchorElement.h')
-rw-r--r-- | WebCore/html/HTMLAnchorElement.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/WebCore/html/HTMLAnchorElement.h b/WebCore/html/HTMLAnchorElement.h index 9edcb6a..98e37e0 100644 --- a/WebCore/html/HTMLAnchorElement.h +++ b/WebCore/html/HTMLAnchorElement.h @@ -2,7 +2,7 @@ * Copyright (C) 1999 Lars Knoll (knoll@kde.org) * (C) 1999 Antti Koivisto (koivisto@kde.org) * (C) 2000 Simon Hausmann <hausmann@kde.org> - * Copyright (C) 2007, 2008 Apple Inc. All rights reserved. + * Copyright (C) 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 @@ -28,6 +28,8 @@ namespace WebCore { +class String; + class HTMLAnchorElement : public HTMLElement { public: HTMLAnchorElement(Document*); @@ -58,7 +60,7 @@ public: String coords() const; void setCoords(const String&); - KURL href() const; + String href() const; void setHref(const String&); String hreflang() const; |