diff options
Diffstat (limited to 'Source/CMTextView.m')
-rw-r--r-- | Source/CMTextView.m | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/CMTextView.m b/Source/CMTextView.m index c99baa1a..c8f62e56 100644 --- a/Source/CMTextView.m +++ b/Source/CMTextView.m @@ -270,7 +270,7 @@ NSInteger alphabeticSort(id string1, id string2, void *reverse) [completionPopUp setCaretPos:pos]; [completionPopUp orderFront:self]; - //TODO : where to place the release?? + // TODO: where to place the release?? // [completionPopUp release]; @@ -2591,6 +2591,8 @@ NSInteger alphabeticSort(id string1, id string2, void *reverse) - (void) dealloc { + [[NSNotificationCenter defaultCenter] removeObserver:self]; + [lineNumberView release]; [super dealloc]; } |