mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-30 04:40:37 +00:00
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:
parent
a3aecbd99d
commit
26c82d8aef
7 changed files with 12 additions and 12 deletions
|
@ -147,7 +147,7 @@
|
|||
|
||||
- (void) selectNextTabViewItem: (id)sender
|
||||
{
|
||||
if (_selected_item + 1 < [_items count])
|
||||
if ((unsigned)(_selected_item + 1) < [_items count])
|
||||
[self selectTabViewItemAtIndex: _selected_item+1];
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue