Bug 230687. DEC compiler barfs on call to implicit nsRectFast::operator=. r+sr=dbaron

This commit is contained in:
roc+%cs.cmu.edu 2004-01-23 17:27:59 +00:00
Родитель f3d91830fd
Коммит 1ae3d79b00
1 изменённых файлов: 4 добавлений и 1 удалений

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

@ -70,7 +70,10 @@ class NS_GFX nsRegion
RgnRect& operator = (const RgnRect& aRect) // Do not overwrite prev/next pointers
{
nsRectFast::operator = (aRect); // Copy only the nsRectFast part
x = aRect.x;
y = aRect.y;
width = aRect.width;
height = aRect.height;
return *this;
}
};