Removed compiler warning about signed/unsigned comparision.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@17005 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Fred Kiefer 2003-06-23 15:50:46 +00:00
parent a3aecbd99d
commit 26c82d8aef
7 changed files with 12 additions and 12 deletions

View file

@ -3759,7 +3759,7 @@ byExtendingSelection: (BOOL)flag
/* Ask the delegate if we can select all columns or rows */
if (_selectingColumns == YES)
{
if ([_selectedColumns count] == _numberOfColumns)
if ([_selectedColumns count] == (unsigned)_numberOfColumns)
{
// Nothing to do !
return;
@ -3779,7 +3779,7 @@ byExtendingSelection: (BOOL)flag
}
else // selecting rows
{
if ([_selectedRows count] == _numberOfRows)
if ([_selectedRows count] == (unsigned)_numberOfRows)
{
// Nothing to do !
return;