Fix segfault caused by a WM where the settings module wasn't found.
* gnome-window-properties.c: (update_gui): Fix segfault caused by a WM where the settings module wasn't found.
This commit is contained in:
parent
2dd038c437
commit
af0063dd7b
2 changed files with 8 additions and 1 deletions
|
@ -1,3 +1,10 @@
|
||||||
|
2002-10-21 Seth Nickell <snickell@stanford.edu>
|
||||||
|
|
||||||
|
* gnome-window-properties.c: (update_gui):
|
||||||
|
|
||||||
|
Fix segfault caused by a WM where the settings module
|
||||||
|
wasn't found.
|
||||||
|
|
||||||
2002-10-21 Seth Nickell <snickell@stanford.edu>
|
2002-10-21 Seth Nickell <snickell@stanford.edu>
|
||||||
|
|
||||||
Patch from sylvain_pasche@yahoo.fr
|
Patch from sylvain_pasche@yahoo.fr
|
||||||
|
|
|
@ -151,7 +151,7 @@ update_gui (void)
|
||||||
|
|
||||||
for (tmp_list = gnome_wm_manager_get_list (); tmp_list != NULL; tmp_list = tmp_list->next) {
|
for (tmp_list = gnome_wm_manager_get_list (); tmp_list != NULL; tmp_list = tmp_list->next) {
|
||||||
wm = tmp_list->data;
|
wm = tmp_list->data;
|
||||||
wm_widget_add_wm (wm);
|
if (wm != NULL) wm_widget_add_wm (wm);
|
||||||
}
|
}
|
||||||
|
|
||||||
in_fill = FALSE;
|
in_fill = FALSE;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue