mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
484 B

  1. --- mozilla/gfx/public/nsRegion.h 2003-03-25 03:57:42.000000000 +0100
  2. +++ mozilla-fixed/gfx/public/nsRegion.h 2004-05-05 23:52:57.000000000 +0200
  3. @@ -233,8 +233,9 @@
  4. void MoveInto (nsRegion& aDestRegion, const RgnRect* aStartRect);
  5. void MoveInto (nsRegion& aDestRegion)
  6. { MoveInto (aDestRegion, mRectListHead.next); }
  7. -
  8. +public:
  9. nsRegion (const nsRegion& aRegion); // Prevent copying of regions
  10. +private:
  11. nsRegion& operator = (const nsRegion& aRegion);
  12. };