comparison win/dw.c @ 343:bab5cd8dd93f

Forgot to free the array of pointers in the notebook control.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Fri, 11 Apr 2003 12:20:12 +0000
parents 503d1ac958bb
children 6a374f337d1f
comparison
equal deleted inserted replaced
342:4029240b5e63 343:bab5cd8dd93f
387 EnumChildWindows(array[z]->hwnd, _free_window_memory, 0); 387 EnumChildWindows(array[z]->hwnd, _free_window_memory, 0);
388 DestroyWindow(array[z]->hwnd); 388 DestroyWindow(array[z]->hwnd);
389 free(array[z]); 389 free(array[z]);
390 } 390 }
391 } 391 }
392 free(array);
392 } 393 }
393 } 394 }
394 395
395 dw_signal_disconnect_by_window(handle); 396 dw_signal_disconnect_by_window(handle);
396 397