Remove direct usage of isa.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@32248 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
fredkiefer 2011-02-20 18:24:44 +00:00
parent 7aac32819c
commit 6d94be87c6
7 changed files with 44 additions and 35 deletions

View file

@ -751,7 +751,7 @@ many times.
{
DESTROY(_toolbar);
[nc removeObserver: self];
[isa _removeAutodisplayedWindow: self];
[[self class] _removeAutodisplayedWindow: self];
[NSApp removeWindowsItem: self];
[NSApp _windowWillDealloc: self];
@ -1708,7 +1708,7 @@ many times.
/*
* Don't keep trying to update the window while it is ordered out
*/
[isa _removeAutodisplayedWindow: self];
[[self class] _removeAutodisplayedWindow: self];
[self _lossOfKeyOrMainWindow];
}
else
@ -1757,7 +1757,7 @@ many times.
* Once we are ordered back in, we will want to update the window
* whenever there is anything to do.
*/
[isa _addAutodisplayedWindow: self];
[[self class] _addAutodisplayedWindow: self];
if (_f.has_closed == YES)
{
@ -2524,7 +2524,7 @@ many times.
{
if (limit == 0)
{
limit = [isa defaultDepthLimit];
limit = [[self class] defaultDepthLimit];
}
_depthLimit = limit;