diff options
author | stuconnolly <stuart02@gmail.com> | 2011-06-12 13:56:11 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2011-06-12 13:56:11 +0000 |
commit | f3e65efba3f76cb2149fd8427af9463032d3c45d (patch) | |
tree | 0e8ebaadd24c8e206bca1f8b2a30ef6543976391 /Source/SPFavoritesController.m | |
parent | c1de88ac62381469ad01975c0f28e5847a65edb9 (diff) | |
download | sequelpro-f3e65efba3f76cb2149fd8427af9463032d3c45d.tar.gz sequelpro-f3e65efba3f76cb2149fd8427af9463032d3c45d.tar.bz2 sequelpro-f3e65efba3f76cb2149fd8427af9463032d3c45d.zip |
Add the ability to export favorites.
Diffstat (limited to 'Source/SPFavoritesController.m')
-rw-r--r-- | Source/SPFavoritesController.m | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/SPFavoritesController.m b/Source/SPFavoritesController.m index 23be83d7..1ac410e5 100644 --- a/Source/SPFavoritesController.m +++ b/Source/SPFavoritesController.m @@ -104,7 +104,9 @@ static SPFavoritesController *sharedFavoritesController = nil; { pthread_mutex_lock(&favoritesLock); - [NSThread detachNewThreadSelector:@selector(_saveFavoritesDataInBackground:) toTarget:self withObject:[[[favoritesTree childNodes] objectAtIndex:0] dictionaryRepresentation]]; + [NSThread detachNewThreadSelector:@selector(_saveFavoritesDataInBackground:) + toTarget:self + withObject:[[[favoritesTree childNodes] objectAtIndex:0] dictionaryRepresentation]]; pthread_mutex_unlock(&favoritesLock); } |