diff --git a/ChangeLog b/ChangeLog index 4460526..14cc9fe 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2003-09-15 Adam Fedor + + * Source/gsc/GSGState.m ([GSGState -deepen]): Typo fix - copy + textCtm (reported by Banlu Kemiyatorn ). + 2003-09-09 Adam Fedor * Source/gsc/GSContext.m (-DPSsetgstate:): Copy gstate so we diff --git a/Source/gsc/GSGState.m b/Source/gsc/GSGState.m index c73edd0..c2c8645 100644 --- a/Source/gsc/GSGState.m +++ b/Source/gsc/GSGState.m @@ -100,7 +100,7 @@ self->path = [path copyWithZone: zone]; self->ctm = [ctm copyWithZone: zone]; - self->textCtm = [ctm copyWithZone: zone]; + self->textCtm = [textCtm copyWithZone: zone]; // Just retain the other objects if (font != nil)