a part of bug 410748 (not fixes it) r+sr=roc, a=mtschrep

This commit is contained in:
masayuki@d-toybox.com 2008-01-06 23:00:49 -08:00
Родитель 9df1541c90
Коммит 5451232d75
1 изменённых файлов: 3 добавлений и 3 удалений

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

@ -38,7 +38,7 @@
#ifndef GFX_POINT_H
#define GFX_POINT_H
#include <math.h>
#include "nsMathUtils.h"
#include "gfxTypes.h"
@ -142,8 +142,8 @@ struct THEBES_API gfxPoint {
return gfxPoint(x / v, y / v);
}
gfxPoint& Round() {
x = ::floor(x + 0.5);
y = ::floor(y + 0.5);
x = NS_round(x);
y = NS_round(y);
return *this;
}
};