diff options
| author | Johan B. C. Engelen <jbc.engelen@swissonline.ch> | 2014-07-28 21:44:54 +0000 |
|---|---|---|
| committer | Johan B. C. Engelen <j.b.c.engelen@alumnus.utwente.nl> | 2014-07-28 21:44:54 +0000 |
| commit | 03e8e4c2d075e2d6bfdf44c461b810b0e8b68456 (patch) | |
| tree | 81a8fd4ecfc32303016539cd8d075dba305eeab0 /src/sp-path.cpp | |
| parent | Don't update path effects on document load (#1299948) (diff) | |
| download | inkscape-03e8e4c2d075e2d6bfdf44c461b810b0e8b68456.tar.gz inkscape-03e8e4c2d075e2d6bfdf44c461b810b0e8b68456.zip | |
fix build. gcc 4.6.1 does not like double parens here :/
(bzr r13480)
Diffstat (limited to 'src/sp-path.cpp')
| -rw-r--r-- | src/sp-path.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sp-path.cpp b/src/sp-path.cpp index 5bb7bf548..5c076b7cb 100644 --- a/src/sp-path.cpp +++ b/src/sp-path.cpp @@ -141,7 +141,7 @@ void SPPath::build(SPDocument *document, Inkscape::XML::Node *repr) { SPShape::build(document, repr); // this->readAttr( "inkscape:original-d" ); // lp1299948 - if ((gchar const* s = this->getRepr()->attribute("inkscape:original-d"))) + if (gchar const* s = this->getRepr()->attribute("inkscape:original-d")) { // write it to XML, and to my curve, but don't update patheffects Geom::PathVector pv = sp_svg_read_pathv(s); |
