diff options
Diffstat (limited to 'cocoa/ScintillaCocoa.mm')
-rw-r--r-- | cocoa/ScintillaCocoa.mm | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/cocoa/ScintillaCocoa.mm b/cocoa/ScintillaCocoa.mm index 200b39df7..20f0e4440 100644 --- a/cocoa/ScintillaCocoa.mm +++ b/cocoa/ScintillaCocoa.mm @@ -198,6 +198,12 @@ static const KeyToCommand macMapDefault[] = } +- (void) dealloc { + [sFind release]; + [sFont release]; + [super dealloc]; +} + const CGFloat paddingHighlightX = 4; const CGFloat paddingHighlightY = 2; |