diff options
author | rowanbeentje <rowan@beent.je> | 2012-03-14 22:07:03 +0000 |
---|---|---|
committer | rowanbeentje <rowan@beent.je> | 2012-03-14 22:07:03 +0000 |
commit | 76a070a62a076481dddfb5e5a7d8ca6de5ea64a4 (patch) | |
tree | 934026a83581bc4f78f6a0c6d5f4815adf082576 /Source/SPNarrowDownCompletion.m | |
parent | a9f95273a69035e6be8249a42322350df695870f (diff) | |
download | sequelpro-76a070a62a076481dddfb5e5a7d8ca6de5ea64a4.tar.gz sequelpro-76a070a62a076481dddfb5e5a7d8ca6de5ea64a4.tar.bz2 sequelpro-76a070a62a076481dddfb5e5a7d8ca6de5ea64a4.zip |
More bugfixes to the SPMySQL integration branch:
- Fix background database structure checks throwing exceptions at the end of certain table operations
- Fix incorrect timer access/overrelease when closing a SPNarrowDownCompletion window when database structure fetching is active
Diffstat (limited to 'Source/SPNarrowDownCompletion.m')
-rw-r--r-- | Source/SPNarrowDownCompletion.m | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/SPNarrowDownCompletion.m b/Source/SPNarrowDownCompletion.m index 79deb013..5fbeaf39 100644 --- a/Source/SPNarrowDownCompletion.m +++ b/Source/SPNarrowDownCompletion.m @@ -178,10 +178,12 @@ if (stateTimer != nil) { [stateTimer invalidate]; [stateTimer release]; + stateTimer = nil; } closeMe = YES; [theView setCompletionIsOpen:NO]; + [super close]; } |