mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-31 20:20:47 +00:00
Remove usage of NSDeallocateObject
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@28789 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
5e4e8730d9
commit
b3aacde1c3
4 changed files with 9 additions and 6 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2009-10-10 Fred Kiefer <FredKiefer@gmx.de>
|
||||||
|
|
||||||
|
* Source/NSEvent.m,
|
||||||
|
* Source/NSImage.m,
|
||||||
|
* Source/GSTextStorage.m: Remove usage of NSDeallocateObject.
|
||||||
|
|
||||||
2009-10-10 Fred Kiefer <FredKiefer@gmx.de>
|
2009-10-10 Fred Kiefer <FredKiefer@gmx.de>
|
||||||
|
|
||||||
* Source/NSApplication.m (-endModalSession:): Bring the window of
|
* Source/NSApplication.m (-endModalSession:): Bring the window of
|
||||||
|
|
|
@ -168,8 +168,7 @@ unCacheAttributes(NSDictionary *attrs)
|
||||||
- (void) dealloc
|
- (void) dealloc
|
||||||
{
|
{
|
||||||
[self finalize];
|
[self finalize];
|
||||||
NSDeallocateObject(self);
|
[super dealloc];
|
||||||
GSNOSUPERDEALLOC;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
- (NSString*) description
|
- (NSString*) description
|
||||||
|
|
|
@ -509,8 +509,7 @@ static Class eventClass;
|
||||||
{
|
{
|
||||||
RELEASE((id)event_data.tracking.user_data);
|
RELEASE((id)event_data.tracking.user_data);
|
||||||
}
|
}
|
||||||
NSDeallocateObject(self);
|
[super dealloc];
|
||||||
GSNOSUPERDEALLOC;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -129,8 +129,7 @@ BOOL NSImageForceCaching = NO; /* use on missmatch */
|
||||||
{
|
{
|
||||||
TEST_RELEASE(rep);
|
TEST_RELEASE(rep);
|
||||||
TEST_RELEASE(bg);
|
TEST_RELEASE(bg);
|
||||||
NSDeallocateObject(self);
|
[super dealloc];
|
||||||
GSNOSUPERDEALLOC;
|
|
||||||
}
|
}
|
||||||
@end
|
@end
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue