Remove commented code

I left some printer-spesific commented code in there.  Away with it.

Signed-Off-By: Henrik Brautaset Aronsen <subsurface@henrik.synth.no>
This commit is contained in:
Henrik Brautaset Aronsen 2011-12-01 12:28:38 +01:00
parent b65f8230da
commit 3f624a2eb3

View file

@ -528,15 +528,8 @@ static void plot_depth_profile(struct graphics_context *gc, struct plot_info *pi
for (i = 0; i < pi->nr; i++, entry++) for (i = 0; i < pi->nr; i++, entry++)
line_to(gc, entry->sec, entry->depth); line_to(gc, entry->sec, entry->depth);
cairo_close_path(gc->cr); cairo_close_path(gc->cr);
/*
if (gc->printer) { cairo_fill(gc->cr);
set_source_rgba(gc, DEPTH_FILL_PRINTER);
cairo_fill_preserve(cr);
set_source_rgba(gc, DEPTH_STROKE_PRINTER);
cairo_stroke(cr);
return;
}
*/ cairo_fill(gc->cr);
/* Now do it again for the velocity colors */ /* Now do it again for the velocity colors */
entry = pi->entry; entry = pi->entry;