diff options
author | rowanbeentje <rowan@beent.je> | 2010-03-23 21:08:33 +0000 |
---|---|---|
committer | rowanbeentje <rowan@beent.je> | 2010-03-23 21:08:33 +0000 |
commit | c2351f2220ac01cac614de93bad05022d89d7790 (patch) | |
tree | 253cb24dac45eaa8a29924d3fe4017d1cad684ce /Source/SPTableRelations.m | |
parent | 4755e7c7209582b09f59905540f459accc32acb3 (diff) | |
download | sequelpro-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/SPTableRelations.m')
-rw-r--r-- | Source/SPTableRelations.m | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/SPTableRelations.m b/Source/SPTableRelations.m index 043b5d66..0788f832 100644 --- a/Source/SPTableRelations.m +++ b/Source/SPTableRelations.m @@ -468,8 +468,10 @@ */ - (void)dealloc { - [relationData release], relationData = nil; [[NSNotificationCenter defaultCenter] removeObserver:self]; + [[NSUserDefaults standardUserDefaults] removeObserver:self forKeyPath:SPUseMonospacedFonts]; + + [relationData release], relationData = nil; [super dealloc]; } |