X-Git-Url: http://git.liburcu.org/?p=lttv.git;a=blobdiff_plain;f=lttv%2Fmodules%2Fgui%2Flttvwindow%2Flttvwindow%2Flttvwindow.c;h=60c18157cecbd99d106298c9628ac8f52e54421e;hp=56a847e6159e0739229b625b61b1ae0eb3c57a78;hb=451aaf275d421d71097d479eb0ae64fe908d8b6f;hpb=3d1e7ee596d5eef4a50ff7e77d3617643eca133e diff --git a/lttv/modules/gui/lttvwindow/lttvwindow/lttvwindow.c b/lttv/modules/gui/lttvwindow/lttvwindow/lttvwindow.c index 56a847e6..60c18157 100644 --- a/lttv/modules/gui/lttvwindow/lttvwindow/lttvwindow.c +++ b/lttv/modules/gui/lttvwindow/lttvwindow/lttvwindow.c @@ -35,8 +35,9 @@ #include #include #include +#ifdef BABEL_CLEANUP #include -#include +#endif /* BABEL_CLEANUP */ #include #include #include @@ -115,8 +116,10 @@ void set_current_time(Tab *tab, const LttTime *current_time) * This is called whenever the current time value changes. */ -void set_current_position(Tab *tab, const LttvTracesetContextPosition *pos) +void set_current_position(Tab *tab, const LttvTracesetPosition *pos) { + #ifdef BABEL_CLEANUP + LttvAttributeValue value; LttvHooks * tmp; gboolean retval; @@ -130,6 +133,7 @@ void set_current_position(Tab *tab, const LttvTracesetContextPosition *pos) if (tmp != NULL) { lttv_hooks_call(tmp, (void *) pos); } +#endif /*BABEL_CLEANUP*/ } void add_toolbar_constructor(MainWindow *mw, LttvToolbarClosure *toolbar_c) @@ -1008,7 +1012,7 @@ __EXPORT void lttvwindow_report_current_time(Tab *tab, */ __EXPORT void lttvwindow_report_current_position(Tab *tab, - LttvTracesetContextPosition *pos) + LttvTracesetPosition *pos) { current_position_change_manager(tab, pos); } @@ -1214,7 +1218,7 @@ void lttvwindow_report_filter(Tab *tab, LttvFilter *filter) lttv_hooks_call(tmp, filter); } - +#ifdef BABEL_CLEANUP /** * Function to get the stats of the traceset @@ -1225,15 +1229,11 @@ __EXPORT LttvTracesetStats* lttvwindow_get_traceset_stats(Tab *tab) { return tab->traceset_info->traceset_context; } - -__EXPORT LttvTracesetContext* lttvwindow_get_traceset_context(Tab *tab) -{ - return (LttvTracesetContext*)tab->traceset_info->traceset_context; -} - +#endif /*BABEL_CLEANUP*/ void events_request_free(EventsRequest *events_request) { + #ifdef BABEL_CLEANUP if(events_request == NULL) return; if(events_request->start_position != NULL) @@ -1267,10 +1267,10 @@ void events_request_free(EventsRequest *events_request) lttv_hooks_destroy(events_request->after_request); g_free(events_request); + #endif /*BABEL_CLEANUP*/ } - __EXPORT GtkWidget *main_window_get_widget(Tab *tab) { return tab->mw->mwindow;