comparison mac/dw.c @ 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
comparison
equal deleted inserted replaced
512:8eb10e610270 513:7755599311d4
1805 * Sets the visible line of an MLE box. 1805 * Sets the visible line of an MLE box.
1806 * Parameters: 1806 * Parameters:
1807 * handle: Handle to the MLE to be positioned. 1807 * handle: Handle to the MLE to be positioned.
1808 * line: Line to be visible. 1808 * line: Line to be visible.
1809 */ 1809 */
1810 void API dw_mle_set_cursor_visible(HWND handle, int line) 1810 void API dw_mle_set_visible(HWND handle, int line)
1811 { 1811 {
1812 } 1812 }
1813 1813
1814 /* 1814 /*
1815 * Sets the editablity of an MLE box. 1815 * Sets the editablity of an MLE box.
1816 * Parameters: 1816 * Parameters:
1817 * handle: Handle to the MLE. 1817 * handle: Handle to the MLE.
1818 * state: TRUE if it can be edited, FALSE for readonly. 1818 * state: TRUE if it can be edited, FALSE for readonly.
1819 */ 1819 */
1820 void API dw_mle_set_cursor_editable(HWND handle, int state) 1820 void API dw_mle_set_editable(HWND handle, int state)
1821 { 1821 {
1822 } 1822 }
1823 1823
1824 /* 1824 /*
1825 * Sets the word wrap state of an MLE box. 1825 * Sets the word wrap state of an MLE box.
1826 * Parameters: 1826 * Parameters:
1827 * handle: Handle to the MLE. 1827 * handle: Handle to the MLE.
1828 * state: TRUE if it wraps, FALSE if it doesn't. 1828 * state: TRUE if it wraps, FALSE if it doesn't.
1829 */ 1829 */
1830 void API dw_mle_set_cursor_word_wrap(HWND handle, int state) 1830 void API dw_mle_set_word_wrap(HWND handle, int state)
1831 { 1831 {
1832 } 1832 }
1833 1833
1834 /* 1834 /*
1835 * Sets the current cursor position of an MLE box. 1835 * Sets the current cursor position of an MLE box.
2051 * Parameters: 2051 * Parameters:
2052 * handle: Handle to the tree containing the item. 2052 * handle: Handle to the tree containing the item.
2053 * item: Handle of the item to be modified. 2053 * item: Handle of the item to be modified.
2054 * itemdata: User defined data to be associated with item. 2054 * itemdata: User defined data to be associated with item.
2055 */ 2055 */
2056 void API dw_tree_item_change_data(HWND handle, HTREEITEM item, void *itemdata) 2056 void API dw_tree_item_set_data(HWND handle, HTREEITEM item, void *itemdata)
2057 { 2057 {
2058 } 2058 }
2059 2059
2060 /* 2060 /*
2061 * Gets the item data of a tree item. 2061 * Gets the item data of a tree item.