Bug 719629 - Add ThebesIntSize() convertor function. r=mattwoodrow

--HG--
extra : rebase_source : 85e496ac1b0dbd176157ab7feabd4c41bd29cce4
This commit is contained in:
Joe Drew 2012-01-27 13:09:09 -05:00
Родитель 8ea9f3391c
Коммит fec2db2403
1 изменённых файлов: 5 добавлений и 0 удалений

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

@ -98,6 +98,11 @@ inline gfxSize ThebesSize(const Size &aSize)
return gfxSize(aSize.width, aSize.height);
}
inline gfxIntSize ThebesIntSize(const IntSize &aSize)
{
return gfxIntSize(aSize.width, aSize.height);
}
inline gfxRect ThebesRect(const Rect &aRect)
{
return gfxRect(aRect.x, aRect.y, aRect.width, aRect.height);