Changeset 1154
- Timestamp:
- Oct 6, 1999, 12:36:39 PM (26 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
-
changelog (modified) (6 diffs)
-
src/user32/caret.h (modified) (2 diffs)
-
src/user32/pmwindow.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/changelog
r1152 r1154 1 /* $Id: changelog,v 1.276 1999-10-06 09:59:57 phaller Exp $ */ 1 /* $Id: changelog,v 1.277 1999-10-06 10:36:38 dengert Exp $ */ 2 3 99-10-06: Daniela Engert <dani@ngrt.de> 4 - USER32: fix: adjust caret position if window height changes. 2 5 3 6 99-10-06: Sander van Leeuwen <sandervl@xs4all.nl> … … 7 10 99-10-06: Patrick Haller <phaller@gmx.net> 8 11 - KERNEL32: Fix: DLLs without Resource Segment (pResDir == NULL) 9 Fix: VirtualFree not freeing memory fixed, WINHLP32 looks healthier :)12 Fix: VirtualFree not freeing memory fixed, WINHLP32 looks healthier :) 10 13 11 14 99-10-05: Christoph Bratschi <cbratschi@datacomm.ch> … … 13 16 14 17 99-10-05: Sander van Leeuwen <sandervl@xs4all.nl> 15 - KERNEL32: Set fs:0 to -1 in OS2UnsetExceptionHandler. 16 Prevents crash due to corrupted handler chain (see17 comments in that function)18 - KERNEL32: Set fs:0 to -1 in OS2UnsetExceptionHandler. 19 Prevents crash due to corrupted handler chain (see 20 comments in that function) 18 21 - ODIN32API: Remove exception handler set & unset. Not necessary 19 as it's also done in the start method of an exe image.22 as it's also done in the start method of an exe image. 20 23 21 24 99-10-04: Patrick Haller <phaller@gmx.net> 22 25 - SHELL32\NEW: Compilation fix (indirectly included win32type.h) 23 - KERNEL32: Support for DisableThreadLibraryCalls 26 - KERNEL32: Support for DisableThreadLibraryCalls 24 27 25 28 99-10-04: Edgar Buerkle <Edgar.Buerkle@gmx.net> 26 29 - USER32: Fixes for window style update, mouse button messages, 27 WS_CAPTION style and apps with a dialog as their main window.28 (set owner to desktop)30 WS_CAPTION style and apps with a dialog as their main window. 31 (set owner to desktop) 29 32 - KERNEL32: Extra checks for valid heap pointers 30 33 31 34 99-10-04: Sander van Leeuwen <sandervl@xs4all.nl> 32 35 - USER32: Deleted dialog.cpp 33 Set last error to 0 if dialog creation succeeds.36 Set last error to 0 if dialog creation succeeds. 34 37 Added flag to distinguish between messages sent by PM and 35 those sent by apps36 Handle WM_SETTEXT messages passed to default window handler37 (only if not sent by PM)38 those sent by apps 39 Handle WM_SETTEXT messages passed to default window handler 40 (only if not sent by PM) 38 41 - VERSION: Fix for string compares in VersionInfo32_FindChild (has 39 to be a lstrcmpniW)42 to be a lstrcmpniW) 40 43 - SHELL32: Removed nameid.h include in she.cpp & sh.cpp. Fixed makefile 41 addition for export library (extra ".." for tool path)44 addition for export library (extra ".." for tool path) 42 45 - DPLAY, MSACM32: Compilation fix (indirectly included win32type.h) 43 46 - KERNEL32: Fixed getVersionStruct for PE & LX images (didn't copy 44 version data before)45 Fixed module name lookup for win32 images executed by the PE46 loader. (can't use OSLibQueryModuleHandle for those)47 version data before) 48 Fixed module name lookup for win32 images executed by the PE 49 loader. (can't use OSLibQueryModuleHandle for those) 47 50 Added lstrcmpniW function 48 51 Set full path for LX images 49 Support for retrieving the first resource of a certain type50 (version ids no longer hardcoded as id 1; just get the first one51 present)52 Support for retrieving the first resource of a certain type 53 (version ids no longer hardcoded as id 1; just get the first one 54 present) 52 55 53 56 99-10-04: Jens Wiessner <wiessnej@rfi.de> … … 78 81 99-10-03: Sander van Leeuwen <sandervl@xs4all.nl> 79 82 - USER32: Updated window class with isMDIClient method 80 Fixed DrawTextExA/W compile errors (different parameter types)83 Fixed DrawTextExA/W compile errors (different parameter types) 81 84 82 85 99-10-02: Christoph Bratschi <cbratschi@datacomm.ch> … … 87 90 - VERSION: Allocation bugfix in VerQueryValueA 88 91 - USER32: Added style changes for PM windows + don't clear WS_VISIBLE 89 flag when converting window styles. (fixes buttons in winhlp32)92 flag when converting window styles. (fixes buttons in winhlp32) 90 93 91 94 99-10-01: Sander van Leeuwen <sandervl@xs4all.nl> 92 95 - DDRAW: ifdef'ed out code that causes crash (OS2Surface destructor) 93 Free original translation buffer, not the one aligned to qword94 boundary.96 Free original translation buffer, not the one aligned to qword 97 boundary. 95 98 - USER32: Create frame window for windows with desktop as parent (i.e. WS_POPUP) 96 This makes sure WM_ACTIVATE messages are sent.97 Scrollbar changes.98 Call DestroyWindow when DefWndProc receives WM_CLOSE msg.99 This makes sure WM_ACTIVATE messages are sent. 100 Scrollbar changes. 101 Call DestroyWindow when DefWndProc receives WM_CLOSE msg. 99 102 - KERNEL32: Allocate memory from heap when HeapReAlloc is called with 100 a NULL memory pointer (WINE listbox control depends on this)103 a NULL memory pointer (WINE listbox control depends on this) 101 104 - AVIFIL32: Compilation fix 102 105 … … 104 107 - KERNEL32: Skip spaces in command line string 105 108 - USER32: Fix for MessageBoxA (window handle conversion) 106 Fixes for combobox (handles null pointers)109 Fixes for combobox (handles null pointers) 107 110 - GDI32: Added OSLibSetDIBitsToDevice 108 111 -
trunk/src/user32/caret.h
r1077 r1154 1 /* $Id: caret.h,v 1. 1 1999-09-28 08:00:56dengert Exp $ */1 /* $Id: caret.h,v 1.2 1999-10-06 10:36:39 dengert Exp $ */ 2 2 3 3 /* … … 9 9 10 10 extern void recreateCaret (HWND hwndFocus); 11 extern BOOL WIN32API SetCaretPos (int x, int y); 12 extern BOOL WIN32API GetCaretPos (PPOINT pPoint); 11 13 -
trunk/src/user32/pmwindow.cpp
r1114 r1154 1 /* $Id: pmwindow.cpp,v 1.1 4 1999-10-03 20:38:01 sandervlExp $ */1 /* $Id: pmwindow.cpp,v 1.15 1999-10-06 10:36:39 dengert Exp $ */ 2 2 /* 3 3 * Win32 Window Managment Code for OS/2 … … 330 330 WinSetMultWindowPos(GetThreadHAB(), swp, i); 331 331 } 332 if (yDelta != 0) 333 { 334 POINT pt; 335 GetCaretPos (&pt); 336 pt.y -= yDelta; 337 SetCaretPos (pt.x, pt.y); 338 } 332 339 win32wnd->MsgPosChanged((LPARAM)&wp); 333 340
Note:
See TracChangeset
for help on using the changeset viewer.
