Code

Remove obsolete variable 'onlycurves' from pen-context.(h|cpp)
authorcilix42 <cilix42@users.sourceforge.net>
Thu, 12 Jun 2008 13:22:47 +0000 (13:22 +0000)
committercilix42 <cilix42@users.sourceforge.net>
Thu, 12 Jun 2008 13:22:47 +0000 (13:22 +0000)
src/pen-context.cpp
src/pen-context.h

index e3ff835d59c467add40879aa4b3c99b74fb5384d..49bf881a4a8ae871a191984e9be8c89122feb44f 100644 (file)
@@ -1128,8 +1128,7 @@ spdc_pen_set_subsequent_point(SPPenContext *const pc, NR::Point const p, bool st
     pc->red_curve->reset();
     pc->red_curve->moveto(pc->p[0]);
     bool is_curve;
-    if ( (pc->onlycurves)
-         || ( pc->p[1] != pc->p[0] ) )
+    if (pc->p[1] != pc->p[0])
     {
         pc->red_curve->curveto(pc->p[1], p, p);
         is_curve = true;
index 29938e923ca79ce9878d40004f70a24761d6d5be..ddf1e76c4279d107d6306db5ad0eb6e1bfde406c 100644 (file)
@@ -37,7 +37,6 @@ struct SPPenContext : public SPDrawContext {
 
     unsigned int mode : 1;
     unsigned int state : 2;
-    unsigned int onlycurves : 1;
 
     bool polylines_only;