Changeset 295 for trunk/src/comctl32/tooltips.c
- Timestamp:
- Jul 12, 1999, 5:58:51 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/comctl32/tooltips.c
r285 r295 1 /* $Id: tooltips.c,v 1.1 1 1999-07-07 17:08:43cbratschi Exp $ */1 /* $Id: tooltips.c,v 1.12 1999-07-12 15:58:49 cbratschi Exp $ */ 2 2 /* 3 3 * Tool tip control … … 1133 1133 if (nTool == -1) return 0; 1134 1134 1135 TOOLTIPS_GetTipText(hwnd,infoPtr,nTool); 1135 TOOLTIPS_GetTipText(hwnd,infoPtr,nTool); //CB: get text 1136 1136 1137 1137 lstrcpyWtoA(lpToolInfo->lpszText,infoPtr->szTipText); … … 1156 1156 if (nTool == -1) return 0; 1157 1157 1158 TOOLTIPS_GetTipText(hwnd,infoPtr,nTool); 1158 TOOLTIPS_GetTipText(hwnd,infoPtr,nTool); //CB: get text 1159 1159 1160 1160 lstrcpyW(lpToolInfo->lpszText,infoPtr->szTipText); … … 1979 1979 } 1980 1980 1981 static LRESULT 1982 TOOLTIPS_NotifyFormat (HWND hwnd, WPARAM wParam, LPARAM lParam) 1983 { 1984 // FIXME ("hwnd=%x wParam=%x lParam=%lx\n", hwnd, wParam, lParam); 1985 1986 return 0; 1987 } 1981 1988 1982 1989 static LRESULT … … 2020 2027 * returns the length, in characters, of the tip text 2021 2028 ******************************************************************/ 2029 2022 2030 static LRESULT 2023 2031 TOOLTIPS_OnWMGetTextLength(HWND hwnd, WPARAM wParam, LPARAM lParam) … … 2321 2329 return TOOLTIPS_NCHitTest (hwnd, wParam, lParam); 2322 2330 2323 /* case WM_NOTIFYFORMAT: */ 2324 /* return TOOLTIPS_NotifyFormat (hwnd, wParam, lParam); */ 2331 case WM_NOTIFYFORMAT: 2332 return TOOLTIPS_NotifyFormat (hwnd, wParam, lParam); 2325 2333 2326 2334 case WM_PAINT:
Note:
See TracChangeset
for help on using the changeset viewer.