[OS/2] Bug 396661: fix OS/2 build break in nsTextFrameThebes by removing the unnecessary cast, r/sr/a=roc

This commit is contained in:
mozilla@weilbacher.org 2007-09-19 16:01:44 -07:00
Родитель 0d640fee1d
Коммит 0a299d9eeb
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -3807,7 +3807,7 @@ nsTextFrame::PaintTextDecorations(gfxContext* aCtx, const gfxRect& aDirtyRect,
// XXX aFramePt is in AppUnits, shouldn't it be nsFloatPoint?
gfxPoint pt(aFramePt.x / app, (aTextBaselinePt.y - mAscent) / app);
gfxSize size(gfxFloat(GetRect().width) / app, 0);
gfxSize size(GetRect().width / app, 0);
gfxFloat ascent = gfxFloat(mAscent) / app;
if (decorations & NS_FONT_DECORATION_OVERLINE) {