diff options
author | stuconnolly <stuart02@gmail.com> | 2010-05-25 12:20:55 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2010-05-25 12:20:55 +0000 |
commit | 5a52a184b2d20c307d8a54945193eccb31fc1dce (patch) | |
tree | b1fd16748326058c38ae0e42137cfe9ce75a5cdd | |
parent | 0fbc1d9fc62b60a706d839543c6c114c0302c7d7 (diff) | |
download | sequelpro-5a52a184b2d20c307d8a54945193eccb31fc1dce.tar.gz sequelpro-5a52a184b2d20c307d8a54945193eccb31fc1dce.tar.bz2 sequelpro-5a52a184b2d20c307d8a54945193eccb31fc1dce.zip |
Update Growl controller notify method selector when an export finishes. Fixes logs http://spbug.com/l/521 and http://spbug.com/522.
-rw-r--r-- | Source/SPExportController.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/SPExportController.m b/Source/SPExportController.m index 83c87ea6..7f8610ec 100644 --- a/Source/SPExportController.m +++ b/Source/SPExportController.m @@ -190,7 +190,7 @@ // Export finished Growl notification [[SPGrowlController sharedGrowlController] notifyWithTitle:@"Export Finished" description:[NSString stringWithFormat:NSLocalizedString(@"Finished exporting to %@", @"description for finished exporting growl notification"), exportFilename] - window:[tableDocumentInstance parentWindow] + document:[tableDocumentInstance parentWindow] notificationName:@"Export Finished"]; } |