diff options
Diffstat (limited to 'WebCore/css/CSSStyleSheet.h')
-rw-r--r-- | WebCore/css/CSSStyleSheet.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/WebCore/css/CSSStyleSheet.h b/WebCore/css/CSSStyleSheet.h index fe82794..3b18522 100644 --- a/WebCore/css/CSSStyleSheet.h +++ b/WebCore/css/CSSStyleSheet.h @@ -1,6 +1,6 @@ /* * (C) 1999-2003 Lars Knoll (knoll@kde.org) - * Copyright (C) 2004, 2006, 2007, 2008 Apple Inc. All rights reserved. + * Copyright (C) 2004, 2006, 2007, 2008, 2009, 2010 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 @@ -87,7 +87,7 @@ public: virtual void checkLoaded(); - Document* doc() { return m_doc; } + Document* document() { return m_document; } const String& charset() const { return m_charset; } @@ -112,8 +112,8 @@ private: virtual bool isCSSStyleSheet() const { return true; } virtual String type() const { return "text/css"; } - Document* m_doc; - CSSNamespace* m_namespaces; + Document* m_document; + OwnPtr<CSSNamespace> m_namespaces; String m_charset; bool m_loadCompleted : 1; bool m_strictParsing : 1; |