diff dw.h @ 513:7755599311d4

Fixes search and replace errors.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Tue, 09 Mar 2004 05:58:52 +0000
parents 80dbd5a1f403
children 08d770271709
line wrap: on
line diff
--- a/dw.h	Tue Mar 09 03:58:54 2004 +0000
+++ b/dw.h	Tue Mar 09 05:58:52 2004 +0000
@@ -964,9 +964,9 @@
 void API dw_mle_freeze(HWND handle);
 void API dw_mle_thaw(HWND handle);
 void API dw_mle_set_cursor(HWND handle, int point);
-void API dw_mle_set_cursor_visible(HWND handle, int line);
-void API dw_mle_set_cursor_editable(HWND handle, int state);
-void API dw_mle_set_cursor_word_wrap(HWND handle, int state);
+void API dw_mle_set_visible(HWND handle, int line);
+void API dw_mle_set_editable(HWND handle, int state);
+void API dw_mle_set_word_wrap(HWND handle, int state);
 int API dw_mle_search(HWND handle, char *text, int point, unsigned long flags);
 void API dw_spinbutton_set_pos(HWND handle, long position);
 void API dw_spinbutton_set_limits(HWND handle, long upper, long lower);
@@ -982,7 +982,7 @@
 void API dw_tree_item_expand(HWND handle, HTREEITEM item);
 void API dw_tree_item_collapse(HWND handle, HTREEITEM item);
 void API dw_tree_item_select(HWND handle, HTREEITEM item);
-void API dw_tree_item_change_data(HWND handle, HTREEITEM item, void *itemdata);
+void API dw_tree_item_set_data(HWND handle, HTREEITEM item, void *itemdata);
 void * API dw_tree_item_get_data(HWND handle, HTREEITEM item);
 char * API dw_tree_get_title(HWND handle, HTREEITEM item);
 HTREEITEM API dw_tree_get_parent(HWND handle, HTREEITEM item);