|
From: andrew7 <bd...@us...> - 2006-11-19 22:17:59
|
Update of /cvsroot/smartwin/SmartWin/include/smartwin/widgets In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv15398/include/smartwin/widgets Modified Files: WidgetWindow.h Log Message: Allow WidgetWindows to handle double clicks.. Index: WidgetWindow.h =================================================================== RCS file: /cvsroot/smartwin/SmartWin/include/smartwin/widgets/WidgetWindow.h,v retrieving revision 1.27 retrieving revision 1.28 diff -u -d -r1.27 -r1.28 --- WidgetWindow.h 5 May 2006 17:14:42 -0000 1.27 +++ WidgetWindow.h 19 Nov 2006 22:17:55 -0000 1.28 @@ -227,7 +227,7 @@ ws.cbSize = sizeof( SMARTWIN_WNDCLASSEX ); #endif //! WINCE // This are window class styles, not window styles ... - ws.style = 0; + ws.style = CS_DBLCLKS; // Allow double click messages ws.lpfnWndProc = MessageMapPolicy::mainWndProc_; ws.cbClsExtra = 0; ws.cbWndExtra = 0; |