mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-30 00:11:26 +00:00
Fixed attributed string range initialization.
This commit is contained in:
parent
1de4c85f43
commit
15610acb62
1 changed files with 2 additions and 2 deletions
|
@ -683,7 +683,7 @@ SANITY();
|
|||
unsigned tmpLength;
|
||||
unsigned arrayIndex = 0;
|
||||
unsigned arraySize;
|
||||
NSRange effectiveRange = NSMakeRange(0, NSNotFound);
|
||||
NSRange effectiveRange = NSMakeRange(NSNotFound, 0);
|
||||
unsigned afterRangeLoc, beginRangeLoc;
|
||||
NSDictionary *attrs;
|
||||
NSZone *z = [self zone];
|
||||
|
@ -795,7 +795,7 @@ SANITY();
|
|||
unsigned tmpLength;
|
||||
unsigned arrayIndex = 0;
|
||||
unsigned arraySize;
|
||||
NSRange effectiveRange = NSMakeRange(0, NSNotFound);
|
||||
NSRange effectiveRange = NSMakeRange(NSNotFound, 0);
|
||||
GSAttrInfo *info;
|
||||
int moveLocations;
|
||||
unsigned start;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue