Changeset 3153 for trunk/src/user32/button.cpp
- Timestamp:
- Mar 18, 2000, 5:13:41 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/button.cpp
r2804 r3153 1 /* $Id: button.cpp,v 1.3 3 2000-02-16 14:34:03 sandervlExp $ */1 /* $Id: button.cpp,v 1.34 2000-03-18 16:13:25 cbratschi Exp $ */ 2 2 /* File: button.cpp -- Button type widgets 3 3 * … … 7 7 * Copyright (c) 1999 Christoph Bratschi 8 8 * 9 * WINE version: 20000130 9 * Corel version: 20000317 10 * (WINE version: 20000130) 10 11 * 11 12 * Status: complete … … 21 22 #include "initterm.h" 22 23 23 #define DBG_LOCALLOG 24 #define DBG_LOCALLOG DBG_button 24 25 #include "dbglocal.h" 25 26 … … 485 486 HANDLE oldHbitmap = infoPtr->hImage; 486 487 487 if ((dwStyle & BS_BITMAP) || (dwStyle & BS_ICON)) infoPtr->hImage = (HANDLE)lParam; 488 if ((dwStyle & BS_BITMAP) || (dwStyle & BS_ICON)) 489 { 490 infoPtr->hImage = (HANDLE)lParam; 491 InvalidateRect(hwnd,NULL,FALSE); 492 } 488 493 489 494 return oldHbitmap;
Note:
See TracChangeset
for help on using the changeset viewer.