Lines 234-241
Link Here
|
234 |
void MoveInto (nsRegion& aDestRegion) |
234 |
void MoveInto (nsRegion& aDestRegion) |
235 |
{ MoveInto (aDestRegion, mRectListHead.next); } |
235 |
{ MoveInto (aDestRegion, mRectListHead.next); } |
236 |
|
236 |
|
237 |
nsRegion (const nsRegion& aRegion); // Prevent copying of regions |
237 |
/* GCC 3.4 addition of 'public:' due to error during compile */ |
238 |
nsRegion& operator = (const nsRegion& aRegion); |
238 |
public: nsRegion (const nsRegion& aRegion); // Prevent copying of regions nsRegion& operator = (const nsRegion& aRegion); |
239 |
}; |
239 |
}; |
240 |
|
240 |
|
241 |
|
241 |
|