diff options
author | stuconnolly <stuart02@gmail.com> | 2010-08-13 16:48:59 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2010-08-13 16:48:59 +0000 |
commit | f1e829f98f50d9e75e7ba111361a625f7aab802d (patch) | |
tree | 930c14091b0cba5d4c44ec1e4fc70c34f55c56fe /Source/SPDatabaseCopy.h | |
parent | efdcfb17f87863fef42f209f72eb4c4ccd888d35 (diff) | |
download | sequelpro-f1e829f98f50d9e75e7ba111361a625f7aab802d.tar.gz sequelpro-f1e829f98f50d9e75e7ba111361a625f7aab802d.tar.bz2 sequelpro-f1e829f98f50d9e75e7ba111361a625f7aab802d.zip |
Tidy up database renaming and copying by removing the use of alert dialogs within loops to prevent locking up the main thread. These operations ideally should also be threaded.
Diffstat (limited to 'Source/SPDatabaseCopy.h')
-rw-r--r-- | Source/SPDatabaseCopy.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/SPDatabaseCopy.h b/Source/SPDatabaseCopy.h index a146bbf4..56a7e26a 100644 --- a/Source/SPDatabaseCopy.h +++ b/Source/SPDatabaseCopy.h @@ -53,7 +53,7 @@ * @param NSString targetDatabaseName the name of the target database * @result BOOL success */ -- (BOOL)copyDatabaseFrom: (NSString *)sourceDatabaseName to: (NSString *)targetDatabaseName withContent: (BOOL)copyWithContent; +- (BOOL)copyDatabaseFrom:(NSString *)sourceDatabaseName to:(NSString *)targetDatabaseName withContent:(BOOL)copyWithContent; /** * This method creates a new database. @@ -61,6 +61,6 @@ * @param NSString newDatabaseName name of the new database to be created * @return BOOL YES on success, otherwise NO */ -- (BOOL) createDatabase: (NSString *)newDatabaseName; +- (BOOL)createDatabase:(NSString *)newDatabaseName; @end |