~hww3/caudium

9f3171a906d8ec0c49fe4e3661bebb791564ef59 — William Welliver 2 years ago d0bd025
business graphics: correct type when using pike 8
1 files changed, 4 insertions(+), 2 deletions(-)

M server/modules/graphics/business.pike
M server/modules/graphics/business.pike => server/modules/graphics/business.pike +4 -2
@@ 583,13 583,15 @@ constant _diagram_args =
   "legend_texts", "labelcolor", "axwidth", "linewidth", "center",
   "rotate", "image", "bw", "eng", "neng", "xmin", "ymin", "turn", "notrans",
   "colortable_cache"});
constant diagram_args = mkmapping(_diagram_args,_diagram_args);

mapping diagram_args = mkmapping(_diagram_args,_diagram_args);

constant _shuffle_args = 
({ "dimensions", "dimensionsdepth", "ygridspace", "xgridspace",
   "xstart", "xstop", "ystart", "ystop", "colors", "xvalues", "yvalues",
   "axwidth", "xstor", "ystor", "xunit", "yunit", "fg", "bg", "voidsep" });
constant shuffle_args = mkmapping( _shuffle_args, _shuffle_args );

mapping shuffle_args = mkmapping( _shuffle_args, _shuffle_args );

string tag_diagram(string tag, mapping m, string contents,
		   object id, object f, mapping defines)