diff gtk3/dw.c @ 1875:fb137f7f91e4

Initial commit of GTK2 code changes (untested) ... Cleanups of some other platform code.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Fri, 09 Aug 2013 02:11:06 +0000
parents 15d24b5300ec
children 653ccb517aa1
line wrap: on
line diff
--- a/gtk3/dw.c	Thu Aug 08 23:53:38 2013 +0000
+++ b/gtk3/dw.c	Fri Aug 09 02:11:06 2013 +0000
@@ -6196,11 +6196,11 @@
 }
 
 /*
- * Sets the title of a row in the container.
+ * Sets the data of a row in the container.
  * Parameters:
  *          pointer: Pointer to the allocated memory in dw_container_alloc().
  *          row: Zero based row of data being set.
- *          title: String title of the item.
+ *          data: Data pointer.
  */
 void dw_container_set_row_data(void *pointer, int row, void *data)
 {
@@ -6208,11 +6208,11 @@
 }
 
 /*
- * Changes the title of a row already inserted in the container.
+ * Changes the data of a row already inserted in the container.
  * Parameters:
  *          handle: Handle to window (widget) of container.
  *          row: Zero based row of data being set.
- *          title: String title of the item.
+ *          data: Data pointer.
  */
 void dw_container_change_row_data(HWND handle, int row, void *data)
 {