summaryrefslogtreecommitdiffstats
path: root/src/sp-use.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/sp-use.cpp')
-rw-r--r--src/sp-use.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/sp-use.cpp b/src/sp-use.cpp
index d923410c8..3822527a3 100644
--- a/src/sp-use.cpp
+++ b/src/sp-use.cpp
@@ -60,10 +60,10 @@ SPUse::SPUse() : SPItem() {
this->height.unset(SVGLength::PERCENT, 1.0, 1.0);
this->href = NULL;
- new (&this->_delete_connection) sigc::connection();
- new (&this->_changed_connection) sigc::connection();
+ //new (&this->_delete_connection) sigc::connection();
+ //new (&this->_changed_connection) sigc::connection();
- new (&this->_transformed_connection) sigc::connection();
+ //new (&this->_transformed_connection) sigc::connection();
this->ref = new SPUseReference(this);
@@ -80,10 +80,10 @@ SPUse::~SPUse() {
delete this->ref;
this->ref = 0;
- this->_delete_connection.~connection();
- this->_changed_connection.~connection();
+ //this->_delete_connection.~connection();
+ //this->_changed_connection.~connection();
- this->_transformed_connection.~connection();
+ //this->_transformed_connection.~connection();
}
void SPUse::build(SPDocument *document, Inkscape::XML::Node *repr) {