summaryrefslogtreecommitdiffstats
path: root/src/knotholder.cpp
diff options
context:
space:
mode:
authorJabier Arraiza Cenoz <jabier.arraiza@marker.es>2013-09-19 22:33:11 +0000
committerJabiertxof <jtx@jtx.marker.es>2013-09-19 22:33:11 +0000
commit4bda89e32e33c7bdff5d3ea3c1ceee1f806de9f7 (patch)
treecaeb924426bcc861badc6fa81318b67460b26d47 /src/knotholder.cpp
parentUpdate to trunk (diff)
parentupdates for cmake (diff)
downloadinkscape-4bda89e32e33c7bdff5d3ea3c1ceee1f806de9f7.tar.gz
inkscape-4bda89e32e33c7bdff5d3ea3c1ceee1f806de9f7.zip
Update to trunk
(bzr r11950.1.141)
Diffstat (limited to 'src/knotholder.cpp')
-rw-r--r--src/knotholder.cpp11
1 files changed, 7 insertions, 4 deletions
diff --git a/src/knotholder.cpp b/src/knotholder.cpp
index a1ee3082b..32ba9075b 100644
--- a/src/knotholder.cpp
+++ b/src/knotholder.cpp
@@ -63,13 +63,16 @@ KnotHolder::KnotHolder(SPDesktop *desktop, SPItem *item, SPKnotHolderReleasedFun
g_print ("Error! Throw an exception, please!\n");
}
- g_object_ref(G_OBJECT(item)); // TODO: is this still needed after C++-ification?
+ //g_object_ref(G_OBJECT(item)); // TODO: is this still needed after C++-ification?
+ sp_object_ref(item);
sizeUpdatedConn = ControlManager::getManager().connectCtrlSizeChanged(sigc::mem_fun(*this, &KnotHolder::updateControlSizes));
}
KnotHolder::~KnotHolder() {
- g_object_unref(G_OBJECT(item));
+ //g_object_unref(G_OBJECT(item));
+ sp_object_unref(item);
+
for (std::list<KnotHolderEntity *>::iterator i = entity.begin(); i != entity.end(); ++i)
{
delete (*i);
@@ -128,7 +131,7 @@ KnotHolder::knot_clicked_handler(SPKnot *knot, guint state)
}
if (SP_IS_SHAPE(saved_item)) {
- SP_SHAPE(saved_item)->setShape();
+ SP_SHAPE(saved_item)->set_shape();
}
knot_holder->update_knots();
@@ -177,7 +180,7 @@ KnotHolder::knot_moved_handler(SPKnot *knot, Geom::Point const &p, guint state)
}
if (SP_IS_SHAPE (item)) {
- SP_SHAPE (item)->setShape();
+ SP_SHAPE (item)->set_shape();
}
this->update_knots();