diff options
author | Max <post@wickenrode.com> | 2015-07-20 02:12:00 +0200 |
---|---|---|
committer | Max <post@wickenrode.com> | 2015-07-20 02:12:00 +0200 |
commit | c5525ba58cb81dfec88c07e3f281399dbf578270 (patch) | |
tree | 083bb63d3ccc3e84641b77f003d393496dd9f08e /Source | |
parent | feff69bdf2cb1148dc2930a9de7976c80c939632 (diff) | |
download | sequelpro-c5525ba58cb81dfec88c07e3f281399dbf578270.tar.gz sequelpro-c5525ba58cb81dfec88c07e3f281399dbf578270.tar.bz2 sequelpro-c5525ba58cb81dfec88c07e3f281399dbf578270.zip |
Fix a concurrent modification exception that could occur when duplicating a database
Diffstat (limited to 'Source')
-rw-r--r-- | Source/SPDatabaseDocument.m | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/Source/SPDatabaseDocument.m b/Source/SPDatabaseDocument.m index eb99fe2c..1793cf60 100644 --- a/Source/SPDatabaseDocument.m +++ b/Source/SPDatabaseDocument.m @@ -6145,7 +6145,7 @@ static int64_t SPDatabaseDocumentInstanceCounter = 0; // Attempt to select the specified database, and abort on failure #ifndef SP_CODA /* patch */ - if ([chooseDatabaseButton indexOfItemWithTitle:targetDatabaseName] == NSNotFound || ![mySQLConnection selectDatabase:targetDatabaseName]) + if ([[chooseDatabaseButton onMainThread] indexOfItemWithTitle:targetDatabaseName] == NSNotFound || ![mySQLConnection selectDatabase:targetDatabaseName]) #else if ( ![mySQLConnection selectDatabase:targetDatabaseName] ) #endif @@ -6158,7 +6158,12 @@ static int64_t SPDatabaseDocumentInstanceCounter = 0; // Update the database list [[self onMainThread] setDatabases:self]; - SPBeginAlertSheet(NSLocalizedString(@"Error", @"error"), NSLocalizedString(@"OK", @"OK button"), nil, nil, parentWindow, self, nil, nil, [NSString stringWithFormat:NSLocalizedString(@"Unable to select database %@.\nPlease check you have the necessary privileges to view the database, and that the database still exists.", @"message of panel when connection to db failed after selecting from popupbutton"), targetDatabaseName]); + SPOnewayAlertSheet( + NSLocalizedString(@"Error", @"error"), + nil, + parentWindow, + [NSString stringWithFormat:NSLocalizedString(@"Unable to select database %@.\nPlease check you have the necessary privileges to view the database, and that the database still exists.", @"message of panel when connection to db failed after selecting from popupbutton"), targetDatabaseName] + ); } [taskPool drain]; @@ -6203,16 +6208,16 @@ static int64_t SPDatabaseDocumentInstanceCounter = 0; // If a the table has changed, update the selection if (![targetItemName isEqualToString:[self table]] && targetItemName) { focusOnFilter = ![tablesListInstance selectItemWithName:targetItemName]; - } + } // Ensure the window focus is on the table list or the filter as appropriate - [[tablesListInstance onMainThread] setTableListSelectability:YES]; + [[tablesListInstance onMainThread] setTableListSelectability:YES]; if (focusOnFilter) { [[tablesListInstance onMainThread] makeTableListFilterHaveFocus]; } else { [[tablesListInstance onMainThread] makeTableListHaveFocus]; } - [[tablesListInstance onMainThread] setTableListSelectability:NO]; + [[tablesListInstance onMainThread] setTableListSelectability:NO]; #endif [self endTask]; |