diff options
| author | Bob Jamison <ishmalius@gmail.com> | 2006-07-09 17:12:52 +0000 |
|---|---|---|
| committer | ishmal <ishmal@users.sourceforge.net> | 2006-07-09 17:12:52 +0000 |
| commit | 8d856d11f6a6f6a690afc6334404230d64594920 (patch) | |
| tree | 9f997cc9b835547d806204715c9470ad28fec13d | |
| parent | add keys.de.svg to the distribution (diff) | |
| download | inkscape-8d856d11f6a6f6a690afc6334404230d64594920.tar.gz inkscape-8d856d11f6a6f6a690afc6334404230d64594920.zip | |
fix properly. oops ^^
(bzr r1386)
| -rw-r--r-- | src/display/nr-filter.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/display/nr-filter.cpp b/src/display/nr-filter.cpp index 5ec394246..026aa4ee0 100644 --- a/src/display/nr-filter.cpp +++ b/src/display/nr-filter.cpp @@ -140,10 +140,10 @@ void Filter::bbox_enlarge(NRRectL &bbox) } } else if (_filter_units == SP_FILTER_UNITS_USERSPACEONUSE) { /* TODO: make sure bbox and fe region are in same coordinate system */ - bbox.x0 = (NR::ICoord) _region_x.computed; - bbox.x1 = bbox.x0 + (NR::ICoord) _region_width.computed; - bbox.y0 = (NR::ICoord) _region_y.computed; - bbox.y1 = bbox.y0 + (NR::ICoord) _region_height.computed; + bbox.x0 = (ICoord) _region_x.computed; + bbox.x1 = bbox.x0 + (ICoord) _region_width.computed; + bbox.y0 = (ICoord) _region_y.computed; + bbox.y1 = bbox.y0 + (ICoord) _region_height.computed; } else { g_warning("Error in NR::Filter::bbox_enlarge: unrecognized value of _filter_units"); } |
