mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-13 20:50:57 +00:00
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:
parent
b45601efbb
commit
c519b93670
2 changed files with 7 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in a new issue