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
ChangeSet ID: 7401
CVSROOT: /opt/cvs-commit
Module name: wine
Changes by: julliard(a)wine.codeweavers.com 2003/03/07 14:37:25
Modified files:
dlls/winmm/wineoss: audio.c
Log message:
Robert Reif <reif(a)earthlink.net>
Fixed bug where the enable state of the output and input were not set
properly when doing full duplex.
Fixed bug where resetting the output would affect the capture when
doing full duplex.
Patch: http://cvs.winehq.com/patch.py?id=7401
Old revision New revision Changes Path
1.77 1.78 +87 -41 wine/dlls/winmm/wineoss/audio.c
ChangeSet ID: 7400
CVSROOT: /opt/cvs-commit
Module name: wine
Changes by: julliard(a)wine.codeweavers.com 2003/03/07 14:36:47
Modified files:
dlls/dsound/tests: dsound.c
Log message:
Robert Reif <reif(a)earthlink.net>
Fixed a bug where a capture device was used after it failed to open
due to a missing driver.
Added tests to try all possible combinations of sample rate, sample
size and mono/stereo.
Patch: http://cvs.winehq.com/patch.py?id=7400
Old revision New revision Changes Path
1.8 1.9 +70 -100 wine/dlls/dsound/tests/dsound.c
ChangeSet ID: 7398
CVSROOT: /opt/cvs-commit
Module name: wine
Changes by: julliard(a)wine.codeweavers.com 2003/03/07 14:35:31
Modified files:
dlls/comctl32 : listview.c
Log message:
Adam Gundy <arg(a)cyberscience.com>
When shifting the list's indices, we must not send notify messages if
we have to refocus. Item modification handlers are not supposed to be
called here.
Patch: http://cvs.winehq.com/patch.py?id=7398
Old revision New revision Changes Path
1.342 1.343 +15 -4 wine/dlls/comctl32/listview.c