summaryrefslogtreecommitdiffstats
path: root/WebCore/wml/WMLDocument.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/wml/WMLDocument.h')
-rw-r--r--WebCore/wml/WMLDocument.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/WebCore/wml/WMLDocument.h b/WebCore/wml/WMLDocument.h
index 9053518..3057d9b 100644
--- a/WebCore/wml/WMLDocument.h
+++ b/WebCore/wml/WMLDocument.h
@@ -32,9 +32,9 @@ class WMLCardElement;
class WMLDocument : public Document {
public:
- static PassRefPtr<WMLDocument> create(Frame* frame)
+ static PassRefPtr<WMLDocument> create(Frame* frame, const KURL& url)
{
- return adoptRef(new WMLDocument(frame));
+ return adoptRef(new WMLDocument(frame, url));
}
virtual ~WMLDocument();
@@ -47,7 +47,7 @@ public:
WMLCardElement* activeCard() const { return m_activeCard; }
private:
- WMLDocument(Frame*);
+ WMLDocument(Frame*, const KURL&);
WMLCardElement* m_activeCard;
};