[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: NSParagraphStyle bug (and a patch)
From: |
Richard Frith-Macdonald |
Subject: |
Re: NSParagraphStyle bug (and a patch) |
Date: |
Wed, 16 Jan 2002 11:46:13 +0000 |
On Tuesday, January 15, 2002, at 10:51 PM, Ludovic Marcotte wrote:
Hi,
In NSParagraphStyle: - encodeWithCoder: we have:
...
locations[count] = [tab location];
types[count] = [tab tabStopType];
...
but we should have:
locations[i] = [tab location];
types[i] = [tab tabStopType];
Thanks, I applied your fix.