View | Details | Raw Unified | Return to issue 119997
Collapse All | Expand All

(-)vcl/win/source/gdi/salgdi3.cxx (-2 / +6 lines)
Lines 597-602 Link Here
597
		}
597
		}
598
	}
598
	}
599
599
600
	bool rc = false;
601
600
	// last level fallback, check each font type face one by one
602
	// last level fallback, check each font type face one by one
601
	const ImplGetDevFontList* pTestFontList = pDevFontList->GetDevFontList();
603
	const ImplGetDevFontList* pTestFontList = pDevFontList->GetDevFontList();
602
	// limit the count of fonts to be checked to prevent hangs
604
	// limit the count of fonts to be checked to prevent hangs
Lines 611-620 Link Here
611
		if( !HasMissingChars( pFace, rMissingChars ) )
613
		if( !HasMissingChars( pFace, rMissingChars ) )
612
			continue;
614
			continue;
613
		rFontSelData.maSearchName = pFace->maName;
615
		rFontSelData.maSearchName = pFace->maName;
614
		return true;
616
		rc = true;
617
		break;
615
	}
618
	}
616
619
617
	return false;
620
	delete pTestFontList;
621
	return rc;
618
}
622
}
619
623
620
// =======================================================================
624
// =======================================================================

Return to issue 119997