aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPConnectionController.m
diff options
context:
space:
mode:
authorrowanbeentje <rowan@beent.je>2010-03-23 21:08:33 +0000
committerrowanbeentje <rowan@beent.je>2010-03-23 21:08:33 +0000
commitc2351f2220ac01cac614de93bad05022d89d7790 (patch)
tree253cb24dac45eaa8a29924d3fe4017d1cad684ce /Source/SPConnectionController.m
parent4755e7c7209582b09f59905540f459accc32acb3 (diff)
downloadsequelpro-c2351f2220ac01cac614de93bad05022d89d7790.tar.gz
sequelpro-c2351f2220ac01cac614de93bad05022d89d7790.tar.bz2
sequelpro-c2351f2220ac01cac614de93bad05022d89d7790.zip
- Remove observers for key paths when dealloc'ing objects to fix later crashes when changing those keyvalues (eg changing query editor background colour after closing windows - http://log.sequelpro.com/view/44 )
- Fix a memory leak of a prefs reference in CMTextView
Diffstat (limited to 'Source/SPConnectionController.m')
-rw-r--r--Source/SPConnectionController.m3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/SPConnectionController.m b/Source/SPConnectionController.m
index 869bd35c..7e84a7f0 100644
--- a/Source/SPConnectionController.m
+++ b/Source/SPConnectionController.m
@@ -125,7 +125,8 @@
}
- (void) dealloc
-{
+{
+ [prefs removeObserver:self forKeyPath:SPFavorites];
[keychain release];
[prefs release];
if (favorites) [favorites release];