summaryrefslogtreecommitdiffstats
path: root/WebCore/bindings/js/JSHTMLOptionElementConstructor.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/bindings/js/JSHTMLOptionElementConstructor.h')
-rw-r--r--WebCore/bindings/js/JSHTMLOptionElementConstructor.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/WebCore/bindings/js/JSHTMLOptionElementConstructor.h b/WebCore/bindings/js/JSHTMLOptionElementConstructor.h
index 47a95c7..ac347fa 100644
--- a/WebCore/bindings/js/JSHTMLOptionElementConstructor.h
+++ b/WebCore/bindings/js/JSHTMLOptionElementConstructor.h
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2006, 2008 Apple Inc. All rights reserved.
+ * Copyright (C) 2006 Apple Computer, Inc.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
@@ -25,13 +25,13 @@
namespace WebCore {
- class JSHTMLOptionElementConstructor : public DOMObject {
+ class JSHTMLOptionElementConstructor : public KJS::DOMObject {
public:
JSHTMLOptionElementConstructor(KJS::ExecState*, Document*);
virtual bool implementsConstruct() const;
- virtual KJS::JSObject* construct(KJS::ExecState*, const KJS::List& args);
+ virtual KJS::JSObject *construct(KJS::ExecState*, const KJS::List& args);
private:
- RefPtr<Document> m_document;
+ RefPtr<Document> m_doc;
};
}