Skip to content

Commit

Permalink
merge 6999e81
Browse files Browse the repository at this point in the history
  • Loading branch information
cjwl committed Mar 26, 2015
2 parents 73a404a + 6999e81 commit c05e2e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions AppKit/NSBezierPath.m
Expand Up @@ -826,8 +826,8 @@ - (void)appendBezierPathWithGlyph:(NSGlyph)glyph inFont:(NSFont *)font
}

-(void)appendBezierPathWithGlyphs:(NSGlyph *)glyphs count:(unsigned)count inFont:(NSFont *)font {
int i = 0;
for (i = 0; i < count; ++i) {
int i;
for (i = 0; i < count; ++i) {
[self appendBezierPathWithGlyph:glyphs[i] inFont:font];
}
}
Expand Down

0 comments on commit c05e2e6

Please sign in to comment.