Commit 7ae791c9 authored by Claes Sjöfors's avatar Claes Sjöfors

Glow and ev merge

parent 60f6ed3d
...@@ -483,10 +483,10 @@ void GrowBarChart::draw(GlowWind* w, GlowTransform* t, int highlight, int hot, ...@@ -483,10 +483,10 @@ void GrowBarChart::draw(GlowWind* w, GlowTransform* t, int highlight, int hot,
drawtype = GlowColor::shift_drawtype(fillcolor, chot, 0); drawtype = GlowColor::shift_drawtype(fillcolor, chot, 0);
else else
drawtype = fillcolor; drawtype = fillcolor;
ctx->gdraw->rect(bar_ll_x, bar_down_ll_y, bar_ur_x - bar_ll_x, ctx->gdraw->rect(w, bar_ll_x, bar_down_ll_y, bar_ur_x - bar_ll_x,
bar_down_ur_y - bar_down_ll_y, drawtype, 1, 0); bar_down_ur_y - bar_down_ll_y, drawtype, 1, 0);
if (bar_up_ll_y > ll_y) if (bar_up_ll_y > ll_y)
ctx->gdraw->rect(bar_ll_x, ll_y, bar_ur_x - bar_ll_x, ctx->gdraw->rect(w, bar_ll_x, ll_y, bar_ur_x - bar_ll_x,
bar_up_ll_y - ll_y, drawtype, 1, 0); bar_up_ll_y - ll_y, drawtype, 1, 0);
} else { } else {
glow_eDrawType f1, f2; glow_eDrawType f1, f2;
......
...@@ -1236,7 +1236,7 @@ void EvGtk::eve_activate_analyse(GtkWidget* w, gpointer ev) ...@@ -1236,7 +1236,7 @@ void EvGtk::eve_activate_analyse(GtkWidget* w, gpointer ev)
((Ev*)ev)->eve_activate_analyse(); ((Ev*)ev)->eve_activate_analyse();
} }
void EvGtk::eve_activate_ack_last(GtkWidget* w, gpointer ev) void EvGtk::eve_activate_ack_last(GtkWidget* w, gpointer data)
{ {
Ev* ev = (Ev*)data; Ev* ev = (Ev*)data;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment