Fix uninitialized variable introduced last night. b=1777

This commit is contained in:
dbaron%fas.harvard.edu 2002-12-11 15:59:24 +00:00
Родитель 7ade523ba0
Коммит 1a01999234
2 изменённых файлов: 4 добавлений и 2 удалений

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

@ -1948,7 +1948,8 @@ nsTextFrame::PaintTextDecorations(nsIRenderingContext& aRenderingContext,
PRUint32(end - start), textWidth);
}
nscoord offset, size, baseline;
nscoord offset, size;
nscoord baseline = mAscent;
switch (aDetails->mType)
{
case nsISelectionController::SELECTION_NORMAL:

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

@ -1948,7 +1948,8 @@ nsTextFrame::PaintTextDecorations(nsIRenderingContext& aRenderingContext,
PRUint32(end - start), textWidth);
}
nscoord offset, size, baseline;
nscoord offset, size;
nscoord baseline = mAscent;
switch (aDetails->mType)
{
case nsISelectionController::SELECTION_NORMAL: