Bug 626602, part 7: Copy the impl of < and <= from nsIntSize to gfxIntSize. Sigh. sr=roc

This commit is contained in:
Chris Jones 2011-02-16 16:43:31 -06:00
Родитель 1871522144
Коммит d67e7e741b
1 изменённых файлов: 7 добавлений и 0 удалений

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

@ -60,6 +60,13 @@ struct THEBES_API gfxIntSize {
int operator!=(const gfxIntSize& s) const {
return ((width != s.width) || (height != s.height));
}
bool operator<(const gfxIntSize& s) const {
return (operator<=(s) &&
(width < s.width || height < s.height));
}
bool operator<=(const gfxIntSize& s) const {
return (width <= s.width) && (height <= s.height);
}
gfxIntSize operator+(const gfxIntSize& s) const {
return gfxIntSize(width + s.width, height + s.height);
}