Reviewed by Tim H.
- fix http://bugs.webkit.org/show_bug.cgi?id=11394
HTMLViewSourceDocuments are leaking
* html/HTMLViewSourceDocument.h: Changed RefPtr to plain pointer to avoid
ref cycle.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@17249
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2006-10-24 Mitz Pettel <mitz@webkit.org>
+
+ Reviewed by Tim H.
+
+ - fix http://bugs.webkit.org/show_bug.cgi?id=11394
+ HTMLViewSourceDocuments are leaking
+
+ * html/HTMLViewSourceDocument.h: Changed RefPtr to plain pointer to avoid
+ ref cycle.
+
2006-10-23 Geoffrey Garen <ggaren@apple.com>
Reviewed by Darin.
Element* addSpanWithClassName(const String&);
private:
- RefPtr<Node> m_current;
+ Node* m_current;
};
}