Attributed string fix

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@5716 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 2000-01-09 15:31:33 +00:00
parent b45601efbb
commit c519b93670
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,8 @@
Sun Jan 9 15:20:00 1999 Richard Frith-Macdonald <richard@brainstorm.co.uk>
* Source/GSTextStorage.m: ([-attributesAtIndex:effectiveRange:])
fixed illegal parameter - reported by jagapen@whitewater.chem.wisc.edu
Sat Jan 8 23:50:38 2000 Nicola Pero <n.pero@mi.flashnet.it>
* Source/NSColorList.m: Implemented reading available color lists

View file

@ -330,8 +330,9 @@ _attributesAtIndexEffectiveRange(
- (NSDictionary*) attributesAtIndex: (unsigned)index
effectiveRange: (NSRange*)aRange
{
unsigned dummy;
return _attributesAtIndexEffectiveRange(
index, aRange, [textChars length], infoArray, NULL);
index, aRange, [textChars length], infoArray, &dummy);
}
/*