warning fix for type
authorcompudj <compudj@04897980-b3bd-0310-b5e0-8ef037075253>
Tue, 27 Jan 2004 22:01:21 +0000 (22:01 +0000)
committercompudj <compudj@04897980-b3bd-0310-b5e0-8ef037075253>
Tue, 27 Jan 2004 22:01:21 +0000 (22:01 +0000)
git-svn-id: http://ltt.polymtl.ca/svn@417 04897980-b3bd-0310-b5e0-8ef037075253

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.026973 seconds and 4 git commands to generate.