X-Git-Url: http://git.liburcu.org/?a=blobdiff_plain;f=ltt%2Fbranches%2Fpoly%2Flttv%2Fmodules%2FguiControlFlow%2FWidget_Callbacks.c.old;h=700c5b1a5afda1f3685d617671cd1a65a4194fe1;hb=14963be07f6a9c7c2db0d988f557b870ebd5dead;hp=9f61f02ea3a508647a16ba75ef9bb4b61351fb97;hpb=68997a228f7f14486fa61714161911434bfb8a23;p=lttv.git diff --git a/ltt/branches/poly/lttv/modules/guiControlFlow/Widget_Callbacks.c.old b/ltt/branches/poly/lttv/modules/guiControlFlow/Widget_Callbacks.c.old index 9f61f02e..700c5b1a 100644 --- a/ltt/branches/poly/lttv/modules/guiControlFlow/Widget_Callbacks.c.old +++ b/ltt/branches/poly/lttv/modules/guiControlFlow/Widget_Callbacks.c.old @@ -5,16 +5,16 @@ void expose_event_cb (GtkWidget *widget, GdkEventExpose *expose, gpointer data) { ControlFlowData *control_flow_data = (ControlFlowData*)data; - EventRequest *Event_Request = g_new(sizeof(EventRequest)); + EventRequest *event_request = g_new(sizeof(EventRequest)); - Event_Request->control_flow_data = control_flow_data; + event_request->control_flow_data = control_flow_data; /* Calculate, from pixels in expose, the time interval to get data */ get_time_from_pixels(expose->area.x, expose->area.width, control_flow_data->Drawing_Area_Info.width, &control_flow_data->Begin_Time, &control_flow_data->End_Time, - &Event_Request->time_begin, &Event_Request->time_end) + &event_request->time_begin, &event_request->time_end) /* Look in statistics of the trace the processes present during the * whole time interval _shown on the screen_. Modify the list of @@ -28,8 +28,8 @@ void expose_event_cb (GtkWidget *widget, GdkEventExpose *expose, gpointer data) Draw_Event_Hooks, Draw_After_Hooks, NULL, //FIXME : filter here - Event_Request->time_begin, - Event_Request->time_end); + event_request->time_begin, + event_request->time_end); }