Mercurial > hg > xemacs-beta
comparison src/gui-x.c @ 4982:3c3c1d139863
Automatic merge
author | Ben Wing <ben@xemacs.org> |
---|---|
date | Fri, 05 Feb 2010 11:25:00 -0600 |
parents | 4aebb0131297 16112448d484 |
children | ae48681c47fa |
comparison
equal
deleted
inserted
replaced
4981:4aebb0131297 | 4982:3c3c1d139863 |
---|---|
196 left alone. */ | 196 left alone. */ |
197 void | 197 void |
198 free_popup_widget_value_tree (widget_value *wv) | 198 free_popup_widget_value_tree (widget_value *wv) |
199 { | 199 { |
200 if (! wv) return; | 200 if (! wv) return; |
201 if (wv->key) xfree (wv->key, char *); | 201 if (wv->key) xfree (wv->key); |
202 if (wv->value) xfree (wv->value, char *); | 202 if (wv->value) xfree (wv->value); |
203 if (wv->name) xfree (wv->name, char *); | 203 if (wv->name) xfree (wv->name); |
204 | 204 |
205 wv->name = wv->value = wv->key = (char *) 0xDEADBEEF; /* -559038737 base 10*/ | 205 wv->name = wv->value = wv->key = (char *) 0xDEADBEEF; /* -559038737 base 10*/ |
206 | 206 |
207 if (wv->contents && (wv->contents != (widget_value*)1)) | 207 if (wv->contents && (wv->contents != (widget_value*)1)) |
208 { | 208 { |