changed nsStypePosition to use nsStyleCoord

This commit is contained in:
peterl 1998-04-30 19:50:18 +00:00
Родитель 5a5cb58738
Коммит 349e809427
1 изменённых файлов: 5 добавлений и 10 удалений

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

@ -139,17 +139,12 @@ struct nsStylePosition : public nsStyleStruct {
PRUint8 mOverflow; // see nsStyleConsts.h
PRUint8 mClipFlags; // see nsStyleConsts.h
PRUint8 mLeftOffsetFlags; // see nsStyleConsts.h
PRUint8 mTopOffsetFlags; // see nsStyleConsts.h
PRUint8 mWidthFlags; // see nsStyleConsts.h
PRUint8 mHeightFlags; // see nsStyleConsts.h
nsStyleCoord mLeftOffset;
nsStyleCoord mTopOffset;
nsStyleCoord mWidth;
nsStyleCoord mHeight;
nscoord mLeftOffset;
nscoord mTopOffset;
nscoord mWidth;
nscoord mHeight;
PRInt32 mZIndex;
nsStyleCoord mZIndex;
nsMargin mClip; // offsets from respective edge
protected: