From 79735ac21ce1ab8e1c7bd39759821804b06e51ec Mon Sep 17 00:00:00 2001 From: compudj Date: Wed, 7 Sep 2005 21:12:46 +0000 Subject: [PATCH] fix current time event list git-svn-id: http://ltt.polymtl.ca/svn@1153 04897980-b3bd-0310-b5e0-8ef037075253 --- .../lttv/modules/gui/detailedevents/events.c | 25 ++++++++++--------- 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/ltt/branches/poly/lttv/modules/gui/detailedevents/events.c b/ltt/branches/poly/lttv/modules/gui/detailedevents/events.c index 10ee82f8..0b894786 100644 --- a/ltt/branches/poly/lttv/modules/gui/detailedevents/events.c +++ b/ltt/branches/poly/lttv/modules/gui/detailedevents/events.c @@ -927,17 +927,18 @@ void tree_v_cursor_changed_cb (GtkWidget *widget, gpointer data) /* On cursor change, modify the currently selected event by calling * the right API function */ - tree_v_get_cursor(event_viewer_data); - gtk_tree_view_get_cursor(GTK_TREE_VIEW(event_viewer_data->tree_v), - &path, NULL); - if(gtk_tree_model_get_iter(model,&iter,path)){ - gtk_tree_model_get(model, &iter, POSITION_COLUMN, &pos, -1); - - if(event_viewer_data->report_position) - lttvwindow_report_current_position(tab, pos); - }else{ - g_warning("Can not get iter\n"); + + if(event_viewer_data->report_position) { + gtk_tree_view_get_cursor(GTK_TREE_VIEW(event_viewer_data->tree_v), + &path, NULL); + if(gtk_tree_model_get_iter(model,&iter,path)){ + gtk_tree_model_get(model, &iter, POSITION_COLUMN, &pos, -1); + + lttvwindow_report_current_position(tab, pos); + }else{ + g_warning("Can not get iter\n"); + } } } @@ -1410,8 +1411,8 @@ gboolean update_current_time(void * hook_data, void * call_data) if(ltt_time_compare(pos_time, *current_time) != 0) { lttv_state_traceset_seek_time_closest((LttvTracesetState*)tsc, - pos_time); - lttv_process_traceset_middle(tsc, pos_time, G_MAXUINT, + *current_time); + lttv_process_traceset_middle(tsc, *current_time, G_MAXUINT, NULL); /* Little trick : seek 0 events forward to get the first event * that passes the filter. The trick is to have a match function that -- 2.34.1