Fixed NSBrowser to not crash upon visualization.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@10853 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
michael 2001-09-08 21:42:03 +00:00
parent b6e78a559d
commit 088fe40d5c

View file

@ -508,6 +508,12 @@ static double rint(double a)
{
NSBrowserColumn *bc;
// No column selected.
if (column == -1)
{
return nil;
}
bc = [_browserColumns objectAtIndex: column];
if (![bc isLoaded])