summaryrefslogtreecommitdiffstats
path: root/src/sp-conn-end.cpp
diff options
context:
space:
mode:
authorJabier Arraiza Cenoz <jabier.arraiza@marker.es>2014-03-31 12:11:30 +0000
committerJabiertxof <jtx@jtx.marker.es>2014-03-31 12:11:30 +0000
commit00ea3a2ecf217ccd1889b6036054018b6b69105e (patch)
treed611ddc875f766f4e32af29f5ac764037dcd0983 /src/sp-conn-end.cpp
parentFixed bug in LPE Bspline widget, on apply selected nodes, because a rounding ... (diff)
parentFix Gtkmm 3.8 build issues on systems with Gtk+ 3.10 (diff)
downloadinkscape-00ea3a2ecf217ccd1889b6036054018b6b69105e.tar.gz
inkscape-00ea3a2ecf217ccd1889b6036054018b6b69105e.zip
update to trunk
(bzr r11950.1.319)
Diffstat (limited to 'src/sp-conn-end.cpp')
-rw-r--r--src/sp-conn-end.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sp-conn-end.cpp b/src/sp-conn-end.cpp
index c136cea66..3e5398ced 100644
--- a/src/sp-conn-end.cpp
+++ b/src/sp-conn-end.cpp
@@ -298,7 +298,7 @@ sp_conn_end_href_changed(SPObject */*old_ref*/, SPObject */*ref*/,
// This allows the connector tool to dive into a group's children
// And connect to their children's centers.
SPObject *parent = refobj->parent;
- if (SP_IS_GROUP(parent) and ! SP_IS_LAYER(parent)) {
+ if (SP_IS_GROUP(parent) && ! SP_IS_LAYER(parent)) {
connEnd._group_connection
= SP_ITEM(parent)->connectTransformed(sigc::bind(sigc::ptr_fun(&sp_conn_end_shape_move),
path));