diff options
| author | Krzysztof Kosi??ski <tweenk.pl@gmail.com> | 2015-07-19 13:22:31 +0000 |
|---|---|---|
| committer | Krzysztof KosiĆski <tweenk.pl@gmail.com> | 2015-07-19 13:22:31 +0000 |
| commit | 1997b7aeecff6a01b3e319cd2a42a6029bc56ae7 (patch) | |
| tree | 25d7a6673bca4c0f8e6187dd24de3f1381fb2637 /src/live_effects/spiro-converters.h | |
| parent | setStitching(), gajiosdfksdsfd (diff) | |
| download | inkscape-1997b7aeecff6a01b3e319cd2a42a6029bc56ae7.tar.gz inkscape-1997b7aeecff6a01b3e319cd2a42a6029bc56ae7.zip | |
Enable stitching in Spiro and SPCurve to prevent some crashes
(bzr r14250)
Diffstat (limited to 'src/live_effects/spiro-converters.h')
| -rw-r--r-- | src/live_effects/spiro-converters.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/live_effects/spiro-converters.h b/src/live_effects/spiro-converters.h index 83f6ebbc3..90855d2d6 100644 --- a/src/live_effects/spiro-converters.h +++ b/src/live_effects/spiro-converters.h @@ -25,7 +25,7 @@ class ConverterSPCurve : public ConverterBase { public: ConverterSPCurve(SPCurve &curve) : _curve(curve) - {} ; + {} virtual void moveto(double x, double y, bool is_open); virtual void lineto(double x, double y); @@ -45,9 +45,7 @@ private: */ class ConverterPath : public ConverterBase { public: - ConverterPath(Geom::Path &path) - : _path(path) - {} ; + ConverterPath(Geom::Path &path); virtual void moveto(double x, double y, bool is_open); virtual void lineto(double x, double y); |
