comparison os2/dw.c @ 1029:60d6d2c87116

Switched back to CCS_EXTENDSEL from CCS_MULTIPLESEL... Made the change originally to see if having no items selected initially would allow for the event to occur but it still did not.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Tue, 24 May 2011 22:18:44 +0000
parents 814e4767277f
children af2c93f78ae9
comparison
equal deleted inserted replaced
1028:4d49504d76dd 1029:60d6d2c87116
4767 WindowData *blah = calloc(1, sizeof(WindowData)); 4767 WindowData *blah = calloc(1, sizeof(WindowData));
4768 HWND tmp = WinCreateWindow(HWND_OBJECT, 4768 HWND tmp = WinCreateWindow(HWND_OBJECT,
4769 WC_CONTAINER, 4769 WC_CONTAINER,
4770 NULL, 4770 NULL,
4771 WS_VISIBLE | CCS_READONLY | 4771 WS_VISIBLE | CCS_READONLY |
4772 (multi ? CCS_MULTIPLESEL : CCS_SINGLESEL) | 4772 (multi ? CCS_EXTENDSEL : CCS_SINGLESEL) |
4773 CCS_AUTOPOSITION, 4773 CCS_AUTOPOSITION,
4774 0,0,2000,1000, 4774 0,0,2000,1000,
4775 NULLHANDLE, 4775 NULLHANDLE,
4776 HWND_TOP, 4776 HWND_TOP,
4777 id ? id : (GlobalID++), 4777 id ? id : (GlobalID++),