diff options
| author | Johan B. C. Engelen <jbc.engelen@swissonline.ch> | 2013-11-05 20:43:21 +0000 |
|---|---|---|
| committer | Johan B. C. Engelen <j.b.c.engelen@alumnus.utwente.nl> | 2013-11-05 20:43:21 +0000 |
| commit | 47ac12297a7869552f9f4953af9ec19ca453efbb (patch) | |
| tree | 46c1884a6eb078a956a76d85a451cf844fb72127 /src | |
| parent | Fix make install (autotools) (follow-up to r12733) (diff) | |
| download | inkscape-47ac12297a7869552f9f4953af9ec19ca453efbb.tar.gz inkscape-47ac12297a7869552f9f4953af9ec19ca453efbb.zip | |
fix code (clang complains)
(bzr r12778)
Diffstat (limited to 'src')
| -rw-r--r-- | src/live_effects/lpe-perp_bisector.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/live_effects/lpe-perp_bisector.h b/src/live_effects/lpe-perp_bisector.h index 4ff9909a4..3a2278de3 100644 --- a/src/live_effects/lpe-perp_bisector.h +++ b/src/live_effects/lpe-perp_bisector.h @@ -27,7 +27,7 @@ namespace PB { class KnotHolderEntityEnd; class KnotHolderEntityLeftEnd; class KnotHolderEntityRightEnd; - void bisector_end_set(SPItem *item, Geom::Point const &p, guint state, bool left); + void bisector_end_set(SPItem *item, Geom::Point const &p, guint state, bool left = true); } class LPEPerpBisector : public Effect { @@ -46,7 +46,7 @@ public: friend class PB::KnotHolderEntityEnd; friend class PB::KnotHolderEntityLeftEnd; friend class PB::KnotHolderEntityRightEnd; - friend void PB::bisector_end_set(SPItem *item, Geom::Point const &p, guint state, bool left = true); + friend void PB::bisector_end_set(SPItem *item, Geom::Point const &p, guint state, bool left); void addKnotHolderEntities(KnotHolder *knotholder, SPDesktop *desktop, SPItem *item); private: |
