summaryrefslogtreecommitdiffstats
path: root/src/sp-flowregion.cpp
diff options
context:
space:
mode:
authorJohan B. C. Engelen <jbc.engelen@swissonline.ch>2014-07-28 19:34:56 +0000
committerJohan B. C. Engelen <j.b.c.engelen@alumnus.utwente.nl>2014-07-28 19:34:56 +0000
commit653be18705548ae8ab5a0358ecf77feca1b22e54 (patch)
tree9703f02e780a36093c55711ace8fc7e8e311f827 /src/sp-flowregion.cpp
parentFix placement news and calls to destructor. Fixes crash regressions #1348891,... (diff)
downloadinkscape-653be18705548ae8ab5a0358ecf77feca1b22e54.tar.gz
inkscape-653be18705548ae8ab5a0358ecf77feca1b22e54.zip
noop: remove commented-out code that is dangerous and should not come back
(bzr r13475)
Diffstat (limited to 'src/sp-flowregion.cpp')
-rw-r--r--src/sp-flowregion.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/sp-flowregion.cpp b/src/sp-flowregion.cpp
index e8e5c3d95..32d3b0f60 100644
--- a/src/sp-flowregion.cpp
+++ b/src/sp-flowregion.cpp
@@ -42,15 +42,12 @@ static void GetDest(SPObject* child,Shape **computed);
SPFlowregion::SPFlowregion() : SPItem() {
- //new (&this->computed) std::vector<Shape*>;
}
SPFlowregion::~SPFlowregion() {
for (std::vector<Shape*>::iterator it = this->computed.begin() ; it != this->computed.end() ; ++it) {
delete *it;
}
-
- //this->computed.~vector<Shape*>();
}
void SPFlowregion::child_added(Inkscape::XML::Node *child, Inkscape::XML::Node *ref) {