ChangeSet ID: 5829
CVSROOT: /opt/cvs-commit
Module name: wine
Changes by: julliard(a)wine.codeweavers.com 2002/10/17 19:20:58
Modified files:
tools/winapi : msvcmaker
Log message:
Patrik Stridvall <ps(a)leissner.se>
- Better .dsp file generation for .exe outputs
- Added generation of winetest.dsw for building wine tests under
Windows (currently very kludgy, but it works to some extent).
Patch: http://cvs.winehq.com/patch.py?id=5829
Old revision New revision Changes Path
1.3 1.4 +208 -64 wine/tools/winapi/msvcmaker
ChangeSet ID: 5826
CVSROOT: /opt/cvs-commit
Module name: wine
Changes by: julliard(a)wine.codeweavers.com 2002/10/17 16:55:42
Modified files:
dlls/comctl32 : listview.c
Log message:
Dimitrie O. Paun <dpaun(a)rogers.com>
Instrument SetItemT to change only _one_ item at a time. That is, if
we have to change focus, we call it recursively to first remove the
focus from the item that has it. This allows simpler, and more correct
invalidation handling.
Patch: http://cvs.winehq.com/patch.py?id=5826
Old revision New revision Changes Path
1.247 1.248 +4 -5 wine/dlls/comctl32/listview.c
ChangeSet ID: 5824
CVSROOT: /opt/cvs-commit
Module name: wine
Changes by: julliard(a)wine.codeweavers.com 2002/10/17 16:53:56
Modified files:
dlls/comctl32 : listview.c
Log message:
Dimitrie O. Paun <dpaun(a)rogers.com>
More, better tracing to help nail down some crashes.
Fix typo in GetItemT (found, and fixed by Huw Davies).
Exit right away from GetItemT if nothing is asked (mask == 0).
Assorted code cleanups.
Patch: http://cvs.winehq.com/patch.py?id=5824
Old revision New revision Changes Path
1.245 1.246 +27 -14 wine/dlls/comctl32/listview.c
ChangeSet ID: 5822
CVSROOT: /opt/cvs-commit
Module name: wine
Changes by: julliard(a)wine.codeweavers.com 2002/10/17 16:37:24
Modified files:
dlls/comctl32 : listview.c
Log message:
Dimitrie O. Paun <dpaun(a)rogers.com>
Add ability to create an iterator over a range list.
Fix memory leak when destroying ranges.
Add function that will to a 'deep' clone of a range list.
Add function that will subtract a range list from another.
Do not crash on NULL ranges (similar in spirit to HDPAs).
Fancy deselection routines uses the above infrastructure to deselect
the minimum possible.
Modify SetGroupSelection to take advantage of all this new
infrastructure, to avoid flicker on selection extension.
Patch: http://cvs.winehq.com/patch.py?id=5822
Old revision New revision Changes Path
1.243 1.244 +117 -45 wine/dlls/comctl32/listview.c