Bug 482379: Wrap an SVG-related precondition with "#ifdef MOZ_SVG", to fix build failure when using --disable-svg. r+sr=roc

This commit is contained in:
Daniel Holbert 2009-03-09 21:38:46 -07:00
Родитель 66f82d6342
Коммит be19df267f
1 изменённых файлов: 5 добавлений и 0 удалений

Просмотреть файл

@ -3188,9 +3188,14 @@ nsLayoutUtils::InitTextRunContainerForPrinting(nsIContent* aContent,
nsIFrame* aFrame,
nsFrameState aBits)
{
#ifdef MOZ_SVG
NS_PRECONDITION(aFrame->GetType() == nsGkAtoms::textFrame ||
aFrame->GetType() == nsGkAtoms::svgGlyphFrame,
"Wrong frame type!");
#else
NS_PRECONDITION(aFrame->GetType() == nsGkAtoms::textFrame,
"Wrong frame type!");
#endif // MOZ_SVG
nsPresContext* presContext = aFrame->PresContext();
if (presContext->IsDynamic()) {