diff options
| author | MenTaLguY <mental@rydia.net> | 2007-03-18 23:18:32 +0000 |
|---|---|---|
| committer | mental <mental@users.sourceforge.net> | 2007-03-18 23:18:32 +0000 |
| commit | 32f91f33a10adf5f8ea7cb73ee922b608de22549 (patch) | |
| tree | 2c858bca74ec5f099e3c55926f9e0a24d0050f93 /src/libnr/nr-rect.h | |
| parent | Pedro::pedrogui is not the same as the one in jabber_whiteboard (diff) | |
| download | inkscape-32f91f33a10adf5f8ea7cb73ee922b608de22549.tar.gz inkscape-32f91f33a10adf5f8ea7cb73ee922b608de22549.zip | |
revert NRRect/NRRectL conversion constructors for NR::Rect, since they
cannot correctly deal with "nullary" NRRect -- the correct path is to
convert NRRect to Maybe<Rect>
(bzr r2703)
Diffstat (limited to 'src/libnr/nr-rect.h')
| -rw-r--r-- | src/libnr/nr-rect.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/libnr/nr-rect.h b/src/libnr/nr-rect.h index 2439df95d..04f446487 100644 --- a/src/libnr/nr-rect.h +++ b/src/libnr/nr-rect.h @@ -25,9 +25,6 @@ #include <libnr/nr-maybe.h> #include <libnr/nr-point-matrix-ops.h> -struct NRRect; -struct NRRectL; - namespace NR { struct Matrix; @@ -42,8 +39,6 @@ class Rect { public: Rect() : _min(-_inf(), -_inf()), _max(_inf(), _inf()) {} Rect(Point const &p0, Point const &p1); - Rect(NRRect *r); - Rect(NRRectL *r); Point const &min() const { return _min; } Point const &max() const { return _max; } |
