X-Git-Url: http://git.liburcu.org/?a=blobdiff_plain;f=ltt%2Fbranches%2Fpoly%2Flttv%2Fmodules%2Fgui%2Flttvwindow%2Flttvwindow%2Finit_module.c;h=f39cc9abe67f878365fb852be450fcb581548343;hb=2d262115fc06b5ffb6038207a6d0c1d5f81763c2;hp=7faf99edfa0bc1b68912f4ca2f87946c92a13703;hpb=501e4e70320aeb56090ada4447958db1c2ed6616;p=lttv.git diff --git a/ltt/branches/poly/lttv/modules/gui/lttvwindow/lttvwindow/init_module.c b/ltt/branches/poly/lttv/modules/gui/lttvwindow/lttvwindow/init_module.c index 7faf99ed..f39cc9ab 100644 --- a/ltt/branches/poly/lttv/modules/gui/lttvwindow/lttvwindow/init_module.c +++ b/ltt/branches/poly/lttv/modules/gui/lttvwindow/lttvwindow/init_module.c @@ -41,6 +41,7 @@ #include "interface.h" #include "support.h" #include +#include #include "callbacks.h" #include @@ -115,27 +116,18 @@ static void init() { LTTV_POINTER, &value)); g_assert((main_hooks = *(value.v_pointer)) != NULL); - lttv_hooks_add(main_hooks, window_creation_hook, NULL); + lttv_hooks_add(main_hooks, window_creation_hook, NULL, LTTV_PRIO_DEFAULT); } void main_window_destructor(MainWindow * mw) { - if(GTK_IS_WIDGET(mw->mwindow)){ - gtk_widget_destroy(mw->mwindow); - mw = NULL; - } -} - - -void main_window_destroy_walk(gpointer data, gpointer user_data) -{ - main_window_destructor((MainWindow*)data); + g_assert(GTK_IS_WIDGET(mw->mwindow)); + gtk_widget_destroy(mw->mwindow); } - /** * plugin's destroy function * @@ -146,7 +138,8 @@ static void destroy() { LttvAttributeValue value; LttvTrace *trace; - + GSList *iter = NULL; + lttv_option_remove("trace"); lttv_hooks_remove_data(main_hooks, window_creation_hook, NULL); @@ -154,7 +147,9 @@ static void destroy() { g_debug("GUI destroy()"); if(g_main_window_list){ - g_slist_foreach(g_main_window_list, main_window_destroy_walk, NULL ); + for(iter=g_main_window_list;iter!=NULL;iter=g_slist_next(iter)) { + main_window_destructor((MainWindow*)iter->data); + } g_slist_free(g_main_window_list); } @@ -163,4 +158,4 @@ static void destroy() { LTTV_MODULE("lttvwindow", "Viewer main window", \ "Viewer with multiple windows, tabs and panes for graphical modules", \ - init, destroy, "stats") + init, destroy, "stats", "option")