The R Project SVN R

Rev

Rev 41781 | Rev 42307 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 41781 Rev 41807
Line 1167... Line 1167...
1167
	    glyphBBox = GlyphBBox(wc, gc, dd);
1167
	    glyphBBox = GlyphBBox(wc, gc, dd);
1168
	    resultBBox = CombineBBoxes(resultBBox, glyphBBox);
1168
	    resultBBox = CombineBBoxes(resultBBox, glyphBBox);
1169
	    p += used; n -= used;
1169
	    p += used; n -= used;
1170
	}
1170
	}
1171
#else
1171
#else
1172
	char *s = str;
1172
	const char *s = str;
1173
	while (*s) {
1173
	while (*s) {
1174
	    glyphBBox = GlyphBBox(*s, gc, dd);
1174
	    glyphBBox = GlyphBBox(*s, gc, dd);
1175
	    resultBBox = CombineBBoxes(resultBBox, glyphBBox);
1175
	    resultBBox = CombineBBoxes(resultBBox, glyphBBox);
1176
	    s++;
1176
	    s++;
1177
	}
1177
	}