Added dealloc.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@19145 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Gregory John Casamento 2004-04-18 12:33:03 +00:00
parent 0116f965e4
commit 3299880f83
2 changed files with 14 additions and 1 deletions

View file

@ -1,4 +1,9 @@
2004-04-17 11:55 Gregory John Casamento <greg_casamento@yahoo.com>
2004-04-18 08:30 Gregory John Casamento <greg_casamento@yahoo.com>
* GormPrefsController.m: Added dealloc to prevent any memory
leaks.
2004-04-17 23:55 Gregory John Casamento <greg_casamento@yahoo.com>
* Resources/GormPrefColors.gorm: New gorm file for color
preferences.

View file

@ -52,4 +52,12 @@
}
}
- (void) dealloc
{
RELEASE(_generalView);
RELEASE(_headersView);
RELEASE(_shelfView);
RELEASE(_colorsView);
[super dealloc];
}
@end