comparison gtk/dw.c @ 1679:e19b93a8229b

More comment cleanups.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Fri, 27 Apr 2012 16:02:32 +0000
parents 896f377a47c7
children fb6807b0ab0d
comparison
equal deleted inserted replaced
1678:896f377a47c7 1679:e19b93a8229b
10346 } 10346 }
10347 10347
10348 /* 10348 /*
10349 * Remove windows (widgets) from the box they are packed into. 10349 * Remove windows (widgets) from the box they are packed into.
10350 * Parameters: 10350 * Parameters:
10351 * handle: Window handle of the item to be back. 10351 * handle: Window handle of the packed item to be removed.
10352 * Returns: 10352 * Returns:
10353 * DW_ERROR_NONE on success and DW_ERROR_GENERAL on failure. 10353 * DW_ERROR_NONE on success and DW_ERROR_GENERAL on failure.
10354 */ 10354 */
10355 int API dw_box_remove(HWND handle) 10355 int API dw_box_remove(HWND handle)
10356 { 10356 {
10414 * Remove windows (widgets) from a box at an arbitrary location. 10414 * Remove windows (widgets) from a box at an arbitrary location.
10415 * Parameters: 10415 * Parameters:
10416 * box: Window handle of the box to be removed from. 10416 * box: Window handle of the box to be removed from.
10417 * index: 0 based index of packed items. 10417 * index: 0 based index of packed items.
10418 * Returns: 10418 * Returns:
10419 * Handle to the removed item on success, 0 on failure. 10419 * Handle to the removed item on success, 0 on failure or padding.
10420 */ 10420 */
10421 HWND API dw_box_remove_at_index(HWND box, int index) 10421 HWND API dw_box_remove_at_index(HWND box, int index)
10422 { 10422 {
10423 HWND retval = 0; 10423 HWND retval = 0;
10424 int _locked_by_me = FALSE; 10424 int _locked_by_me = FALSE;