ChangeSet ID: 7412
CVSROOT: /opt/cvs-commit
Module name: wine
Changes by: julliard(a)wine.codeweavers.com 2003/03/10 13:04:13
Modified files:
dlls/comctl32 : tab.c
Log message:
Mike Hearn <mike(a)theoretic.com>
It's not just height that can be set to the default by passing zero to
TCM_SETITEMSIZE, but also width.
Patch: http://cvs.winehq.com/patch.py?id=7412
Old revision New revision Changes Path
1.75 1.76 +2 -2 wine/dlls/comctl32/tab.c
ChangeSet ID: 7405
CVSROOT: /opt/cvs-commit
Module name: wine
Changes by: julliard(a)wine.codeweavers.com 2003/03/07 17:08:38
Modified files:
controls : scroll.c
Log message:
Andrew Johnston <johnstonam(a)logica.com>
Move keyboard event processing from WndProc code into the existing
helper.
Create a helper function for the create event and clean up code.
Remove macro for detecting invalid SCROLLINFO structures and make it
an inline function.
Patch: http://cvs.winehq.com/patch.py?id=7405
Old revision New revision Changes Path
1.63 1.64 +78 -61 wine/controls/scroll.c
ChangeSet ID: 7403
CVSROOT: /opt/cvs-commit
Module name: wine
Changes by: julliard(a)wine.codeweavers.com 2003/03/07 17:02:46
Modified files:
dlls/comctl32 : toolbar.c
Log message:
Adam Gundy <arg(a)cyberscience.com>
TOOLBAR_AddBitmap() and TOOLBAR_ReplaceBitmap() are not supposed to
modify the bitmap - we call ImageList_AddMasked() which turns all
masked pixels black. Fixed by making a copy of the bitmap to give to
ImageList_AddMasked().
Patch: http://cvs.winehq.com/patch.py?id=7403
Old revision New revision Changes Path
1.128 1.129 +59 -5 wine/dlls/comctl32/toolbar.c
ChangeSet ID: 7402
CVSROOT: /opt/cvs-commit
Module name: wine
Changes by: julliard(a)wine.codeweavers.com 2003/03/07 14:38:20
Modified files:
controls : scroll.c
Log message:
Andrew Johnston <johnstonam(a)logica.com>
- GetScrollRange zeros the return parameters for no infoPtr
- GetScrollRange, GetScrollPos and GetScrollInfo send a message to the
window for the SB_CTL case
- Moved code for GetScroll* to into worker functions
Patch: http://cvs.winehq.com/patch.py?id=7402
Old revision New revision Changes Path
1.62 1.63 +121 -57 wine/controls/scroll.c