diff options
| author | Markus Engel <markus.engel@tum.de> | 2013-07-31 21:23:10 +0000 |
|---|---|---|
| committer | Markus Engel <markus.engel@tum.de> | 2013-07-31 21:23:10 +0000 |
| commit | 127543bae3c0a76770e197c7058a783dea18fe3e (patch) | |
| tree | c264cd9128264c9755aa45432ee6410a3f0ae302 /src/sp-flowtext.cpp | |
| parent | Merged from trunk (r12441). (diff) | |
| download | inkscape-127543bae3c0a76770e197c7058a783dea18fe3e.tar.gz inkscape-127543bae3c0a76770e197c7058a783dea18fe3e.zip | |
Removed placement news / explicit destructor calls.
(bzr r11608.1.113)
Diffstat (limited to 'src/sp-flowtext.cpp')
| -rw-r--r-- | src/sp-flowtext.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sp-flowtext.cpp b/src/sp-flowtext.cpp index 4ee0a64b1..c7ef579ac 100644 --- a/src/sp-flowtext.cpp +++ b/src/sp-flowtext.cpp @@ -45,11 +45,11 @@ namespace { SPFlowtext::SPFlowtext() : SPItem() { this->par_indent = 0; - new (&this->layout) Inkscape::Text::Layout(); + //new (&this->layout) Inkscape::Text::Layout(); } SPFlowtext::~SPFlowtext() { - this->layout.~Layout(); + //this->layout.~Layout(); } void SPFlowtext::child_added(Inkscape::XML::Node* child, Inkscape::XML::Node* ref) { |
