Index: chrome/browser/cocoa/first_run_dialog.mm |
diff --git a/chrome/browser/cocoa/first_run_dialog.mm b/chrome/browser/cocoa/first_run_dialog.mm |
index 7af9bcd7055d33f663d5dcb9a64f321cc2c6cfd3..8f7718db4a4e1fea22909f46abd9d9d73723f10b 100644 |
--- a/chrome/browser/cocoa/first_run_dialog.mm |
+++ b/chrome/browser/cocoa/first_run_dialog.mm |
@@ -15,6 +15,7 @@ |
@synthesize makeDefaultBrowser = make_default_browser_; |
@synthesize importBookmarks = import_bookmarks_; |
@synthesize browserImportSelectedIndex = browser_import_selected_index_; |
+@synthesize browserImportList = browser_import_list_; |
- (id)init { |
self = [super initWithWindowNibName:@"FirstRunDialog"]; |
@@ -26,6 +27,11 @@ |
return self; |
} |
+- (void)dealloc { |
+ [browser_import_list_ release]; |
+ [super dealloc]; |
stuartmorgan
2009/07/29 20:22:37
Oops missed this before; indentation is off.
|
+} |
+ |
- (IBAction)showWindow:(id)sender { |
// Neat weirdness in the below code - the Application menu stays enabled |
// while the window is open but selecting items from it (e.g. Quit) has |