Retain/release fix

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@8339 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Nicola Pero 2000-12-16 20:19:18 +00:00
parent c96deb1436
commit abed70f622

View file

@ -90,8 +90,8 @@
- (void)dealloc
{
RELEASE(_selectedTextAttributes);
RELEASE(_markedTextAttributes);
RELEASE (_selectedTextAttributes);
RELEASE (_markedTextAttributes);
[super dealloc];
}
@ -111,7 +111,8 @@
{
// Notify layoutManager of change?
ASSIGN(_textContainer, aTextContainer);
/* Do not retain: text container is owning us. */
_textContainer = aTextContainer;
}
- (void) setTextContainerInset: (NSSize)inset