diff options
author | Kaleb Keithley <kaleb@freedesktop.org> | 2003-11-25 19:29:03 +0000 |
---|---|---|
committer | Kaleb Keithley <kaleb@freedesktop.org> | 2003-11-25 19:29:03 +0000 |
commit | e51f25fbe75b222b24f4628b2408e899fa4748d7 (patch) | |
tree | f99bc828d623da962d7857db2c5edbce6ced3de8 /src/add_window.c | |
parent | 4b339f0a4311b4db171584bc6671292a9052665a (diff) |
XFree86 4.3.99.16 Bring the tree up to date for the Cygwin folksxf86-4_3_99_903_specialxf86-4_3_99_902xf86-4_3_99_901xf86-4_3_99_16xf86-012804-2330
Diffstat (limited to 'src/add_window.c')
-rw-r--r-- | src/add_window.c | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/src/add_window.c b/src/add_window.c index 85dae57..9b6a6c7 100644 --- a/src/add_window.c +++ b/src/add_window.c @@ -1,4 +1,4 @@ -/* $XFree86: xc/programs/twm/add_window.c,v 1.12 2002/12/10 22:28:07 tsi Exp $ */ +/* $XFree86: xc/programs/twm/add_window.c,v 1.13 2003/08/04 10:32:30 eich Exp $ */ /*****************************************************************************/ /* @@ -209,6 +209,13 @@ IconMgr *iconp; FetchWmProtocols (tmp_win); FetchWmColormapWindows (tmp_win); + if (name == NULL) + tmp_win->name = strdup(NoName); + else { + tmp_win->name = strdup(name); + free(name); + } + if (GetWindowConfig (tmp_win, &saved_x, &saved_y, &saved_width, &saved_height, &restore_iconified, &restore_icon_info_present, @@ -277,12 +284,6 @@ IconMgr *iconp; tmp_win->transient = Transient(tmp_win->w, &tmp_win->transientfor); tmp_win->nameChanged = 0; - if (name == NULL) - tmp_win->name = strdup(NoName); - else { - tmp_win->name = strdup(name); - free(name); - } if (tmp_win->class.res_name == NULL) tmp_win->class.res_name = NoName; if (tmp_win->class.res_class == NULL) |