mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-06-02 12:30:59 +00:00
Tidied
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@9044 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
a6b4f0f874
commit
46be95efa4
1 changed files with 31 additions and 21 deletions
|
@ -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];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue