зеркало из https://github.com/mozilla/pjs.git
Bug 719629 - Add ThebesIntSize() convertor function. r=mattwoodrow
--HG-- extra : rebase_source : 85e496ac1b0dbd176157ab7feabd4c41bd29cce4
This commit is contained in:
Родитель
8ea9f3391c
Коммит
fec2db2403
|
@ -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);
|
||||
|
|
Загрузка…
Ссылка в новой задаче