comparison win/dw.c @ 52:0804483f6320

Added a redraw parameter to dw_container_clear().
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Sun, 11 Nov 2001 17:49:33 +0000
parents bf42d08d72d7
children c4e1139d9872
comparison
equal deleted inserted replaced
51:d97de82f0b6e 52:0804483f6320
5078 5078
5079 /* 5079 /*
5080 * Removes all rows from a container. 5080 * Removes all rows from a container.
5081 * Parameters: 5081 * Parameters:
5082 * handle: Handle to the window (widget) to be cleared. 5082 * handle: Handle to the window (widget) to be cleared.
5083 */ 5083 * redraw: TRUE to cause the container to redraw immediately.
5084 void dw_container_clear(HWND handle) 5084 */
5085 void dw_container_clear(HWND handle, int redraw)
5085 { 5086 {
5086 ListView_DeleteAllItems(handle); 5087 ListView_DeleteAllItems(handle);
5087 } 5088 }
5088 5089
5089 /* 5090 /*