summaryrefslogtreecommitdiffstats
path: root/src/live_effects/lpe-roughen.cpp
diff options
context:
space:
mode:
authorJabier Arraiza Cenoz <jabier.arraiza@marker.es>2014-11-02 00:19:42 +0000
committerJabiertxof <jtx@jtx.marker.es>2014-11-02 00:19:42 +0000
commitc3cf3749afd1dddde094e4e1cf5e6c3285c03261 (patch)
tree9735a7e7876dadd3ac976bd2e7349536767d198e /src/live_effects/lpe-roughen.cpp
parentFix a bug in perspective/envelope LPE, rendering points -handles- outside bou... (diff)
downloadinkscape-c3cf3749afd1dddde094e4e1cf5e6c3285c03261.tar.gz
inkscape-c3cf3749afd1dddde094e4e1cf5e6c3285c03261.zip
Change calls to desktop with SP_ACTIVE_DESKTOP
(bzr r13656)
Diffstat (limited to 'src/live_effects/lpe-roughen.cpp')
-rw-r--r--src/live_effects/lpe-roughen.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/live_effects/lpe-roughen.cpp b/src/live_effects/lpe-roughen.cpp
index ae054fb8a..7ebd61c13 100644
--- a/src/live_effects/lpe-roughen.cpp
+++ b/src/live_effects/lpe-roughen.cpp
@@ -146,7 +146,7 @@ double LPERoughen::sign(double randNumber)
Geom::Point LPERoughen::randomize()
{
- Inkscape::Util::Unit const *doc_units = inkscape_active_desktop()->namedview->doc_units;
+ Inkscape::Util::Unit const *doc_units = SP_ACTIVE_DESKTOP->namedview->doc_units;
double displaceXParsed = Inkscape::Util::Quantity::convert(
displaceX, unit.get_abbreviation(), doc_units->abbr);
double displaceYParsed = Inkscape::Util::Quantity::convert(
@@ -161,7 +161,7 @@ void LPERoughen::doEffect(SPCurve *curve)
Geom::PathVector const original_pathv =
pathv_to_linear_and_cubic_beziers(curve->get_pathvector());
curve->reset();
- Inkscape::Util::Unit const *doc_units = inkscape_active_desktop()->namedview->doc_units;
+ Inkscape::Util::Unit const *doc_units = SP_ACTIVE_DESKTOP->namedview->doc_units;
for (Geom::PathVector::const_iterator path_it = original_pathv.begin();
path_it != original_pathv.end(); ++path_it) {
if (path_it->empty())