mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 07:00:46 +00:00
Fixed variable declared with the wrong type
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@13671 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
484f4f444f
commit
a629d66a89
1 changed files with 5 additions and 2 deletions
|
@ -568,7 +568,8 @@ static float scrollerWidth; // == [NSScroller scrollerWidth]
|
|||
NSArray *subStrings;
|
||||
NSString *aStr;
|
||||
unsigned numberOfSubStrings;
|
||||
unsigned i, j, column = 0;
|
||||
unsigned i, j;
|
||||
int column = 0;
|
||||
BOOL found = YES;
|
||||
|
||||
// If that's all, return.
|
||||
|
@ -602,7 +603,9 @@ static float scrollerWidth; // == [NSScroller scrollerWidth]
|
|||
|
||||
column = _lastColumnLoaded;
|
||||
if (column < 0)
|
||||
column = 0;
|
||||
{
|
||||
column = 0;
|
||||
}
|
||||
|
||||
// cycle thru str's array created from path
|
||||
for (i = 0; i < numberOfSubStrings; i++)
|
||||
|
|
Loading…
Reference in a new issue