hello i'm trying to program a little gnome app and now i have a question. when i create a dialog for examle an about dialog, do i need to free the dialog? how can i do this when it is necessary? thank you for your help yves void on_about_activate (GtkMenuItem * menuitem, gpointer user_data) { GtkWidget *about_dialog; about_dialog = create_about_dialog (); gtk_widget_show (about_dialog); }