Lines Matching defs:to
2 * The reference corresponding to href of <inkscape:tagref> element.
45 _changed_connection = changedSignal().connect(sigc::bind(sigc::ptr_fun(sp_usepath_href_changed), this)); // listening to myself, this should be virtual instead
55 _changed_connection.disconnect(); // to do before unlinking
62 SPTagUsePath::link(char *to)
64 if ( to == NULL ) {
68 if ( !sourceHref || ( strcmp(to, sourceHref) != 0 ) ) {
70 sourceHref = g_strdup(to);
72 attach(Inkscape::URI(to));
93 SPTagUsePath::start_listening(SPObject* to)
95 if ( to == NULL ) {
98 sourceObject = to;
99 sourceRepr = to->getRepr();
100 _delete_connection = to->connectDelete(sigc::bind(sigc::ptr_fun(&sp_usepath_delete_self), this));