git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@9044 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
nico 2001-02-07 22:32:54 +00:00
parent a6b4f0f874
commit 46be95efa4

View file

@ -1031,14 +1031,24 @@ static float scrollerWidth; // == [NSScroller scrollerWidth]
// Make sure the column even exists
if (column >= (int)[_browserColumns count])
{
return;
}
if (!(bc = [_browserColumns objectAtIndex: column]))
bc = [_browserColumns objectAtIndex: column];
if (bc == nil)
{
return;
}
// If the column has not be loaded then do not reload
// If the column has not been already loaded then do not reload
if (![bc isLoaded])
{
return;
}
// Perform the data load
[self _performLoadOfColumn: column];