Changeset 9974 for trunk/src/user32/button.cpp
- Timestamp:
- Apr 2, 2003, 2:58:02 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/button.cpp
r8629 r9974 1 /* $Id: button.cpp,v 1.4 6 2002-06-10 09:12:35sandervl Exp $ */1 /* $Id: button.cpp,v 1.47 2003-04-02 12:58:01 sandervl Exp $ */ 2 2 /* File: button.cpp -- Button type widgets 3 3 * … … 335 335 DWORD dwStyle = GetWindowLongA(hwnd,GWL_STYLE); 336 336 337 DefWindowProcA(hwnd,WM_SETTEXT,wParam,lParam);337 LRESULT result = DefWindowProcA(hwnd,WM_SETTEXT,wParam,lParam); 338 338 #ifdef __WIN32OS2__ 339 339 BUTTONINFO* infoPtr = (BUTTONINFO*)GetInfoPtr(hwnd); … … 367 367 if (dwStyle & WS_VISIBLE) PAINT_BUTTON(hwnd,dwStyle & 0x0f,ODA_DRAWENTIRE); 368 368 369 return 0;369 return result; 370 370 } 371 371
Note:
See TracChangeset
for help on using the changeset viewer.