summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJabier Arraiza Cenoz <jabier.arraiza@marker.es>2013-11-08 09:13:22 +0000
committerJabiertxof <jtx@jtx.marker.es>2013-11-08 09:13:22 +0000
commitcdf6320ab752de234f986031bfdd7dcb8e705e69 (patch)
treef078b6bafce615ed48f42587799de44d94b1f422 /src
parentUpdate to trunk (diff)
downloadinkscape-cdf6320ab752de234f986031bfdd7dcb8e705e69.tar.gz
inkscape-cdf6320ab752de234f986031bfdd7dcb8e705e69.zip
Fixing bugs on update to trunk
(bzr r11950.1.194)
Diffstat (limited to 'src')
-rw-r--r--src/live_effects/lpe-bspline.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/live_effects/lpe-bspline.cpp b/src/live_effects/lpe-bspline.cpp
index 84f3fbb33..ef03d8ef0 100644
--- a/src/live_effects/lpe-bspline.cpp
+++ b/src/live_effects/lpe-bspline.cpp
@@ -335,7 +335,7 @@ LPEBSpline::changeWeight(double weightValue)
gchar *str = sp_svg_write_path(curve->get_pathvector());
path->getRepr()->setAttribute("inkscape:original-d", str);
if(INK_IS_NODE_TOOL(desktop->event_context)){
- InkNodeTool *nt = INK_NODE_TOOL(desktop->event_context);
+ Inkscape::UI::Tools::NodeTool *nt = INK_NODE_TOOL(desktop->event_context);
nt->desktop->updateNow();
}
g_free(str);
@@ -367,7 +367,7 @@ LPEBSpline::doBSplineFromWidget(SPCurve * curve, double weightValue)
using Geom::Y;
SPDesktop *desktop = inkscape_active_desktop();
if(INK_IS_NODE_TOOL(desktop->event_context)){
- InkNodeTool *nt = INK_NODE_TOOL(desktop->event_context);
+ Inkscape::UI::Tools::NodeTool *nt = INK_NODE_TOOL(desktop->event_context);
Inkscape::UI::ControlPointSelection::Set &selection = nt->_selected_nodes->allPoints();
points.clear();
std::vector<Geom::Point>::iterator pbegin;