diff options
| author | Jabier Arraiza Cenoz <jabier.arraiza@marker.es> | 2013-11-08 09:13:22 +0000 |
|---|---|---|
| committer | Jabiertxof <jtx@jtx.marker.es> | 2013-11-08 09:13:22 +0000 |
| commit | cdf6320ab752de234f986031bfdd7dcb8e705e69 (patch) | |
| tree | f078b6bafce615ed48f42587799de44d94b1f422 /src | |
| parent | Update to trunk (diff) | |
| download | inkscape-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.cpp | 4 |
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; |
