Changeset 1391 for trunk/src/user32/combo.cpp
- Timestamp:
- Oct 21, 1999, 2:19:29 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/combo.cpp
r1387 r1391 1 /* $Id: combo.cpp,v 1. 7 1999-10-20 22:35:52sandervl Exp $ */1 /* $Id: combo.cpp,v 1.8 1999-10-21 12:19:26 sandervl Exp $ */ 2 2 /* 3 3 * Combo controls … … 165 165 { 166 166 RECT windowRect; 167 168 //SvL: Doesn't work for us 169 return; 167 170 168 171 GetWindowRect(CB_HWND(lphc), &windowRect); … … 181 184 windowRect.right - windowRect.left, 182 185 windowRect.bottom - windowRect.top + 183 186 lphc->droppedRect.bottom - lphc->droppedRect.top, 184 187 SWP_NOMOVE | SWP_NOZORDER | SWP_NOACTIVATE ); 185 188 } … … 431 434 WINDOWPOS* posChanging) 432 435 { 436 dprintf(("COMBO_WindowPosChanging")); 437 433 438 /* 434 439 * We need to override the WM_WINDOWPOSCHANGING method to handle all … … 474 479 LPCREATESTRUCTA lpcs = (CREATESTRUCTA*)lParam; 475 480 476 //testestest477 #if 1478 lphc->dwStyle |= CBS_SIMPLE;479 #else480 481 if( !CB_GETTYPE(lphc) ) lphc->dwStyle |= CBS_SIMPLE; 481 482 else if( CB_GETTYPE(lphc) != CBS_DROPDOWNLIST ) lphc->wState |= CBF_EDIT; 482 #endif483 483 484 484 lphc->hwndself = hwnd;
Note:
See TracChangeset
for help on using the changeset viewer.