initialize member variables to 0

This commit is contained in:
pierre%netscape.com 1998-09-11 09:13:02 +00:00
Родитель 9a1f28cfd5
Коммит 170f02692b
2 изменённых файлов: 8 добавлений и 0 удалений

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

@ -79,6 +79,10 @@ struct nsReflowMetrics {
maxElementSize = aMaxElementSize;
posTopMargin = 0;
posBottomMargin = 0;
width = 0;
height = 0;
ascent = 0;
descent = 0;
}
};

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

@ -79,6 +79,10 @@ struct nsReflowMetrics {
maxElementSize = aMaxElementSize;
posTopMargin = 0;
posBottomMargin = 0;
width = 0;
height = 0;
ascent = 0;
descent = 0;
}
};