warning fix for type
[lttv.git] / ltt / branches / poly / lttv / modules / gui / mainLib / gtkTraceSet.c
index 4105bf1f7c4e0bb5d1c241f89409337886a9415c..b68e67006d5d4bfba775dd232696525c442d7170 100644 (file)
@@ -665,10 +665,15 @@ void set_hpane_dividor(MainWindow *main_win, gint position)
 void process_traceset_api(MainWindow *main_win, LttTime start, 
                          LttTime end, unsigned maxNumEvents)
 {
-  lttv_process_traceset_seek_time(main_win->current_tab->traceset_info->
-                                 traceset_context, start);
-  lttv_process_traceset(main_win->current_tab->traceset_info->
-                       traceset_context, end, maxNumEvents);
+  lttv_process_traceset_seek_time(
+     LTTV_TRACESET_CONTEXT(main_win->current_tab->traceset_info->
+           traceset_context),
+      start);
+  lttv_process_traceset(
+     LTTV_TRACESET_CONTEXT(main_win->current_tab->traceset_info->
+           traceset_context),
+      end,
+      maxNumEvents);
 }
 
 /**
This page took 0.023048 seconds and 4 git commands to generate.