Code

Fixed min/max confusion bug
authorjoncruz <joncruz@users.sourceforge.net>
Fri, 14 Sep 2007 04:41:34 +0000 (04:41 +0000)
committerjoncruz <joncruz@users.sourceforge.net>
Fri, 14 Sep 2007 04:41:34 +0000 (04:41 +0000)
src/libnr/nr-object.h
src/libnr/nr-rect.h

index f39814b0d878f9b7384149d2758ac809589e1fef..269130284cadbc5b3df016c39d4711002cc30fd2 100644 (file)
@@ -91,7 +91,7 @@ private:
        NRObject(NRObject const &); // no copy
        void operator=(NRObject const &); // no assign
 
-       void *operator new(size_t size, void *placement) { return placement; }
+       void *operator new(size_t size, void *placement) { (void)size; return placement; }
 };
 
 struct NRObjectClass {
index 439538e2998f880d99c1b8c4efc9c92fa310c244..fc4d617df775bc086e9e16d3c310c86d44951dae 100644 (file)
@@ -254,7 +254,7 @@ struct NRMatrix;
 struct NRRect {
     NRRect() {}
     NRRect(NR::Coord xmin, NR::Coord ymin, NR::Coord xmax, NR::Coord ymax)
-    : x0(xmin), y0(ymin), x1(xmin), y1(ymin)
+    : x0(xmin), y0(ymin), x1(xmax), y1(ymax)
     {}
     explicit NRRect(NR::Rect const &rect);
     explicit NRRect(NR::Maybe<NR::Rect> const &rect);