Fixed segmentation fault on deallocating

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@13032 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
nico 2002-03-07 10:41:36 +00:00
parent 0561761693
commit 097ce2e806

View file

@ -155,10 +155,10 @@ static float scrollerWidth;
- (void) dealloc - (void) dealloc
{ {
TEST_RELEASE(_horizScroller); DESTROY(_horizScroller);
TEST_RELEASE(_vertScroller); DESTROY(_vertScroller);
TEST_RELEASE(_horizRuler); DESTROY(_horizRuler);
TEST_RELEASE(_vertRuler); DESTROY(_vertRuler);
[super dealloc]; [super dealloc];
} }