Changeset 1565 for trunk/src/comctl32/toolbar.c
- Timestamp:
- Nov 2, 1999, 10:44:04 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/comctl32/toolbar.c
r1431 r1565 1 /* $Id: toolbar.c,v 1.1 6 1999-10-24 22:49:47 sandervlExp $ */1 /* $Id: toolbar.c,v 1.17 1999-11-02 21:44:03 achimha Exp $ */ 2 2 /* 3 3 * Toolbar control … … 26 26 * - Microsofts controlspy examples. 27 27 */ 28 29 /* WINE 991031 level */ 28 30 29 31 /* CB: Odin32/WINE bugs … … 3461 3463 } 3462 3464 3465 static LRESULT 3466 TOOLBAR_GetFont (HWND hwnd, WPARAM wParam, LPARAM lParam) 3467 { 3468 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd); 3469 3470 return infoPtr->hFont; 3471 } 3463 3472 3464 3473 static LRESULT … … 4125 4134 return TOOLBAR_EraseBackground (hwnd, wParam, lParam); 4126 4135 4127 /* case WM_GETFONT: */ 4136 case WM_GETFONT: 4137 return TOOLBAR_GetFont (hwnd, wParam, lParam); 4138 4128 4139 /* case WM_KEYDOWN: */ 4129 4140 /* case WM_KILLFOCUS: */
Note:
See TracChangeset
for help on using the changeset viewer.