summaryrefslogtreecommitdiffstats
path: root/src/sp-use.cpp
diff options
context:
space:
mode:
authorMarkus Engel <markus.engel@tum.de>2013-07-31 21:23:10 +0000
committerMarkus Engel <markus.engel@tum.de>2013-07-31 21:23:10 +0000
commit127543bae3c0a76770e197c7058a783dea18fe3e (patch)
treec264cd9128264c9755aa45432ee6410a3f0ae302 /src/sp-use.cpp
parentMerged from trunk (r12441). (diff)
downloadinkscape-127543bae3c0a76770e197c7058a783dea18fe3e.tar.gz
inkscape-127543bae3c0a76770e197c7058a783dea18fe3e.zip
Removed placement news / explicit destructor calls.
(bzr r11608.1.113)
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) {