diff options
Diffstat (limited to 'WebCore/html/HTMLIFrameElement.h')
-rw-r--r-- | WebCore/html/HTMLIFrameElement.h | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/WebCore/html/HTMLIFrameElement.h b/WebCore/html/HTMLIFrameElement.h index c1f7ea8..adead51 100644 --- a/WebCore/html/HTMLIFrameElement.h +++ b/WebCore/html/HTMLIFrameElement.h @@ -1,10 +1,8 @@ /* - * This file is part of the DOM implementation for KDE. - * * Copyright (C) 1999 Lars Knoll (knoll@kde.org) * (C) 1999 Antti Koivisto (koivisto@kde.org) * (C) 2000 Simon Hausmann <hausmann@kde.org> - * Copyright (C) 2004, 2006 Apple Computer, Inc. + * Copyright (C) 2004, 2006, 2008 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 @@ -30,10 +28,9 @@ namespace WebCore { -class HTMLIFrameElement : public HTMLFrameElementBase -{ +class HTMLIFrameElement : public HTMLFrameElementBase { public: - HTMLIFrameElement(Document* doc); + HTMLIFrameElement(Document*); virtual HTMLTagStatus endTagRequirement() const { return TagStatusRequired; } virtual int tagPriority() const { return 1; } @@ -61,7 +58,7 @@ public: void setWidth(const String&); private: - String oldNameAttr; + AtomicString m_name; }; } // namespace WebCore |