Index: libraries/widgets/envelopeeditor.cpp =================================================================== RCS file: /sources/ll-plugins/ll-plugins/libraries/widgets/envelopeeditor.cpp,v retrieving revision 1.4 diff -u -r1.4 envelopeeditor.cpp --- libraries/widgets/envelopeeditor.cpp 17 Feb 2007 17:25:05 -0000 1.4 +++ libraries/widgets/envelopeeditor.cpp 9 Apr 2007 13:15:29 -0000 @@ -297,7 +297,7 @@ cc->stroke(); cc->restore(); } - cc->clear_path(); + cc->begin_new_path(); xoffset += l; Index: libraries/widgets/vgknob.cpp =================================================================== RCS file: /sources/ll-plugins/ll-plugins/libraries/widgets/vgknob.cpp,v retrieving revision 1.4 diff -u -r1.4 vgknob.cpp --- libraries/widgets/vgknob.cpp 17 Feb 2007 17:25:05 -0000 1.4 +++ libraries/widgets/vgknob.cpp 9 Apr 2007 13:15:30 -0000 @@ -136,7 +136,7 @@ double angle = M_PI * (0.75 + 1.5 * map_to_knob(value)); // circle - cc->clear_path(); + cc->begin_new_path(); cc->arc(20, 20, 17, 0.75 * M_PI, angle); cc->arc_negative(21, 21, 12, angle, 0.75 * M_PI); cc->close_path(); @@ -151,7 +151,7 @@ // shadow and outline cc->clip(); - cc->clear_path(); + cc->begin_new_path(); cc->arc(19, 19, 14, 0, 2 * M_PI); cc->set_source_rgba(0, 0, 0, 0.2); @@ -167,7 +167,7 @@ cc->arc_negative(17.5, 17.5, 25, 2 * M_PI, 0); cc->fill(); - cc->clear_path(); + cc->begin_new_path(); cc->arc(20.5, 20.5, 12, 0, 2 * M_PI); cc->set_source_rgba(1, 1, 1, 0.5); cc->fill();