Reviewed by Adam.
http://bugzilla.opendarwin.org/show_bug.cgi?id=10834
Bug 10834: FileChooser constructor in FileChooserMac appears to overretain m_controller
* platform/mac/FileChooserMac.mm:
(WebCore::FileChooser::FileChooser): Don't over-retain the OpenPanelController.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@16358
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2006-09-13 Mark Rowe <opendarwin.org@bdash.net.nz>
+
+ Reviewed by Adam.
+
+ http://bugzilla.opendarwin.org/show_bug.cgi?id=10834
+ Bug 10834: FileChooser constructor in FileChooserMac appears to overretain m_controller
+
+ * platform/mac/FileChooserMac.mm:
+ (WebCore::FileChooser::FileChooser): Don't over-retain the OpenPanelController.
+
2006-09-13 Mark Rowe <opendarwin.org@bdash.net.nz>
Reviewed by Eric.
: m_document(document)
, m_icon(0)
, m_uploadControl(uploadControl)
- , m_controller([[[OpenPanelController alloc] initWithFileChooser:this] retain])
+ , m_controller([[OpenPanelController alloc] initWithFileChooser:this])
{
}