By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 3204
Collapse All | Expand All

(-)tdegraphics-trinity-14.0.13/kpdf/xpdf/xpdf/GlobalParams.cpp_ (-1 / +1 lines)
Lines 2094-2100 Link Here
2094
	if (res != FcResultMatch || !s)  goto fin; 
2094
	if (res != FcResultMatch || !s)  goto fin; 
2095
	ext = rindex((char*)s,'.');
2095
	ext = rindex((char*)s,'.');
2096
	if (!ext) goto fin;
2096
	if (!ext) goto fin;
2097
	if (!strncasecmp(ext,".ttf",4) || !strncasecmp(ext,".ttc",4)) {
2097
	if (!strncasecmp(ext,".ttf",4) || !strncasecmp(ext,".ttc",4) || !strncasecmp(ext,".otf",4)) {
2098
	  dfp = new DisplayFontParam(fontName->copy(), displayFontTT);
2098
	  dfp = new DisplayFontParam(fontName->copy(), displayFontTT);
2099
	  dfp->tt.fileName = new GString((char*)s);
2099
	  dfp->tt.fileName = new GString((char*)s);
2100
	  FcPatternGetInteger(m, FC_INDEX, 0, &(dfp->tt.faceIndex));
2100
	  FcPatternGetInteger(m, FC_INDEX, 0, &(dfp->tt.faceIndex));

Return to bug 3204