зеркало из https://github.com/mozilla/pjs.git
Bug 626602, part 7: Copy the impl of < and <= from nsIntSize to gfxIntSize. Sigh. sr=roc
This commit is contained in:
Родитель
1871522144
Коммит
d67e7e741b
|
@ -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);
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче