| Previous | 199869 Revisions | Next |
| r19835 Wednesday 26th December, 2012 at 13:15:11 UTC by Oliver Stöneberg |
|---|
| added missing initializations in default rectangle constructor (nw) |
| [src/lib/util] | bitmap.h |
| r19834 | r19835 | |
|---|---|---|
| 73 | 73 | { |
| 74 | 74 | public: |
| 75 | 75 | // construction/destruction |
| 76 | rectangle() { } | |
| 76 | rectangle() | |
| 77 | : min_x(0), max_x(0), min_y(0), max_y(0) { } | |
| 77 | 78 | rectangle(INT32 minx, INT32 maxx, INT32 miny, INT32 maxy) |
| 78 | 79 | : min_x(minx), max_x(maxx), min_y(miny), max_y(maxy) { } |
| 79 | 80 |
| Previous | 199869 Revisions | Next |