diff options
author | stuconnolly <stuart02@gmail.com> | 2011-10-02 11:25:26 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2011-10-02 11:25:26 +0000 |
commit | e23ba5155a53c43a106ac9646f51321ccc7d86f4 (patch) | |
tree | ea3da3e76bf62b13696bee5cc4f0096107e9fb48 /Source/SPFavoritesExporter.m | |
parent | d01474532b11014019d4d5a1197a8f8f7d683c0b (diff) | |
download | sequelpro-e23ba5155a53c43a106ac9646f51321ccc7d86f4.tar.gz sequelpro-e23ba5155a53c43a106ac9646f51321ccc7d86f4.tar.bz2 sequelpro-e23ba5155a53c43a106ac9646f51321ccc7d86f4.zip |
Favorites import progress.
Diffstat (limited to 'Source/SPFavoritesExporter.m')
-rw-r--r-- | Source/SPFavoritesExporter.m | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/SPFavoritesExporter.m b/Source/SPFavoritesExporter.m index cefa5190..66590c30 100644 --- a/Source/SPFavoritesExporter.m +++ b/Source/SPFavoritesExporter.m @@ -44,7 +44,6 @@ * * @param favorites The array of favorites to be written * @param path The file system path that the file is to be written to - * @param filename The filename of the file to be written */ - (void)writeFavorites:(NSArray *)favorites toFile:(NSString *)path { @@ -102,7 +101,7 @@ /** * Informs the delegate that the export process has completed. */ - - (void)_informDelegateOfExportCompletion:(NSError *)error +- (void)_informDelegateOfExportCompletion:(NSError *)error { if ([self delegate] && [[self delegate] respondsToSelector:@selector(favoritesExportCompletedWithError:)]) { [[self delegate] performSelectorOnMainThread:@selector(favoritesExportCompletedWithError:) withObject:error waitUntilDone:NO]; |