summaryrefslogtreecommitdiffstats
path: root/src/2geom/d2-sbasis.cpp
diff options
context:
space:
mode:
authorJohan B. C. Engelen <jbc.engelen@swissonline.ch>2008-04-18 07:20:46 +0000
committerjohanengelen <johanengelen@users.sourceforge.net>2008-04-18 07:20:46 +0000
commit71cb020626c2c6698ec896efe7ec55bc568809de (patch)
tree6363ce6f7f1ab1a104d33a54847aa192de377e7b /src/2geom/d2-sbasis.cpp
parentallow inx to suppress live preview checkbox (diff)
downloadinkscape-71cb020626c2c6698ec896efe7ec55bc568809de.tar.gz
inkscape-71cb020626c2c6698ec896efe7ec55bc568809de.zip
update to latest 2geom. (eol-style fix)
(bzr r5470)
Diffstat (limited to 'src/2geom/d2-sbasis.cpp')
-rw-r--r--src/2geom/d2-sbasis.cpp14
1 files changed, 13 insertions, 1 deletions
diff --git a/src/2geom/d2-sbasis.cpp b/src/2geom/d2-sbasis.cpp
index dbf4da10e..9b6ca269c 100644
--- a/src/2geom/d2-sbasis.cpp
+++ b/src/2geom/d2-sbasis.cpp
@@ -141,7 +141,7 @@ split_at_discontinuities (Geom::Piecewise<Geom::D2<Geom::SBasis> > const & pwsbi
piece.cuts.push_back(pwsbin.cuts[piece_start]);
for (unsigned j = piece_start; j<i+1; j++){
piece.segs.push_back(pwsbin.segs[j]);
- piece.cuts.push_back(pwsbin.cuts[j+1]);
+ piece.cuts.push_back(pwsbin.cuts[j+1]);
}
ret.push_back(piece);
piece_start = i+1;
@@ -151,3 +151,15 @@ split_at_discontinuities (Geom::Piecewise<Geom::D2<Geom::SBasis> > const & pwsbi
}
} // namespace Geom
+
+
+/*
+ Local Variables:
+ mode:c++
+ c-file-style:"stroustrup"
+ c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
+ indent-tabs-mode:nil
+ fill-column:99
+ End:
+*/
+// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :