Changeset 1573
- Timestamp:
- Nov 3, 1999, 7:19:29 PM (26 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
-
changelog (modified) (2 diffs)
-
src/user32/winmenu.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/changelog
r1571 r1573 1 /* $Id: changelog,v 1.40 2 1999-11-03 17:59:26 cbratschiExp $ */1 /* $Id: changelog,v 1.403 1999-11-03 18:19:29 phaller Exp $ */ 2 2 3 3 99-11-03: Christoph Bratschi <cbratschi@datacomm.ch> … … 5 5 6 6 99-11-03: Patrick Haller <phaller@gmx.net> 7 KERNEL32: Fix: undocumented behaviour in SearchPathA7 - KERNEL32: Fix: undocumented behaviour in SearchPathA 8 8 and bugfix in SearchPathW 9 - USER32: Fix: TrackPopupMenuEx lpPM can be NULL 9 10 10 11 99-11-02 Markus Montkowski <mmontkowski@gmx.de> -
trunk/src/user32/winmenu.cpp
r1499 r1573 1 /* $Id: winmenu.cpp,v 1.1 2 1999-10-28 19:09:17 sandervlExp $ */1 /* $Id: winmenu.cpp,v 1.13 1999-11-03 18:16:19 phaller Exp $ */ 2 2 3 3 /* … … 558 558 559 559 dprintf(("USER32: TrackPopupMenuEx, not completely implemented\n")); 560 if(lpPM->cbSize != 0) 560 561 if (lpPM != NULL) // this parameter can be NULL 562 if(lpPM->cbSize != 0) 561 563 rect = &lpPM->rcExclude; 562 564
Note:
See TracChangeset
for help on using the changeset viewer.
